mirror of
https://github.com/clockworkpi/PicoCalc.git
synced 2025-12-12 10:18:54 +01:00
11 lines
190 B
C
11 lines
190 B
C
#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
|