Compressed quaternion decoding #553
-
I'm using an off-board controller to generate an optimal trajectory, which defines the state vector as : To get this observed onboard state from the Crazyflie, I'm synchronously logging the
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Not that I know of, but it could be useful. I think the compressed logging was implemented by Crazyswam and I don't think it has been used that much from the python lib? You will have to re-implement the decoding function in python, there is some bit fiddeling but it should be possible. It is possible that the
No, as long as there is bandwidth available in the link you should get the rate you configure. One log "event" is always transmitted in one radio packet, so the size not that important. This is also why there is a limit on how many log variables that can be configured into one log block. |
Beta Was this translation helpful? Give feedback.
Not that I know of, but it could be useful. I think the compressed logging was implemented by Crazyswam and I don't think it has been used that much from the python lib? You will have to re-implement the decoding function in python, there is some bit fiddeling but it should be possible. It is possible that the
struct.unpack
feature in python can be useful, not sure.