this is the Payload I am getting from the RADAR
payload = [
48, // page #48 (0x30)
21, // Threat Level Target [1,2,3,4] each 2 bits
0,
195, // Range Target [1,2,3,4], each 6 bits
130, // Range Target [1,2,3,4], each 6 bits
137, // Range Target [1,2,3,4], each 6 bits
64,
4
]
From the ANT+ RADAR Profile, the bits 3-5 are the Range Target for each of the Target vehicles (it is tracking)
What I am unsure of is how to interpret the bits 3-5. In the common data pages examples (eg: Product Info pages, it is using 137-130-195 - ??little endian?? or should I be using 195-130-137? Basically which order?
Additionally, on the product info page example, the bits (4-7) are combined together before getting decoded into it's serial number. Am I supposed to do that for the Range Target as well?
thanks for any / all help.
or in pointing me to a direction where I can google or read up more.