Tool/software:
Hi,
My UART data format is as follows:
PREAMBLE, CMD, ID, LENGTH, DATA1, DATA2,........DATA N, CRC
The problem is:
When the data length exceeds a certain value, I can no longer successfully receive the remaining bytes. The data starts repeating from the PREAMBLE. Could you please tell me what might be causing this issue?
The example is showing below
real data : .... 0x53 0x20 0x53 0x54 0x41 0x52 0x54 0x0D 0x0A 0x7A
data in the UART2CC26X2.c : .... 0x53 0x20 0x53 0xAA(preamble) 0x09(cmd) 0x31(id) 0x39(length) 0x5B(data1) 0x30(data2) 0x30(data3)
SDK : simplelink_cc13xx_cc26xx_sdk_8_30_01_01