mirror of
https://github.com/clockworkpi/PicoCalc.git
synced 2026-03-19 18:42:38 +01:00
add pico_multi_booter code
This commit is contained in:
11
Code/pico_multi_booter/sd_boot/debug.h
Normal file
11
Code/pico_multi_booter/sd_boot/debug.h
Normal 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
|
||||
Reference in New Issue
Block a user