the APs are not under our control, it is an external IT company,
but I could fix it by adding one line before esp wifi start:
...
ESP_ERROR_CHECK(esp_wifi_config_11b_rate(WIFI_IF_STA, true));
ESP_ERROR_CHECK(esp_wifi_start());
...
my theorie is:
APs do not support old 11B protocol anymore, but ...
Search found 16 matches
- Tue May 20, 2025 12:00 pm
- Forum: ESP-IDF
- Topic: esp32-c6 does not connected to strongest ssid in Multi AP environment
- Replies: 5
- Views: 165
- Mon May 19, 2025 2:21 pm
- Forum: ESP-IDF
- Topic: esp32-c6 does not connected to strongest ssid in Multi AP environment
- Replies: 5
- Views: 165
Re: esp32-c6 does not connected to strongest ssid in Multi AP environment
I disabled password at AP,
and set wifi_config to:
wifi_config_t wifi_config = {
.sta = {
.ssid = "MY Wifi",
.password = "",
.threshold.authmode = WIFI_AUTH_OPEN,
.bssid_set = 0,
},
};
get the same error:
wifi:new:<6,0>, old:<9,0>, ap:<255,255>, sta:<6,0>, prof:1, snd_ch_cfg:0x0
I (59210 ...
and set wifi_config to:
wifi_config_t wifi_config = {
.sta = {
.ssid = "MY Wifi",
.password = "",
.threshold.authmode = WIFI_AUTH_OPEN,
.bssid_set = 0,
},
};
get the same error:
wifi:new:<6,0>, old:<9,0>, ap:<255,255>, sta:<6,0>, prof:1, snd_ch_cfg:0x0
I (59210 ...
- Mon May 19, 2025 9:57 am
- Forum: ESP-IDF
- Topic: esp32-c6 does not connected to strongest ssid in Multi AP environment
- Replies: 5
- Views: 165
Re: esp32-c6 does not connected to strongest ssid in Multi AP environment
Hello,
I tried all combinations,
no changes
Regards,
Mike
I tried all combinations,
no changes
Regards,
Mike
- Wed May 14, 2025 12:57 pm
- Forum: ESP-IDF
- Topic: esp32-c6 does not connected to strongest ssid in Multi AP environment
- Replies: 5
- Views: 165
esp32-c6 does not connected to strongest ssid in Multi AP environment
Hi folk,
I have a strange problem to connect to ssid with strongest rssi when the same ssid is visible with different rssi's or/and different channels, like this:
I (3170) scan: SSID MY Wifi
I (3170) scan: RSSI -67
I (3180) scan: BSSID 84:39:8f:fe:86:db
I (3180) scan: Authmode WIFI_AUTH_WPA2_PSK
I ...
I have a strange problem to connect to ssid with strongest rssi when the same ssid is visible with different rssi's or/and different channels, like this:
I (3170) scan: SSID MY Wifi
I (3170) scan: RSSI -67
I (3180) scan: BSSID 84:39:8f:fe:86:db
I (3180) scan: Authmode WIFI_AUTH_WPA2_PSK
I ...
- Mon Feb 05, 2024 5:10 pm
- Forum: ESP-IDF
- Topic: partition > 8MB
- Replies: 1
- Views: 1702
partition > 8MB
Hello folk,
I have a t-display amolded s3 with 16MB flash, 8 MB psram, esp32s3
I want to use a 13 MB partition, filled with raw data for gif animation,
everything is ok when the partition is filled < 8MB data, above I get an error:
id.py build shows:
elf/bin/ld: httpd.elf section `.flash.rodata ...
I have a t-display amolded s3 with 16MB flash, 8 MB psram, esp32s3
I want to use a 13 MB partition, filled with raw data for gif animation,
everything is ok when the partition is filled < 8MB data, above I get an error:
id.py build shows:
elf/bin/ld: httpd.elf section `.flash.rodata ...
- Thu Jan 30, 2020 3:27 pm
- Forum: ESP-IDF
- Topic: Changes to RMT driver implementation?
- Replies: 4
- Views: 8740
Re: Changes to RMT driver implementation?
Hi szguyer,
I'm running in the same problem,
it worked perfect before updating IDF to idf_v4.1-dev-2047-g600d542-dirty
now I'm getting a crash at fastled init
Could you fix that issue by now ?
Regards,
Michael
I (1035) fastled: init
Guru Meditation Error: Core 0 panic'ed (LoadProhibited ...
I'm running in the same problem,
it worked perfect before updating IDF to idf_v4.1-dev-2047-g600d542-dirty
now I'm getting a crash at fastled init
Could you fix that issue by now ?
Regards,
Michael
I (1035) fastled: init
Guru Meditation Error: Core 0 panic'ed (LoadProhibited ...
- Thu Oct 26, 2017 3:29 pm
- Forum: ESP-IDF
- Topic: Looking for help with component.mk warnings in libesphttpd
- Replies: 7
- Views: 11277
Re: Looking for help with component.mk warnings in libesphttpd
Hi,
here an example how to use libesphttpd with IDF project
It is based on Spritetm git examples,
the original one's with cat pictures,
with removed warnings and working heatshrink compression
Regards,
Grooves
here an example how to use libesphttpd with IDF project
It is based on Spritetm git examples,
the original one's with cat pictures,
with removed warnings and working heatshrink compression
Regards,
Grooves
- Fri Oct 06, 2017 3:04 pm
- Forum: ESP-IDF
- Topic: add a static library to main in project Mainfile
- Replies: 7
- Views: 12168
Re: add a static library to main in project Mainfile
Hi Sprite,
now I understand more what your code does:
esp_partition_find_first(ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_DATA_OTA, NULL);
is correct, you check if there is already a OTA selected partition.
The problem was, when there on OTA select partition (after make erase_flash),
the ...
now I understand more what your code does:
esp_partition_find_first(ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_DATA_OTA, NULL);
is correct, you check if there is already a OTA selected partition.
The problem was, when there on OTA select partition (after make erase_flash),
the ...
- Thu Oct 05, 2017 4:57 pm
- Forum: ESP-IDF
- Topic: add a static library to main in project Mainfile
- Replies: 7
- Views: 12168
Re: add a static library to main in project Mainfile
Is it correct that you are looking for data partitions ?
esp_partition_find_first(ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_DATA_OTA, NULL);
I use the predefined partitiontable from menuconfig which generates two OTA app partitions
Regards,
Grooves
esp_partition_find_first(ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_DATA_OTA, NULL);
I use the predefined partitiontable from menuconfig which generates two OTA app partitions
Regards,
Grooves
- Thu Oct 05, 2017 3:52 pm
- Forum: ESP-IDF
- Topic: add a static library to main in project Mainfile
- Replies: 7
- Views: 12168
Re: add a static library to main in project Mainfile
I see, due to MMU it is always mapped to the same virtual addresses,
I tried to download just the build.bin file and got some errors:
I don't know which one is important
...
Firmware upload cgi start.
checkBinHeader: e9 4008 3f400020
esp32 ota: no valid ota select sector found!
OTA part select ID ...
I tried to download just the build.bin file and got some errors:
I don't know which one is important
...
Firmware upload cgi start.
checkBinHeader: e9 4008 3f400020
esp32 ota: no valid ota select sector found!
OTA part select ID ...