tsandmann / freertos-teensy

FreeRTOS port with C++ std::thread support for ARM boards Teensy 3.5, 3.6, 4.0 and 4.1 (cortex-m4f and cortex-m7f)
92 stars 15 forks source link

Support for teensy 3.1 and 3.2 #10

Closed larsvankleef closed 2 years ago

larsvankleef commented 2 years ago

Would it be possible to make this library work on a teensy 3.1 or 3.2? Or are there limitations on this board that would keep this from working?

tsandmann commented 2 years ago

This library uses the ARM_CM4F (Cortex-M4F) port of the FreeRTOS kernel. The teensy 3.1/3.2 boards use a Cortex-M4 controller (without FPU), so for these boards the ARM_CM3 port (Cortex-M3/4) would be needed instead. Maybe it's possible to create a combined library, but I haven't checked that.