Hi,
I'm working with the C6748 (Zoom OMAP-L138 EVM Development Kit) and I've set up uart1 to receive (which it does just fine), uart2 to send (which again it does just fine) and I'm also trying to set up uart 2 to receive as well. As I said, uart 2 can send just fine, but when i try to send it data, it either doesn't receive it (usually), corrupts it (sometimes), or works (rarely). I'm using RealTerm on my pc to send and receive the data and the other odd thing is that whenever I send anything, immediately a sequence of bytes of value 0x07 gets echoed back to me. I get 0x07's regardless of what data I send.
My uart2 initialization code looks like this:
Uart_init();
uart2Params = Uart_PARAMS;
uart2Params.loopbackEnabled = FALSE;
uart2Params.hwiNumber = 9;
uart2Params.opMode = Uart_OpMode_INTERRUPT;
uart2Params.txDmaBCnt = Uart_RxTrigLvl_1;
uart2Params.baudRate = Uart_BaudRate_19_2K;
Thanks,
Nick