From 0ff91e66071237834a1501c78648729c8c32f67a Mon Sep 17 00:00:00 2001 From: tao_z <tzj0429@163.com> Date: Wed, 01 Jun 2022 03:18:48 +0800 Subject: [PATCH] 保存bootloader调试到下载flash,以前步骤均ok。 --- Application/source/main.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Application/source/main.c b/Application/source/main.c index 1e5a2c3..22d30e3 100644 --- a/Application/source/main.c +++ b/Application/source/main.c @@ -28,6 +28,7 @@ #include "fbl_ap.h" #include "NVM.h" #include "flash_interface.h" +#include "xl_crc.h" // define bootloader mode uint8_t fblMode; @@ -42,7 +43,6 @@ light_init(); did_init(); } - /** * @brief main */ @@ -75,8 +75,8 @@ } } - OSTaskCreate(UDS_Task_1ms, 1, 1, NULL); /*UDS 1ms����*/ - OSTaskCreate(UDS_Task_10ms, 10, 9, NULL); /*UDS 10ms����*/ + OSTaskCreate(UDS_Task_1ms, 1, 1, NULL); + OSTaskCreate(UDS_Task_10ms, 10, 9, NULL); OSTaskCreate(light_task, 50, 49, NULL); OSSchedule(&OS_GetTick); -- Gitblit v1.8.0