初版程序

This commit is contained in:
2026-09-09 14:54:40 +08:00
commit 228e564214
991 changed files with 604588 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef _BSP_WDG_H_
#define _BSP_WDG_H_
#include "main.h"
typedef struct
{
void (*Init)(void);
void (*Feed)(void);
}bsp_Wdg_t;
extern bsp_Wdg_t Wdg;
#endif