feat(bt/bluedroid): Added API to set supported channel selection algorithm

This commit is contained in:
chenjianhua
2024-09-30 11:04:33 +08:00
parent e05fce3c9c
commit 4ae7b4aecf
16 changed files with 168 additions and 3 deletions
@@ -773,6 +773,14 @@ void btm_vsc_complete (UINT8 *p, UINT16 opcode, UINT16 evt_len,
}
break;
}
case HCI_VENDOR_BLE_SET_CSA_SUPPORT: {
uint8_t status;
STREAM_TO_UINT8(status, p);
if (ble_cb && ble_cb->set_csa_support_cmpl_cb) {
ble_cb->set_csa_support_cmpl_cb(status);
}
break;
}
default:
break;
}