FreeRTOS for ARM M0+ with tickless for IAR workbench

jgoulet wrote on Thursday, August 15, 2019:

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

rtel wrote on Thursday, August 15, 2019:

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.

jgoulet wrote on Friday, August 16, 2019:

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