Skip to content

Commit 10db35e

Browse files
committed
fix(v5.5): Revert changes based on docker image
1 parent 19ed9d0 commit 10db35e

File tree

4 files changed

+0
-55
lines changed

4 files changed

+0
-55
lines changed

components/esp_wifi_remote/idf_v5.5/Kconfig.wifi.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,6 @@ config WIFI_RMT_WAPI_PSK
613613
config WIFI_RMT_SUITE_B_192
614614
bool "Enable NSA suite B support with 192 bit key"
615615
default n
616-
depends on WIFI_RMT_ENTERPRISE_SUPPORT
617616
depends on SLAVE_SOC_WIFI_GCMP_SUPPORT
618617
select WIFI_RMT_GCMP_SUPPORT
619618
select WIFI_RMT_GMAC_SUPPORT

components/esp_wifi_remote/idf_v5.5/include/injected/esp_now.h

Lines changed: 0 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -102,31 +102,6 @@ typedef wifi_tx_info_t esp_now_send_info_t;
102102
*/
103103
typedef wifi_tx_rate_config_t esp_now_rate_config_t;
104104

105-
/**
106-
* @brief ESPNOW switch channel information
107-
*/
108-
typedef struct {
109-
wifi_action_tx_t type; /**< ACTION TX operation type */
110-
uint8_t channel; /**< Channel on which to perform ESPNOW TX Operation */
111-
wifi_second_chan_t sec_channel; /**< Secondary channel */
112-
uint32_t wait_time_ms; /**< Duration to wait for on target channel */
113-
uint8_t op_id; /**< Unique Identifier for operation provided by wifi driver */
114-
uint8_t dest_mac[6]; /**< Destination MAC address */
115-
uint16_t data_len; /**< Length of the appended Data */
116-
uint8_t data[0]; /**< Appended Data payload */
117-
} esp_now_switch_channel_t;
118-
119-
/**
120-
* @brief ESPNOW remain on channel information
121-
*/
122-
typedef struct {
123-
wifi_roc_t type; /**< ROC operation type */
124-
uint8_t channel; /**< Channel on which to perform ESPNOW ROC Operation */
125-
wifi_second_chan_t sec_channel; /**< Secondary channel */
126-
uint32_t wait_time_ms; /**< Duration to wait for on target channel */
127-
uint8_t op_id; /**< ID of this specific ROC operation provided by wifi driver */
128-
} esp_now_remain_on_channel_t;
129-
130105
/**
131106
* @brief Callback function of receiving ESPNOW data
132107
* @param esp_now_info received ESPNOW packet information
@@ -419,32 +394,6 @@ esp_err_t esp_now_set_user_oui(uint8_t *oui);
419394
*/
420395
esp_err_t esp_now_get_user_oui(uint8_t *oui);
421396

422-
/**
423-
* @brief ESPNOW switch to a specific channel for a required duration, and send one ESPNOW data.
424-
*
425-
* @param config ESPNOW switch channel relevant information
426-
*
427-
* @return
428-
* - ESP_OK : succeed
429-
* - ESP_ERR_NO_MEM: failed to allocate memory
430-
* - ESP_ERR_INVALID_ARG: the <channel, sec_channel> pair is invalid
431-
* - ESP_FAIL: failed to send frame
432-
*/
433-
esp_err_t esp_now_switch_channel_tx(esp_now_switch_channel_t *config);
434-
435-
/**
436-
* @brief ESPNOW remain on the target channel for required duration.
437-
*
438-
* @param config ESPNOW remain on channel relevant information
439-
*
440-
* @return
441-
* - ESP_OK : succeed
442-
* - ESP_ERR_NO_MEM: failed to allocate memory
443-
* - ESP_ERR_INVALID_ARG: the <channel, sec_channel> pair is invalid
444-
* - ESP_FAIL: failed to perform roc operation
445-
*/
446-
esp_err_t esp_now_remain_on_channel(esp_now_remain_on_channel_t *config);
447-
448397
/**
449398
* @}
450399
*/

components/esp_wifi_remote/idf_v5.5/include/injected/esp_wifi.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,6 @@ esp_err_t esp_wifi_get_bandwidths(wifi_interface_t ifx, wifi_bandwidths_t *bw);
18291829
* @return
18301830
* - ESP_OK: succeed
18311831
* - ESP_ERR_NO_MEM: failed to allocate memory
1832-
* - ESP_ERR_INVALID_ARG: the <channel, sec_channel> pair is invalid
18331832
* - ESP_FAIL: failed to send frame
18341833
*/
18351834
esp_err_t esp_wifi_action_tx_req(wifi_action_tx_req_t *req);
@@ -1842,7 +1841,6 @@ esp_err_t esp_wifi_action_tx_req(wifi_action_tx_req_t *req);
18421841
* @return
18431842
* - ESP_OK: succeed
18441843
* - ESP_ERR_NO_MEM: failed to allocate memory
1845-
* - ESP_ERR_INVALID_ARG: the <channel, sec_channel> pair is invalid
18461844
* - ESP_FAIL: failed to perform roc operation
18471845
*/
18481846
esp_err_t esp_wifi_remain_on_channel(wifi_roc_req_t * req);

components/esp_wifi_remote/idf_v5.5/include/injected/esp_wifi_types_generic.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,6 @@ typedef struct {
794794
uint8_t dest_mac[6]; /**< Destination MAC address */
795795
wifi_action_tx_t type; /**< ACTION TX operation type */
796796
uint8_t channel; /**< Channel on which to perform ACTION TX Operation */
797-
wifi_second_chan_t sec_channel; /**< Secondary channel */
798797
uint32_t wait_time_ms; /**< Duration to wait for on target channel */
799798
bool no_ack; /**< Indicates no ack required */
800799
wifi_action_rx_cb_t rx_cb; /**< Rx Callback to receive action frames */

0 commit comments

Comments
 (0)