Skip to content

Commit

Permalink
Bluetooth: Remove VS HCI wrappers for coex
Browse files Browse the repository at this point in the history
Those were removed in pull request sdk-nrf #16323,
nrfxlib PR #1403.

Signed-off-by: Rubin Gerritsen <rubin.gerritsen@nordicsemi.no>
  • Loading branch information
rugeGerritsen committed Jul 9, 2024
1 parent 03f1ba3 commit 4afbc3f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 34 deletions.
20 changes: 0 additions & 20 deletions include/bluetooth/hci_vs_sdc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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().
Expand Down
14 changes: 0 additions & 14 deletions subsys/bluetooth/hci_vs_sdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 4afbc3f

Please sign in to comment.