⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 init.c

📁 基于EP7312的MP3播放器源代码,包括MCU和PC端代码.
💻 C
字号:
//****************************************************************************//// INIT.C - Initialize the player hardware and software environment.//// Copyright (c) 1999,2000,2001 Cirrus Logic, Inc.////****************************************************************************#include "globals.h"#include "../hwport.h"//****************************************************************************//// The following function initializes the hardware and software environment// expected by the Internet audio player application.  Some very basic// hardware initialization is already handled by vectors.s before it calls// this function.////****************************************************************************voidinitialize(void){    //    // Initialize the file system.    //    FSSetWriteScratch((unsigned char *)ulEndOfRAM);    FSInit();    FSSetWriteScratch(0);    //    // Initialize the output processing.    //    OutputInit();    //    // Initialize the user interface.    //    UIInit();    //    // Initialize the USB controller.    //#ifndef HwRegUSBCable    USBEnable();#endif}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -