compoment/bt:Change the tabs to space in btc_ble_storage.c & btc_gap_ble.c file

This commit is contained in:
Yulong 2017-04-13 23:50:14 -04:00
parent aff8758fe4
commit f6f094213e
2 changed files with 59 additions and 61 deletions

View File

@ -414,6 +414,7 @@ bt_status_t btc_in_fetch_bonded_ble_device(const char *remote_bd_addr, int add,
if (key_found) {
return BT_STATUS_SUCCESS;
}
return BT_STATUS_FAIL;
}

View File

@ -888,7 +888,6 @@ void btc_gap_ble_call_handler(btc_msg_t *msg)
case BTC_GAP_BLE_SET_SECURITY_PARAM_EVT: {
switch(arg->set_security_param.param_type) {
case ESP_BLE_SM_PASSKEY:
break;
case ESP_BLE_SM_AUTHEN_REQ_MODE: {
uint8_t authen_req = 0;
@ -920,13 +919,11 @@ void btc_gap_ble_call_handler(btc_msg_t *msg)
bta_dm_co_ble_set_max_key_size(key_size);
break;
}
default:
break;
}
break;
}
case BTC_GAP_BLE_SECURITY_RSP_EVT: {
BD_ADDR bd_addr;
tBTA_DM_BLE_SEC_GRANT res = arg->sec_rsp.accept ? BTA_DM_SEC_GRANTED : BTA_DM_SEC_PAIR_NOT_SPT;