mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-05 09:56:30 +00:00
13 lines
232 B
C
13 lines
232 B
C
#ifndef STM32_FLASH_DEBUG_H
|
|
#define STM32_FLASH_DEBUG_H
|
|
|
|
#define STM32_FLASH_DEBUG 0
|
|
|
|
#if STM32_FLASH_DEBUG
|
|
#define DEBUG_MSG(...) AddLog_P(LOG_LEVEL_DEBUG, __VA_ARGS__)
|
|
#else
|
|
#define DEBUG_MSG(...)
|
|
#endif
|
|
|
|
#endif
|