Tool/software: TI-RTOS
Hello All,
With reference to earlier thread i am able to create the UART TX and UART Rx channel for the attached GPS device but I am not getting any data from GPS chip on UART channel.
I can read GPS data over I2C channel. I have configured the UART4 parameters as follows
uartParams = Uart_PARAMS;
uartParams.opMode = UART_OPMODE_INTERRUPT;
uartParams.hwiNumber = 8u;
uartParams.baudRate = UART_BAUDRATE_9_6K;
uartParams.charLen = UART_CHARLEN_8;
uartParams.stopBits = UART_NUMSTOPBITS_1;
uartParams.parity = UART_PARITY_NO;
uartParams.prcmDevId = 3;
uartParams.enableCache = (Bool)FALSE;
The GPS UART interface is also having the same UART setting, but when I give the command GIO_read() API to read the data available with GPS, it never come out of the API call.
GIO_write() also has the same result, am i missing anything here ?
Please let me know your reply on the same.
regards
Hrishikesh