Is it possible that you change „asm“ to „__asm“ in generated code?
That way it would compile with compiler setting -std=c99.Currently when I generate Code for STM32L451 with MX in STM32CubeIDE 1.6.0, syscalls.c containsregister char * stack_ptr asm("sp");This does not work with c99. Changing it toregister char * sta...