Skip to content

Commit

Permalink
bluetooth: remove hci_vs_sdc_set_conn_event_trigger()
Browse files Browse the repository at this point in the history
This command was deprecated some time ago.

Signed-off-by: Olivier Lesage <[email protected]>
  • Loading branch information
olivier-le-sage committed Nov 22, 2024
1 parent f99a8cc commit 0a87470
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
10 changes: 0 additions & 10 deletions include/bluetooth/hci_vs_sdc.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,16 +273,6 @@ int hci_vs_sdc_read_average_rssi(const sdc_hci_cmd_vs_read_average_rssi_t *param
int hci_vs_sdc_central_acl_event_spacing_set(
const sdc_hci_cmd_vs_central_acl_event_spacing_set_t *params);

/** @brief Set Connection Event Trigger.
*
* For the complete API description, see sdc_hci_cmd_vs_set_conn_event_trigger().
*
* @param[in] params Input parameters.
*
* @return 0 on success or negative error value on failure.
*/
int hci_vs_sdc_set_conn_event_trigger(const sdc_hci_cmd_vs_set_conn_event_trigger_t *params);

/** @brief Get Next Connection Event Counter.
*
* For the complete API description, see sdc_hci_cmd_vs_get_next_conn_event_counter().
Expand Down
8 changes: 0 additions & 8 deletions subsys/bluetooth/hci_vs_sdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,14 +242,6 @@ int hci_vs_sdc_central_acl_event_spacing_set(
sizeof(*params));
}


int hci_vs_sdc_set_conn_event_trigger(const sdc_hci_cmd_vs_set_conn_event_trigger_t *params)
{
return hci_vs_cmd_no_rsp(SDC_HCI_OPCODE_CMD_VS_SET_CONN_EVENT_TRIGGER,
params,
sizeof(*params));
}

int hci_vs_sdc_get_next_conn_event_counter(
const sdc_hci_cmd_vs_get_next_conn_event_counter_t *params,
sdc_hci_cmd_vs_get_next_conn_event_counter_return_t *return_params)
Expand Down

0 comments on commit 0a87470

Please sign in to comment.