fix compile error include watchdog and uart configure error

This commit is contained in:
Liu_Weichao
2022-06-08 11:09:50 +08:00
parent c14f2f73e0
commit 80e08450fe
8 changed files with 61 additions and 4 deletions
+4 -4
View File
@@ -31,10 +31,6 @@
#include "connect_usb.h"
#endif
#ifdef BSP_USING_WDT
#include "connect_wdt.h"
#endif
#ifdef KERNEL_USER_MAIN
#ifndef MAIN_KTASK_STACK_SIZE
#define MAIN_KTASK_STACK_SIZE 2048
@@ -44,6 +40,10 @@
#endif
#endif
#ifdef BSP_USING_WDT
extern int StartWatchdog(void);
#endif
extern void CreateKServiceKTask(void);
extern int main(void);
void InitBoardHardware(void);