/** **************************************************************************************** * * @file cfg.h * * @brief App Configure MACRO, --preinclude * **************************************************************************************** */ #ifndef _APP_CFG_H_ #define _APP_CFG_H_ /// System Clock(0=16MHz, 1=32MHz, 2=48MHz, 3=64MHz) #define SYS_CLK (0) /// Debug Mode(0=Disable, 1=via UART, 2=via RTT) #define DBG_MODE (1) /// Debug Configure #if (DBG_MODE) #define DBG_PROC (1) #endif /// Misc Options #define LED_PLAY (1) #endif //_APP_CFG_H_