Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upRefactor the ESP32 example application #1006
Open
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Problem
The ESP32 example application should be using FreeRTOS tasks(like the EFR32, nRF5 examples) instead of a while loop with a sleep. Because of this it currently needs to poll the buttons to use them.
Proposed Solution
Switch to the AppTask model the other examples use and update the buttons to be interrupt based, if possible.