Loading...
 

SW4STM32 and SW4Linux fully supports the STM32MP1 asymmetric multicore Cortex/A7+M4 MPUs

   With System Workbench for Linux, Embedded Linux on the STM32MP1 family of MPUs from ST was never as simple to build and maintain, even for newcomers in the Linux world. And, if you install System Workbench for Linux in System Workbench for STM32 you can seamlessly develop and debug asymmetric applications running partly on Linux, partly on the Cortex-M4.
You can get more information from the ac6-tools website and download (registration required) various documents highlighting:

System Workbench for STM32


STM32F4-Discovery - FreeRTOS project generation bug

Hi everyone,

I love the work you did with this IDE and I hope I can help with something.
I tried to create a new project for an STM32F4-Discovery with FreeRTOS and I was suprised that it worked like a charm. Except when I tried to run it, the program always went to Default Handler. (Newes version 1.6.0)
I found the bug, it was a typo in the generated FreeRTOSConfig.h file in line 168:

  1. define xPortSysTickHandler Systick_Handler

The correct definition would be:

  1. define xPortSysTickHandler SysTick_Handler

Notice the capital T in the SysTick.

ps: I didn’t find any bug report site, so I posted it here.