uncrustify libraries/AP_RangeFinder/AP_RangeFinder_MaxsonarXL.h

This commit is contained in:
uncrustify 2012-08-16 23:21:04 -07:00 committed by Pat Hickey
parent c6f99a7b6e
commit 9c45c74d97
1 changed files with 8 additions and 6 deletions

View File

@ -29,12 +29,14 @@
class AP_RangeFinder_MaxsonarXL : public RangeFinder
{
public:
AP_RangeFinder_MaxsonarXL(AP_AnalogSource *source, FilterInt16 *filter);
int convert_raw_to_distance(int _raw_value) { return _raw_value * _scaler; } // read value from analog port and return distance in cm
float calculate_scaler(int sonar_type, float adc_refence_voltage);
public:
AP_RangeFinder_MaxsonarXL(AP_AnalogSource *source, FilterInt16 *filter);
int convert_raw_to_distance(int _raw_value) {
return _raw_value * _scaler;
} // read value from analog port and return distance in cm
float calculate_scaler(int sonar_type, float adc_refence_voltage);
private:
float _scaler; // used to account for different sonar types
private:
float _scaler; // used to account for different sonar types
};
#endif