From 4afbc3f79d84de6696aa5f2e3dee7348275308ab Mon Sep 17 00:00:00 2001 From: Rubin Gerritsen Date: Tue, 9 Jul 2024 11:59:23 +0200 Subject: [PATCH] Bluetooth: Remove VS HCI wrappers for coex Those were removed in pull request sdk-nrf #16323, nrfxlib PR #1403. Signed-off-by: Rubin Gerritsen --- include/bluetooth/hci_vs_sdc.h | 20 -------------------- subsys/bluetooth/hci_vs_sdc.c | 14 -------------- 2 files changed, 34 deletions(-) diff --git a/include/bluetooth/hci_vs_sdc.h b/include/bluetooth/hci_vs_sdc.h index 17f92c5a755d..00dbf07811cf 100644 --- a/include/bluetooth/hci_vs_sdc.h +++ b/include/bluetooth/hci_vs_sdc.h @@ -187,26 +187,6 @@ int hci_vs_sdc_event_length_set(const sdc_hci_cmd_vs_event_length_set_t *params) int hci_vs_sdc_periodic_adv_event_length_set( const sdc_hci_cmd_vs_periodic_adv_event_length_set_t *params); -/** @brief Configure Coexistence Scan Request Mode. - * - * For the complete API description, see sdc_hci_cmd_vs_coex_scan_mode_config(). - * - * @param[in] params Input parameters. - * - * @return 0 on success or negative error value on failure. - */ -int hci_vs_sdc_coex_scan_mode_config(const sdc_hci_cmd_vs_coex_scan_mode_config_t *params); - -/** @brief Configure Coexistence Per-Role Priority. - * - * For the complete API description, see sdc_hci_cmd_vs_coex_priority_config(). - * - * @param[in] params Input parameters. - * - * @return 0 on success or negative error value on failure. - */ -int hci_vs_sdc_coex_priority_config(const sdc_hci_cmd_vs_coex_priority_config_t *params); - /** @brief Set peripheral latency mode. * * For the complete API description, see sdc_hci_cmd_vs_peripheral_latency_mode_set(). diff --git a/subsys/bluetooth/hci_vs_sdc.c b/subsys/bluetooth/hci_vs_sdc.c index e71bd2be23ba..d6bc501d4b9c 100644 --- a/subsys/bluetooth/hci_vs_sdc.c +++ b/subsys/bluetooth/hci_vs_sdc.c @@ -181,20 +181,6 @@ int hci_vs_sdc_periodic_adv_event_length_set( sizeof(*params)); } -int hci_vs_sdc_coex_scan_mode_config(const sdc_hci_cmd_vs_coex_scan_mode_config_t *params) -{ - return hci_vs_cmd_no_rsp(SDC_HCI_OPCODE_CMD_VS_COEX_SCAN_MODE_CONFIG, - params, - sizeof(*params)); -} - -int hci_vs_sdc_coex_priority_config(const sdc_hci_cmd_vs_coex_priority_config_t *params) -{ - return hci_vs_cmd_no_rsp(SDC_HCI_OPCODE_CMD_VS_COEX_PRIORITY_CONFIG, - params, - sizeof(*params)); -} - int hci_vs_sdc_peripheral_latency_mode_set( const sdc_hci_cmd_vs_peripheral_latency_mode_set_t *params) {