Other Parts Discussed in Thread: SYSCONFIG
Tool/software:
Hello,
I have a problem with this simple program
#include "ti_msp_dl_config.h"
#include <stdio.h>
int main(void)
{
float A = 3.2;
char Buffer [50];
SYSCFG_DL_init();
sprintf(Buffer,"%f",A);
while (1)
{
}
}
When I try to debug, I have the following error:

If I try to debug a second time, I have the following error:

If I remove sprintf(Buffer,"%f",A); It works after unplug and replug the LP-MSPM0G3507
#include "ti_msp_dl_config.h"
#include <stdio.h>
int main(void)
{
float A = 3.2;
char Buffer [50];
SYSCFG_DL_init();
// sprintf(Buffer,"%f",A);
while (1)
{
}
}
What can be the root of this issue?
IAR 9.70.1
SysConfig 1.22.0+3893
Firmware: XDS110 (03.00.00.36)
Best regards,