chore: clenaup

This commit is contained in:
2024-12-09 02:12:04 +06:00
parent 623f8e581e
commit a2ce0a42f5
7 changed files with 241 additions and 363 deletions

12
include/rom.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef ROM_H
#define ROM_H
#include <stdint.h>
extern uint32_t DiagPrintf(const char *fmt, ...)
__attribute__((format(printf, 1, 2)));
extern void DelayMs(uint32_t ms);
#define printf DiagPrintf
#endif // ROM_H