Other Parts Discussed in Thread: HALCOGEN
Hi ,
I enabled SCI2 in Halcogen and I can enable to read and write the data through usb connection , I need to access another SCI port.
I enabled sci in pinmux, driver enable . Then set the baud rate as 9600 and connected to GIO port where it is in SCI. I connected UART transceiver to N2 and W3 . But the data is printed in serial terminal.
Below is the code reference , I used.
#define UART scilinREG
#define UART2 sciPORT
sciDisplayText(UART2,&TEXT1[0],TSIZE1); /* send text code 1 */
sciReceive(UART2, 5, &readBuffer[0]);
When I use UART , its working fine .but its not working in UART2.