18 lines
405 B
C
18 lines
405 B
C
|
/**
|
||
|
****************************************************************************************
|
||
|
*
|
||
|
* @file cfg.h
|
||
|
*
|
||
|
* @brief App Configure MACRO, --preinclude
|
||
|
*
|
||
|
****************************************************************************************
|
||
|
*/
|
||
|
|
||
|
#ifndef _APP_CFG_H_
|
||
|
#define _APP_CFG_H_
|
||
|
|
||
|
/// Debug Mode: 0=Disable, 1=via UART, 2=RTT Viewer
|
||
|
#define DBG_MODE (1)
|
||
|
|
||
|
#endif //_APP_CFG_H_
|