2024-07-12 08:05 AM
Hello.
My STM32CubeMX version is 6.12, and I have chosen to create the project through the CMake toolchain.
But when I make the project directly, I encounter the problem that target CPU does not support ARM mode. How can I solve it?
I didn't change anything in CMakeLists.txt
Solved! Go to Solution.
2024-07-12 02:02 PM
Cortex-M indeed does not support "ARM mode". It only supports Thumb mode. Check the toolchain definitions.
2024-07-12 02:02 PM
Cortex-M indeed does not support "ARM mode". It only supports Thumb mode. Check the toolchain definitions.
2024-07-13 07:40 AM
thank you very much!!!!