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

13 lines
233 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_P2(LOG_LEVEL_DEBUG, __VA_ARGS__)
#else
#define DEBUG_MSG(...)
#endif
#endif