初始化版本

This commit is contained in:
冯佳
2025-12-23 08:29:44 +08:00
parent 0ec8a5b380
commit cc9f363ff8
22 changed files with 1370 additions and 50 deletions

18
port/menu_port.h Normal file
View File

@ -0,0 +1,18 @@
#ifndef MENU_PORT_H
#define MENU_PORT_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
void menu_port_init(void);
uint32_t menu_port_get_tick(void);
void menu_port_log(const char* fmt, ...);
#ifdef __cplusplus
}
#endif
#endif // MENU_PORT_H