Part Number: LAUNCHXL-F28379D
Hi,
I am trying to read the receiver data of SCIB as an integer.
while(ScibRegs.SCIFFRX.bit.RXFFST == 0) { } // wait for empty state
//
// Get character
//
while (SciaRegs.SCIFFTX.bit.TXFFST != 0) {}
SciaRegs.SCITXBUF.all =ScibRegs.SCIRXBUF.all;;
The above code displays the output at SCIA (GPIO 43 and 42) on the terminal. I am able to see the output clearly. However, when i try to compare the buffer value to a constant value, there is no output. So, I wanted to know how I can compare this with an integer and get an output without issues.