- Clone this repository:
git clone https://github.com/DRoMarin/MAES-FreeRTOS
- Copy the MAES_Framework_Dev/MAES-Source directory into your own project root.
- include
maes-rtos.h
in the project header.
If your compiler shows the error undefined _cxa_pure_virtual
include the following code:
extern "C" void __cxa_pure_virtual() { while (1); }
This avoids undefined virtual functions.