Hello All,
I have sent a array of integer data by using following API in s32 SDK software
uint8_t buffer[128]
LINFLEXD_UART_DRV_SendData(INST_LINFLEXD_UART1,(uint8_t *)&buffer,sizeof(buffer));
OSIF_TimeDelay(100);
but in teraterm to view the integer data, As I remember we need to use certain format before sending the data
Can anybody help me how can I get the data in terminals
Hi,
you need to convert integer to char. If having single digit-integer just sum your integer to '0'.
Otherwise you need to convert it to string, for example using sprintf library function.
BR, Petr