??? 01/08/08 20:26 Read: times Msg Score: +2 +2 Good Answer/Helpful |
#149154 - while loop Responding to: ???'s previous message |
Your pointer assignment "PtrRx = &CompDataRx[0];" and "SerialInit(9600);" are within the main loop.
The code will continually reset 'PtrRx'. You should put "PtrRx= &CompDataRx[0];" and "SerialInit(9600);" before the while loop. |