CubeMX: Error when generating a STM323u575ZItxQ makefile. CPU flag is missing.
When generating a makefile project with the STM32U575 MCU it does not generate the CPU= -mcpu-cortex-m33 section of the makefile
e.g. it looks like this:
#######################################
# CFLAGS
#######################################
# cpu
# fpu
FPU = -mfpu=fpv4-sp-d16
# float-abi
FLOAT-ABI = -mfloat-abi=hard
# mcu
MCU = $(CPU) -mthumb $(FPU) $(FLOAT-ABI)This gives errors while compiling with a fresh makefile project.
