Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 534 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 534 Bytes

FreeMAES

MAES Framework FreeRTOS Port for Gomspace's Nanomind 3200 (AT32UC3C)

Instructions

  1. Clone this repository:
git clone https://github.com/DRoMarin/MAES-FreeRTOS
  1. Copy the MAES_Framework_Dev/MAES-Source directory into your own project root.
  2. include maes-rtos.h in the project header.

Recomendations

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.