2 Star 8 Fork 6

马玉琛/BMCBootLoader

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.c 975 Bytes
一键复制 编辑 原始数据 按行查看 历史
马玉琛 提交于 2023-03-28 19:47 . 重构应用启动功能为一个模块
/*
* @Author: Ma Yuchen
* @Date: 2022-11-22 21:03:02
* @LastEditors: Ma YuChen
* @LastEditTime: 2022-11-30 20:58:26
* @Description: file content
* @FilePath: \BootLoader\main.c
*/
#include <gd32f4xx.h>
#include "menu.h"
#ifndef BOARD_EVAL
#include "bsp_gpio.h"
#endif
#include "bsp_uart.h"
#include "driverCrc16.h"
#include "bootLoader.h"
#include "systick.h"
int main(void)
{
//初始化Core时钟
systick_config();
InitCRC();
#ifndef BOARD_EVAL
//初始化GPIO并打开V3.3外设供电
InitGpio();
PowerOnBmcPeriph();
delay_1ms(10);
#endif
//初始化串口
InitSerial();
SerialPutString("\r\nThanks for use this bootLoader\r\n");
if(GetIAPIntper() == 1)
//如果获取到IAP请求中断则打印菜单进行IAP操作
{
Flash_IF_Init();
PrintMenu();
}
//如果无请求则跳转到APP启动
else
{
SerialPutString("Run App...\r\n");
RunApp();
}
while(1)
{
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/VoldemortCat/bmcboot-loader.git
git@gitee.com:VoldemortCat/bmcboot-loader.git
VoldemortCat
bmcboot-loader
BMCBootLoader
master

搜索帮助