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 sprintf stops execution  

sprintf stops execution

Thank you bugmenot

To test it I made a new project with only these lines

  1. include “stm32f4xx.h”
  2. include “stm32f4_discovery.h”


char s200;
int i;

int main(void)
{

i=0;
sprintf(s,”Text :”);

sprintf(s,”Text :%d”,i);

sprintf(s,”Text :”);

for(;;);
}

the first sprintf is executed but the second stops forever.
In the bigger project in which i face the problem the s and i was into the function body and i have change the linker script with heap and stack in 0x2000 but nothing.