I want my project to ignore the stm32h7xx_it.c file, but CubeMX auto-generates this every time. Is there a way I can ignore certain files from compiling in the extSettings before it generates a uvision/cubeide project?
I want to use the intrinsic floating point absolute value function `__fabs` as noted in the compiler specific features in the armcc documentation.When I build my project using the following settings on STM32CubeIDE: I get an error saying undefined re...
I have the interrupts defined elsewhere in a different file, so I don't need to compile the self-generated stm32h7xx_it.c file. Sure, I can configure the project afterwards in uvision, but is there any way to tell CubeMX to do it before the project s...
This may not be the solution you were looking for; however, I was left with some constraints;I did not want to include the entire math header.This had to compile for STM32CubeIDE, MDK-ARM, and a linux version.My goal for the following code snippet wa...