Turn off debug messages

This commit is contained in:
Jeff Epler 2025-02-19 14:23:20 -06:00
parent 3a79a2067e
commit e7365903d5

View file

@ -42,7 +42,8 @@ void dvhstx_debug(const char *fmt, ...);
}
#elif defined(ARDUINO)
#include <Arduino.h>
#define dvhstx_debug Serial.printf
// #define dvhstx_debug Serial.printf
#define dvhstx_debug(...) ((void)0)
#else
#include <cstdio>
#define dvhstx_debug printf