Initializing the setup structure seems to fix the problem.
I think it could be the beacon timing that is set to an arbitrary value due to the missing initialization.
Search found 7 matches
- Tue May 23, 2023 8:46 am
- Forum: ESP-IDF
- Topic: Iphone 8 will only occasionally connect to access point
- Replies: 1
- Views: 1220
- Mon May 22, 2023 2:12 pm
- Forum: ESP-IDF
- Topic: Iphone 8 will only occasionally connect to access point
- Replies: 1
- Views: 1220
Iphone 8 will only occasionally connect to access point
Sirs I am having problems with connecting my iPhone8 to the espressif access point. Around only one out of five attempts are successful. I have set logging to "INFO" but the information I get does not make me wiser. I have traversed the posts and have found an issue from 2015 reassembling this probl...
- Wed Nov 23, 2022 9:38 am
- Forum: ESP-IDF
- Topic: Why three instances of python.exe in the .espressif folder on Windows
- Replies: 0
- Views: 779
Why three instances of python.exe in the .espressif folder on Windows
Hi
Just wondering..
Does anyone knows why Espressif framework comprise three instances of python.exe in the ".espressif" folder?
Thanks in advance!
Br Søren
Just wondering..
Does anyone knows why Espressif framework comprise three instances of python.exe in the ".espressif" folder?
Thanks in advance!
Br Søren
- Wed Nov 23, 2022 9:35 am
- Forum: ESP-IDF
- Topic: How to allocate PSRAM for only one CPU core on ESP32 Xtensa
- Replies: 5
- Views: 1719
Re: How to allocate PSRAM for only one CPU core on ESP32 Xtensa
Hi
Thanks for your replies
Is it correct that a cache miss in the PSRAM area just triggers functionality implemented in the Espressif "spiram_psram.c" module?
And thereby only stalls the current thread accessing the PSRAM?
Thanks in advance!
Best regards Søren
Thanks for your replies
Is it correct that a cache miss in the PSRAM area just triggers functionality implemented in the Espressif "spiram_psram.c" module?
And thereby only stalls the current thread accessing the PSRAM?
Thanks in advance!
Best regards Søren
- Mon Nov 21, 2022 10:34 am
- Forum: ESP-IDF
- Topic: How to allocate PSRAM for only one CPU core on ESP32 Xtensa
- Replies: 5
- Views: 1719
Re: How to allocate PSRAM for only one CPU core on ESP32 Xtensa
PSRAM access by itself doesn't stall both cores, only the core that is affected. However, what you may be seeing is that PSRAM and flash use the same bus, and as such the processor not using psram will be stalled on a cache miss as it needs to wait for the PSRAM access to finish before it can do a ...
- Mon Nov 21, 2022 7:49 am
- Forum: ESP-IDF
- Topic: How to allocate PSRAM for only one CPU core on ESP32 Xtensa
- Replies: 5
- Views: 1719
How to allocate PSRAM for only one CPU core on ESP32 Xtensa
Hi I need to reserve one CPU core for critical interrupt and WIFI handling. When I use PSRAM the CPU core accessing the PSRAM will get stalled until PSRAM data transmission is concluded. How can I configure ESP-IDF to only allocate PSRAM for one CPU core so the other CPU core won't get stalled due t...
- Wed Nov 09, 2022 9:21 pm
- Forum: ESP-IDF
- Topic: Coprocessor0Disabled (rsr.exccause = 32) thrown when executing "lsi f0,a1,96" leading to errors in esp-cryptoauthlib
- Replies: 1
- Views: 786
Coprocessor0Disabled (rsr.exccause = 32) thrown when executing "lsi f0,a1,96" leading to errors in esp-cryptoauthlib
Using a JTAG debugger I observe that a UserException is thrown when I try to single step over the "lsi f0,a1,96" instruction. The rsr.exccause reports 32, equal to Coprocessor0Disabled exception. The symptom in the system is that after haing executed the code comprising the "lsi f0,a1,96" instructio...