FreeRTOS for ARM M0+ with tickless for IAR workbench

Hello everybody. I would like to configure my FreeRTOS as tickles with a efm32tg11b140f64gm32 which is a M0+ micro. On the FreeRTOS source folder, for IAR, I don’t find the ARM_CM0+ folder with the files (port.c, portasm.s, portmacro.h). Does it exist ? If yes, where can I download it ? Thank you very much

FreeRTOS for ARM M0+ with tickless for IAR workbench

The FreeRTOS download already contains a Cortex-M0 port for IAR in FreeRTOS/Source/portable/IAR/ARM_CM0 – but I don’t think any of the M0 ports have tickless idle implemented – it is however on our todo list to add tickless support to M0 ports too as it has become a common ask. Others on the forum have had success just copying the tickless implementation from an M3 or M4 port into the M0 code.

FreeRTOS for ARM M0+ with tickless for IAR workbench

Thank you ! I will try to used the M3 as base and make it working.