You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The PARAM_EXT_SET message (ID 323) uses a char[128] array for param_value, but its interpretation depends on MAV_PARAM_EXT_TYPE. Current implementation incorrectly treats all values as strings.
Example :
Problem:
The PARAM_EXT_SET message (ID 323) uses a char[128] array for param_value, but its interpretation depends on MAV_PARAM_EXT_TYPE. Current implementation incorrectly treats all values as strings.
Example :
Output:
The correct way of putting this message together is for example to use memcpy to copy the float value to the char array (example using c_library_v2 ):
Question:
Is there a quick fix for this issue in the Message Object implementation, or is it possible to manually set the value as a workaround?
The text was updated successfully, but these errors were encountered: