Closed whymarrh closed 7 years ago
What does "Message Available" mean? (Also, is that valid range 1 and 0?)
This means whether or not the microcontroller has received a message to pass along to you. Valid values are 0 and 1.
Also, what is a "null" byte?
A byte which contains no information (0x00). I added this in so that we can send some sort of payload to the microcontroller when sending a RX request in the future without messing up the size of the messages.
Maybe we can split the current description column into two columns (e.g. "title" and "description")?
A byte which contains no information (0x00). I added this in so that we can send some sort of payload to the microcontroller when sending a RX request in the future without messing up the size of the messages.
We could probably just say 0x00
for the payload instead of "null". If I understand correctly, even if you put something in there it wouldn't mean anything, so might as well always use 0x00
?
Maybe we can split the current description column into two columns (e.g. "title" and "description")?
I am okay with this but I will do it later haha. Leave this issue open until I fix it.
We could probably just say 0x00 for the payload instead of "null". If I understand correctly, even if you put something in there it wouldn't mean anything, so might as well always use 0x00?
Yep! I clarified on the wiki.
Maybe we can split the current description column into two columns (e.g. "title" and "description")?
Done and closing.
Done & Closing.
Currently the descriptions in the API docs for the various microcontrollers don't describe what each byte/set of bytes mean.
Command 0x03 – Wireless Receive, for example:
What does "Message Available" mean? (Also, is that valid range
1
and0
?)(Also, what is a "null" byte?)