docs(ble):Added the parameter name data in esp_vhci_host_send_packet

This commit is contained in:
Wei Yu Han 2024-07-10 10:34:14 +08:00
parent efbc3bbbf5
commit 6df549d6b0

View File

@ -336,7 +336,7 @@ esp_err_t esp_ble_tx_power_set(esp_ble_power_type_t power_type, esp_power_level_
/** /**
* @brief Get BLE TX power * @brief Get BLE TX power
* *
* @note Connection TX power should only be retrived after the connection is established. * @note Connection TX power should only be retrieved after the connection is established.
* *
* @param[in] power_type The type of TX power. It could be Advertising/Connection/Default and etc. * @param[in] power_type The type of TX power. It could be Advertising/Connection/Default and etc.
* *
@ -488,7 +488,7 @@ bool esp_vhci_host_check_send_available(void);
* 1. This function shall not be called within a critical section or when the scheduler is suspended. * 1. This function shall not be called within a critical section or when the scheduler is suspended.
* 2. This function should be called only if `esp_vhci_host_check_send_available()` returns True. * 2. This function should be called only if `esp_vhci_host_check_send_available()` returns True.
* *
* @param[in] Pointer to the packet data * @param[in] data Pointer to the packet data
* @param[in] len The packet length * @param[in] len The packet length
*/ */
void esp_vhci_host_send_packet(uint8_t *data, uint16_t len); void esp_vhci_host_send_packet(uint8_t *data, uint16_t len);