MissionPlanner icon indicating copy to clipboard operation
MissionPlanner copied to clipboard

Tuning/Quick: NAMED_VALUE_FLOAT leads to multiple identical entries

Open rmackay9 opened this issue 1 year ago • 2 comments

If multiple NAMED_VALUE_FLOAT value are sent from the flight code, each with different names, MP seems to mixup the names and only display one of them on the Action or Tuning tabs list "Display This" screen. So instead of multiple names appearing, only one name appears multiple times.

This is and example of what the screen shows in this situation: image

rmackay9 avatar Feb 28 '24 06:02 rmackay9

Checked on latest beta, and Copter 4.4.4 no repro. Sent named_floats from a lua script. image function lrf ()

distance = 100 gcs:send_named_float("First", distance) gcs:send_named_float("Second", distance) gcs:send_named_float("Third", distance) gcs:send_named_float("Fourth", distance) gcs:send_named_float("Fifth", distance) gcs:send_named_float("Sixth", distance)

return lrf, 1000

end

return lrf, 1000

EosBandi avatar Mar 05 '24 12:03 EosBandi

Same, I haven't hit this. @rmackay9 do you have a tlog? Maybe that will help reproduce

robertlong13 avatar Mar 05 '24 12:03 robertlong13