Hi,
I would like to send hexadecimal data to serial port in CCS, however I couln't achieve it. I cannot send hex data, eventhough I can do it for the string.
Basically, I use the codes below:
uint8* TEXT1[1]= {0x05};
#define UART sciREG1
int main(void){
sciInit();
while (1){
sciSendByte(UART, &TEXT1[0]);
}
And I see "p" on terminal. Any reply would be appreciated.
Regards.