Chat freely about anything...

User avatar
By doragasu
#51784 I'm using esp-open-rtos for a design I'm doing with an ESP8266. I have a problem with this sequence:
1. I start an AP scan.
2. The scan event triggers. I call a function to print the AP list, and enqueue a message with the bss pointer using FreeRTOS message queues.
3. On other FreeRTOS task, the mesagge is received. The bss pointer has not changes (it has the same value as before when in the scan complete callback), but when I try printing the AP list... it's gone!!!

Why does this happen? Is the bss list destroyed after returning from the scan complete event callback? Could anyone confirm this?