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

📄 platform.c

📁 iar公司的s3c44b0x评估板的源程序
💻 C
字号:
#include "44b0.h"
#include "dm.h"
#include "menu.h"

int main (void)
{
    // Initialize device drivers.
    CPUMainSWInit();

    // Initialize the hardware.
    CPUMainHWSetup();

	// Invoke the menu system.
    DM_InitSystem();

    // Show Title
    DM_Printf("\n\r");
    DM_Printf("********************");
    DM_Printf("S3C44B0X BootLoader");
    DM_Printf("Toolchain: IAR EWARM");
    DM_Printf("Processor: S3C44B0X");
    DM_Printf("System Clock: 50MHz");
    DM_Printf("External FLASH: 2MB");
    DM_Printf("External SDRAM: 32MB");
    DM_Printf("********************");

    // Show Main Menu
    do
    {
        DM_DoMenu (&MainMenu, NULL);
    }
    while (1);
}

⌨️ 快捷键说明

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