Describe the bug
Output from QGC says it all:
PX4ParameterMetaDataLog: Invalid max value, name: "VTQ_TELEM_IDS_1" type: 5 max: "4294967295" error: "Value must be within 0 and 2147483647"
PX4ParameterMetaDataLog: Invalid value for bitmask, bit: 31
PX4ParameterMetaDataLog: Invalid max value, name: "VTQ_TELEM_IDS_2" type: 5 max: "9223372036854775807" error: "Value must be within 0 and 2147483647"
These parameters are INT32s. Note the metadata for max which is larger than an INT32.
And then for VTQ_TELEM_IDS_2:
PX4ParameterMetaDataLog: Invalid value for bitmask, bit: 32
PX4ParameterMetaDataLog: Invalid value for bitmask, bit: 33
...
This is trying to set bits which are not available on an INT32.
Also since these are both bit mask parameters these should really be unsigned.
To Reproduce
Boot latest daily build QGC
Expected behavior
No response
Screenshot / Media
No response
Flight Log
No response
Software Version
No response
Flight controller
No response
Vehicle type
None
How are the different components wired up (including port information)
No response
Additional context
No response
Describe the bug
Output from QGC says it all:
These parameters are INT32s. Note the metadata for max which is larger than an INT32.
And then for
VTQ_TELEM_IDS_2:This is trying to set bits which are not available on an INT32.
Also since these are both bit mask parameters these should really be unsigned.
To Reproduce
Boot latest daily build QGC
Expected behavior
No response
Screenshot / Media
No response
Flight Log
No response
Software Version
No response
Flight controller
No response
Vehicle type
None
How are the different components wired up (including port information)
No response
Additional context
No response