feat(Puya-PY32F040): add OTA dual-project codegen template

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-18 18:56:19 +08:00
co-authored by Cursor
commit 62eb0199ed
498 changed files with 329164 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef __APPLICATION_H
#define __APPLICATION_H
#include "main.h"
// DEMO是项目编号,1.0.0是软件大版本,009是软件小版本
#define __VERSION__ "DEMO_1.0.0"
#define __DEVELOPER__ "WuChuYuan"
#define __EMAIL__ "1917507415@qq.com"
typedef enum
{
BOARD_POWER_OFF, // 关机状态
} board_state_t;
void app_Init(void);
void app_lication(void);
#endif