Tasmota/lib/lib_basic/stm32flash-1.0/stm32_flash_debug.h
Theo Arends c02770ce96 Add support for Shelly Dimmer 1 and 2
Add support for Shelly Dimmer 1 and 2 by James Turton (#9854)
2020-11-14 16:43:32 +01:00

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