Question
sprintf causes hard fault.
I use "sprintf (string,"comment"); everywhere
now for some reason, I am getting a hardfault. in an innocuous print.
length += sprintf(String + length, "Received Packet from ");
length is only 15.
String is declared as
char String[256];
I guess it is using malloc,
How do we check the allocations are being cleared ?
I never use malloc anywhere, so its not me...
