Tasmota/lib/lib_div/stm32flash-1.0-tasmota/stm32_flash_debug.h

13 lines
232 B
C
Raw Normal View History

#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