I searched all of the community but couldn't find any answer.
I have a F2806x MCU.
I have a serial peripheral unit that sends data wtih command. It sends data
that compose of bytes. For example; If I send command 0xCE it should
response with echo of my command and the data as follows:
Command: 0xCE
Response:
Byte1: 0xCE (the echo of the command)
Byte 2-5: temperature
Byte 6-9: pressure
Byte 10-13: moisture
Byte 14-17: Timer
Byte 18-19: Checksum
Here, for example, I need the pressure data that consist of 4 byte(32bit).
How can I extract this data from sci. When I write an sci communication
code I only receives 1Byte(8bit) data in sci buffer.(I see in watch window).
My code is compose of known sci code examples.
(I use SCI channel B. And I tested the code examples in the control suite, they works well.)