FreeRTOS port for STM32L072CZ

I’m looking for documentation on how to get the B-L072Z-LRWAN1 LoRa®/Sigfox™ Discovery kit flashed with FreeRTOS. The board is based on the STM32L072CZ mcu which is itself based on the ARM Cortex M0. The only ARM Cortex M0 firmware I could find was for the STM32F0. Will this firmware work, or is there other firmware that supports this board?

If it is Cortex-M0, then you should be able to use the same Cortex-M0 port - https://github.com/FreeRTOS/FreeRTOS-Kernel/tree/main/portable/GCC/ARM_CM0

Thanks.