Browse Source

PulsedLightRFinder: read method returns int16_t

master
Randy Mackay 11 years ago
parent
commit
32820b4260
  1. 2
      libraries/AP_RangeFinder/AP_RangeFinder_PulsedLightLRF.cpp
  2. 2
      libraries/AP_RangeFinder/AP_RangeFinder_PulsedLightLRF.h

2
libraries/AP_RangeFinder/AP_RangeFinder_PulsedLightLRF.cpp

@ -80,7 +80,7 @@ bool AP_RangeFinder_PulsedLightLRF::take_reading() @@ -80,7 +80,7 @@ bool AP_RangeFinder_PulsedLightLRF::take_reading()
}
// read - return last value measured by sensor
int AP_RangeFinder_PulsedLightLRF::read()
int16_t AP_RangeFinder_PulsedLightLRF::read()
{
uint8_t buff[2];
int16_t ret_value = 0;

2
libraries/AP_RangeFinder/AP_RangeFinder_PulsedLightLRF.h

@ -90,7 +90,7 @@ public: @@ -90,7 +90,7 @@ public:
bool take_reading();
// read value from sensor and return distance in cm
int read();
int16_t read();
// heath
bool healthy;

Loading…
Cancel
Save