File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
components/esp_wifi_remote/idf_v5.3/include/injected Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ extern "C" {
111111#define ESP_ERR_MESH_DISCARD_DUPLICATE (ESP_ERR_MESH_BASE + 20) /**< discard the packet due to the duplicate sequence number */
112112#define ESP_ERR_MESH_DISCARD (ESP_ERR_MESH_BASE + 21) /**< discard the packet */
113113#define ESP_ERR_MESH_VOTING (ESP_ERR_MESH_BASE + 22) /**< vote in progress */
114- #define ESP_ERR_MESH_XMIT (ESP_ERR_MESH_BASE + 23) /**< XMIT */
114+ #define ESP_ERR_MESH_XMIT (ESP_ERR_MESH_BASE + 23) /**< TX fail, the tx state is a value other than timeout and disconnect */
115115#define ESP_ERR_MESH_QUEUE_READ (ESP_ERR_MESH_BASE + 24) /**< error in reading queue */
116116#define ESP_ERR_MESH_PS (ESP_ERR_MESH_BASE + 25) /**< mesh PS is not specified as enable or disable */
117117#define ESP_ERR_MESH_RECV_RELEASE (ESP_ERR_MESH_BASE + 26) /**< release esp_mesh_recv_toDS */
@@ -682,6 +682,8 @@ esp_err_t esp_mesh_stop(void);
682682 * - ESP_ERR_MESH_QUEUE_FULL
683683 * - ESP_ERR_MESH_NO_ROUTE_FOUND
684684 * - ESP_ERR_MESH_DISCARD
685+ * - ESP_ERR_MESH_NOT_SUPPORT
686+ * - ESP_ERR_MESH_XMIT
685687 */
686688esp_err_t esp_mesh_send (const mesh_addr_t * to , const mesh_data_t * data ,
687689 int flag , const mesh_opt_t opt [], int opt_count );
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ typedef struct {
192192 unsigned : 15 ; /**< reserved */
193193 unsigned : 15 ; /**< reserved */
194194 unsigned : 2 ; /**< reserved */
195- unsigned noise_floor : 8 ; /**< the noise floor of the reception frame */
195+ signed noise_floor : 8 ; /**< the noise floor of the reception frame */
196196 signed : 8 ; /**< reserved */
197197 signed : 8 ; /**< reserved */
198198 unsigned : 8 ; /**< reserved */
Original file line number Diff line number Diff line change @@ -938,7 +938,7 @@ typedef struct {
938938 uint8_t ssid_len ; /**< SSID length of connected AP */
939939 uint8_t bssid [6 ]; /**< BSSID of connected AP*/
940940 uint8_t channel ; /**< Channel of connected AP*/
941- wifi_auth_mode_t authmode ;/**< Authentication mode used by AP */
941+ wifi_auth_mode_t authmode ;/**< Authentication mode used by the connection */
942942 uint16_t aid ; /**< Authentication id assigned by the connected AP */
943943} wifi_event_sta_connected_t ;
944944
You can’t perform that action at this time.
0 commit comments