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:
Emil Gydesen 2020-09-04 10:18:09 +02:00 committed by Carles Cufí
commit b4a8229db6
18 changed files with 30 additions and 30 deletions

View file

@ -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