forked from Archive/PX4-Autopilot
LL40LS driver: Changes from the May 4th plane test flight
This commit is contained in:
parent
7f91f0cc3e
commit
67b7a85888
|
@ -86,7 +86,7 @@
|
||||||
#define LL40LS_MIN_DISTANCE (0.00f)
|
#define LL40LS_MIN_DISTANCE (0.00f)
|
||||||
#define LL40LS_MAX_DISTANCE (14.00f)
|
#define LL40LS_MAX_DISTANCE (14.00f)
|
||||||
|
|
||||||
#define LL40LS_CONVERSION_INTERVAL 60000 /* 60ms */
|
#define LL40LS_CONVERSION_INTERVAL 100000 /* 100ms */
|
||||||
|
|
||||||
/* oddly, ERROR is not defined for c++ */
|
/* oddly, ERROR is not defined for c++ */
|
||||||
#ifdef ERROR
|
#ifdef ERROR
|
||||||
|
@ -517,8 +517,8 @@ LL40LS::collect()
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t distance = val[0] << 8 | val[1];
|
uint16_t distance = (val[0] << 8) | val[1];
|
||||||
float si_units = (distance * 1.0f) / 100.0f; /* cm to m */
|
float si_units = distance * 0.01f; /* cm to m */
|
||||||
struct range_finder_report report;
|
struct range_finder_report report;
|
||||||
|
|
||||||
/* this should be fairly close to the end of the measurement, so the best approximation of the time */
|
/* this should be fairly close to the end of the measurement, so the best approximation of the time */
|
||||||
|
@ -532,8 +532,10 @@ LL40LS::collect()
|
||||||
report.valid = 0;
|
report.valid = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* publish it */
|
/* publish it, if we are the primary */
|
||||||
|
if (_range_finder_topic >= 0) {
|
||||||
orb_publish(ORB_ID(sensor_range_finder), _range_finder_topic, &report);
|
orb_publish(ORB_ID(sensor_range_finder), _range_finder_topic, &report);
|
||||||
|
}
|
||||||
|
|
||||||
if (_reports->force(&report)) {
|
if (_reports->force(&report)) {
|
||||||
perf_count(_buffer_overflows);
|
perf_count(_buffer_overflows);
|
||||||
|
|
Loading…
Reference in New Issue