Part Number: TMS320F28069F
Hello,
I have 100 data to read from SCI receiver of TMS320F28069F. Can I write the code below to save the data to buffer or array?
uint16 PositionMM[100];
uint16 num = 0;
PositionMM = SciaRegs.SCIRXBUF.all;
if(num<=100)
{
PositionML[num] = PositionMM;
num++;
}
Thanks,
Hao