Tasmota/lib/lib_div/stm32flash-1.0-tasmota/stm32_flash_debug.h
Theo Arends 92f067af59 Change Shelly Dimmer fw upgrade
Change Shelly Dimmer fw upgrade using WebGUI Firmware Upgrade and file from folder `tools/fw_shd_stm32/`
2020-11-17 12:25:48 +01:00

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