40 lines
796 B
C
40 lines
796 B
C
#ifndef _BAS_CONFIG_H_
|
|
#define _BAS_CONFIG_H_
|
|
|
|
|
|
/** @defgroup BAS Battery Service
|
|
* @brief Battery service
|
|
* @{
|
|
*/
|
|
|
|
|
|
/** @defgroup BAS_CONFIG Battery Service Config
|
|
* @brief Battery service configuration file
|
|
* @{
|
|
*/
|
|
|
|
|
|
/*============================================================================*
|
|
* Macros
|
|
*============================================================================*/
|
|
/** @defgroup BAS_Common_Exported_Macros BAS Common Exported Macros
|
|
* @{
|
|
*/
|
|
|
|
/** @details
|
|
Set BAS_BATTERY_LEVEL_NOTIFY_SUPPORT to 1 to support Battery level notification feature,
|
|
otherwise set it to 0.
|
|
*/
|
|
#define BAS_BATTERY_LEVEL_NOTIFY_SUPPORT 1
|
|
|
|
|
|
/** @} End of BAS_Common_Exported_Macros */
|
|
|
|
/** @} End of BAS_CONFIG */
|
|
|
|
/** @} End of BAS */
|
|
|
|
|
|
|
|
#endif
|