Bluetooth: Remove _gatt_ infix for Battery Service (BAS)
The _gatt_ infix was determined to be unnecessary as GATT is implied by it being a Bluetooth service. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
This commit is contained in:
parent
7ab35145fb
commit
b4a8229db6
18 changed files with 30 additions and 30 deletions
|
@ -10,7 +10,7 @@
|
|||
|
||||
/**
|
||||
* @brief Battery Service (BAS)
|
||||
* @defgroup bt_gatt_bas Battery Service (BAS)
|
||||
* @defgroup bt_bas Battery Service (BAS)
|
||||
* @ingroup bluetooth
|
||||
* @{
|
||||
*
|
||||
|
@ -30,7 +30,7 @@ extern "C" {
|
|||
*
|
||||
* @return The battery level in percent.
|
||||
*/
|
||||
uint8_t bt_gatt_bas_get_battery_level(void);
|
||||
uint8_t bt_bas_get_battery_level(void);
|
||||
|
||||
/** @brief Update battery level value.
|
||||
*
|
||||
|
@ -41,7 +41,7 @@ uint8_t bt_gatt_bas_get_battery_level(void);
|
|||
*
|
||||
* @return Zero in case of success and error code in case of error.
|
||||
*/
|
||||
int bt_gatt_bas_set_battery_level(uint8_t level);
|
||||
int bt_bas_set_battery_level(uint8_t level);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue