Minor change

This commit is contained in:
Th3maz1ng 2023-04-10 10:02:22 +02:00
parent e67754b878
commit 3bd772837c

View File

@ -112,7 +112,8 @@ static int ble_gatt_mtu_cb(uint16_t conn_handle, const struct ble_gatt_error *er
const char *ble_service_state_2_str(ble_service_state_e state)
{
switch(state) {
switch(state)
{
CASE_RETURN_STR(BLE_SERVICE_MODE_STOPPED)
CASE_RETURN_STR(BLE_SERVICE_MODE_IDLE)
CASE_RETURN_STR(BLE_SERVICE_MODE_ADVERTISING)
@ -120,7 +121,7 @@ const char *ble_service_state_2_str(ble_service_state_e state)
CASE_RETURN_STR(BLE_SERVICE_MODE_INDICATING)
CASE_RETURN_STR(BLE_SERVICE_MODE_EXITING)
default:
return "unkown ble service state";
return "Unkown ble service state";
}
}