Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions softdevice_controller/include/sdc_hci.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ typedef enum

/** @brief Send an HCI data packet to the SoftDevice Controller.
*
* @param[in] p_data_in HCI Data packet. The first byte in the buffer should correspond to
* Handle, as specified by the Bluetooth Core Specification.
* @param[in] p_data_in HCI Data packet. The format of the buffer should correspond to
* Vol 4 Part E Section 5.4.2 of the Core_v6.0 specification.
*
* @retval 0 Success
* @retval -NRF_EINVAL Invalid input
Expand All @@ -105,8 +105,8 @@ int32_t sdc_hci_data_put(uint8_t const * p_data_in);
* If an error is returned, the HCI ISO data packet is dropped by the SoftDevice Controller and will not be
* further processed.
*
* @param[in] p_data_in HCI Data packet. The first byte in the buffer should correspond to
* Handle, as specified by the Bluetooth Core Specification.
* @param[in] p_data_in HCI Data packet. The format of the buffer should correspond to
* Vol 4 Part E Section 5.4.2 of the Core_v6.0 specification.
*
* @retval 0 Success
* @retval -NRF_EINVAL Invalid input
Expand Down
Loading