Browse Source

mb12xx: write min and max to report

sbg
Thomas Gubler 10 years ago committed by Lorenz Meier
parent
commit
682f30afe6
  1. 2
      src/drivers/mb12xx/mb12xx.cpp

2
src/drivers/mb12xx/mb12xx.cpp

@ -520,6 +520,8 @@ MB12XX::collect() @@ -520,6 +520,8 @@ MB12XX::collect()
report.timestamp = hrt_absolute_time();
report.error_count = perf_event_count(_comms_errors);
report.distance = si_units;
report.minimum_distance = get_minimum_distance();
report.maximum_distance = get_maximum_distance();
report.valid = si_units > get_minimum_distance() && si_units < get_maximum_distance() ? 1 : 0;
/* publish it, if we are the primary */

Loading…
Cancel
Save