add pico_multi_booter code

This commit is contained in:
cuu
2025-05-19 14:41:19 +08:00
parent bf95745428
commit 4c74e3b3fe
23 changed files with 4006 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#ifndef DEBUG_H
#define DEBUG_H
#ifdef ENABLE_DEBUG
#include <stdio.h>
#define DEBUG_PRINT(fmt, ...) printf(fmt, ##__VA_ARGS__)
#else
#define DEBUG_PRINT(fmt, ...)
#endif
#endif // DEBUG_H