Arduino library to use QP/C++ with the ESP32 and the Arduino SDK. Based on the port developed for the ESP32.
- Arduino ESP32 Core >= v2.0.11
Open any of the examples and upload to an ESP32.
-
Typically
QF::run()should be executed as a last instruction before QP takes charge of executing the framework. As such, it should not return and instead give control to the scheduler of the host. However, the ESP32 framework (esp-idf) already runs the scheduler beforevoid setup()andvoid loop(). This means that instead of runningQF::run()in a loop, it suffices to execute it once as the last instruction invoid setup(). -
No more QSpy on this port