Part Number: CC2652R7
Hi
SDK Used : simplelink_cc13xx_cc26xx_sdk_7_10_01_24
Code Used : simple_peripheral_LP_CC2652R7_tirtos7_ticlang
EVK Using : CC2652-R7 Development kit
While using the below code, before send a string to the display printf. Execution is getting hanged
va_list ap;
char str_buffer[71] = {0};
va_start(ap, fmt);
vsnprintf(str_buffer, 70, fmt, ap);
va_end(ap);
The above highlighted portion getting hanged. Without this portion It is not hanged but It will send as non formatted string eg : "Hello World %d" . Can you please tell any solution for this
Display_printf(dispHandle, 0, 0, "%s ", str_buffer);