Martin Kojtal
Martin Kojtal
https://github.com/ARM-software/CMSIS_5/blob/develop/Device/ARM/ARMCM4/Include/system_ARMCM4.h#L41 - I checked couple of system headers like this one. The workaround like this is required in whatever includes them: ``` // system_ARMCM55.h CMSIS header requires stdint.h, so include...
The file https://github.com/ARM-software/CMSIS_5/blob/develop/CMSIS/RTOS2/RTX/Source/ARM/irq_armv7m.s contains only one FPU selection: ``` IF ({FPU}="FPv4-SP") FPU_USED EQU 1 ELSE FPU_USED EQU 0 ENDIF ``` There are multiple options of FPU for v7m as I...