Page 1 of 1

ESP32 BLE Mesh with Zephyr, could run next to freertos ?

Posted: Mon Mar 01, 2021 4:37 pm
by Dav Electro
Hi All,

If I am correct, ESP32 BLE mesh is using Zephyr (RTOS), and I managed to use it in my project where also freeRTOS is used. I plan to integrate fast provisionning, based on the example in my project.
That would make 2 RTOS running in parallel ...
It seems to work on my first basic tests, but Is there any risk I should consider ?

Thanks,
David

Re: ESP32 BLE Mesh with Zephyr, could run next to freertos ?

Posted: Mon Mar 01, 2021 9:20 pm
by WiFive
I don't think so, the ble stack from zephyr is used but the zephyr rtos kernel is not used.

Re: ESP32 BLE Mesh with Zephyr, could run next to freertos ?

Posted: Tue Mar 02, 2021 10:17 am
by Dav Electro
ok, I saw "k_delayed_work_submit" function in fast provisionner sample, but this might be the only use of zephyr RTOS, so I could change it for the RTOS I am using,

thanks,