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


You are viewing a reply to Programming fails?  

Programming fails?

Hi,

The code seems ok, but did you added a LED on PD2 port (also you can check with an oscilloscope) ?

From factory Nucleo F401RE board has an green LED on PA5 (see UM1724 pag 57 - http://www.st.com/web/en/resource/technical/document/user_manual/DM00105823.pdfQuestion and attached screenshot).

This code works for me on F401RE:


/* -3- Toggle PA05 IO in an infinite loop */
while (1)
{
HAL_GPIO_TogglePin(GPIOA, GPIO_PIN_5);

/* Insert delay - ms */
HAL_Delay(500);
}


If you don’t have output on LD2 with above code, check if the board is correctly powered.