21 lines
470 B
C
21 lines
470 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)
|
|
|
|
#define BOD_TEST (1)
|
|
#define LVD_TEST (1)
|
|
|
|
#endif //_APP_CFG_H_
|