Hello!
I'm developing a device based “SimpleLink Sub-1 Ghz Sensor to cloud” and I have a problem. I will describe what I have
- I base development on “simplelink_cc13x0_sdk_3_20_00_23”. I have a “gateway” board, a “sensor” board and “coprocessor” board.
- In sdk I took an example “sensor_CC1310_LAUNCHXL_tirtos_ccs” Now I am redoing it for my task.
- A sensor board developed on the basis of cc1310.
-The sensor board is in sleep mode. Timer wakes up board, after board sends “my message” to the gateway. The gateway receives and processes “my message”, after it replies with “another message”.
My problem
-In the sensor application, I do not accept a response from the gateway. In the log on the gateway side I get code “MAC_NO_ACK”
below will be the message log on the gateway side
message from sensor to gateway
52.900: 00000000: fe 35 42 85 02 01 00 00-00 00 00 00 00 02 34 12 |.5B...........4.|
52.900: 00000010: 00 00 00 00 00 00 2d 47-28 00 06 00 dc ac dc ac |......-G(.......|
52.900: 00000020: 46 00 c4 60 33 33 33 33-33 33 33 33 05 03 03 cf |F..`33333333....|
52.900: 00000030: 03 00 00 02 00 00 00 14-00 ac |.......... |
message from the gateway to the sensor
52.903: 00000000: fe 25 22 05 02 01 00 00-00 00 00 00 00 dc ac 02 |.%".............|
52.903: 00000010: 80 01 00 00 33 33 33 33-33 33 33 33 05 03 03 00 |....33333333....|
52.904: 00000020: 00 00 00 02 00 00 00 15-01 e1 |.......... |
confirmation from the coprocessor
52.910: 00000000: fe 01 62 05 00 66 - |..b..f |
message from sensor to gateway
53.033: 00000000: fe 10 42 84 e9 80 73 5e-28 00 3f 00 03 00 00 00 |..B...s^(.?.....|
53.033: 00000010: 32 00 00 00 b4 - |2.... |
why in the last message I get the code “e9”? What am I doing wrong?