STM32CubeMX 6.17.0 breaks FreeRTOS
I upgraded to 6.17 this morning an have already had to roll back due to a bug in how it now generates fiels for FreeRTOS.
Under the FreeRTOS (Include parameters) options I have this vTaskDelayUntil set to Enabled. This now changes the define name in the user config file (Core/Inc/FreeRTOSConfig.h) to be
#define INCLUDE_xTaskDelayUntil 1
which is correct for the updated freeRTOS version, but in the file (Middleware/Thrid Party/FreeRTOS/Source/CMSIS_RTOS_V2/freertos_os2.h) it has not been updated so it now it throws an error stopping my projects from building. There are other places where vTaskDelayUntil has also not been updated to xTaskDelayUntil. This needs to be fixed.
