Tool/software: TI C/C++ Compiler
I add the sci. c to the sci. h file as a file, and there is a function when the interrupt is not used, but I don't know the meaning of this function:
if(SCI_rxDataReady(halHandle->sciBHandle))
{
while(SCI_rxDataReady(halHandle->sciBHandle) == 0);
dataRx = SCI_getDataNonBlocking(halHandle->sciBHandle, &success);
success = SCI_putDataNonBlocking(halHandle->sciBHandle, dataRx);
}
What is dataRx? How do you define it? Is it the same meaning as dataRx in the following function?
What is success, how do you define it? What does it mean the same as&success?
If I want to send 5AA504 80030001 screen will change;
The received data is sent by the screen and needs to be judged, what is the representation of the received data here?
Thanks!!!!
