Hello,
I am trying to compile simple program with standard C library. I generated project with CircleOS, and simlpy added
#include <stdio.h>
and some lines inside Application_Handler:
char bufer[10];
int j;
j=10;
sprintf(bufer,"j= %d",j);
------------------
Build has ended with the message:
!!!!!!!!! FLASH IS FULL !!!!!!!!!!!
Build failed
Does it means I can not use stdio.h with STM32 and supplied Ride environment?