Search found 4 matches
- Tue Jun 13, 2023 9:10 am
- Forum: ESP-IDF
- Topic: ESP32-C6: wifi_pkt_rx_ctrl_t has no member 'secondary_channel' or 'cwb'
- Replies: 2
- Views: 1330
ESP32-C6: wifi_pkt_rx_ctrl_t has no member 'secondary_channel' or 'cwb'
In my csi_rx_cb I get the struct wifi_csi_info_t which, according to this documentation: https://docs.espressif.com/projects/esp-idf/en/v4.3.2/esp32/api-reference/network/esp_wifi.html contains the nested struct wifi_pkt_rx_ctrl_t which contains members like "cwb" or "secondary_channel". But once I ...
- Mon Jun 12, 2023 8:56 am
- Forum: ESP-IDF
- Topic: ESP32-C6: When to call "esp_wifi_set_channel"?
- Replies: 1
- Views: 1587
Re: ESP32-C6: When to call "esp_wifi_set_channel"?
No one? Please
- Wed May 17, 2023 1:42 pm
- Forum: ESP-IDF
- Topic: IP_EVENT_AP_STAIPASSIGNED is never called in AP-Mode
- Replies: 1
- Views: 1038
IP_EVENT_AP_STAIPASSIGNED is never called in AP-Mode
This is my AP init code: ESP_ERROR_CHECK(esp_netif_init()); ESP_ERROR_CHECK(esp_event_loop_create_default()); esp_netif_create_default_wifi_ap(); wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); ESP_ERROR_CHECK(esp_wifi_init(&cfg)); ESP_ERROR_CHECK(esp_event_handler_instance_register(WIFI_EVENT,...
- Thu May 11, 2023 9:07 am
- Forum: ESP-IDF
- Topic: ESP32-C6: When to call "esp_wifi_set_channel"?
- Replies: 1
- Views: 1587
ESP32-C6: When to call "esp_wifi_set_channel"?
I am using the ESP32-C6-WROOM-1 board with ESP-IDF v5.2-dev-503-g17451f1fb3. I am based off of the simple station_example and I would like to change the channel of my module but I am unsure where to do this because the documentation says: This API should be called after esp_wifi_start() When device ...