Question
Serial Wire debug Nucleo-WL55 JC1 SWO
Hi,
I trying to debug on nucleo-WL55 with serial wire debug via SWO.
I have enable "Serial Wire Viewer (SWV)" in debug config, and add SWV ITM Data console (Config 0).
Even add this code :
int _write(int file, char *ptr, int len)
{
/* Implement your write code here, this is used by puts and printf for example */
int i=0;
for(i=0 ; i<len ; i++)
ITM_SendChar((*ptr++));
return len;
}With this line : printf("HelloWorld");
Did you know why it doesn't work? Is that possible to have serial wire on WL-55 ? I have all jumper on JP8 as we receive the nucleo-WL55.
My config :

Thanks
