mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-02 05:58:30 -04:00
uncrustify libraries/AP_LeadFilter/AP_LeadFilter.h
This commit is contained in:
parent
aa5742cd3e
commit
78189a4b2f
@ -10,19 +10,20 @@
|
|||||||
|
|
||||||
/// @class AP_LeadFilter
|
/// @class AP_LeadFilter
|
||||||
/// @brief Object managing GPS lag
|
/// @brief Object managing GPS lag
|
||||||
class AP_LeadFilter{
|
class AP_LeadFilter {
|
||||||
public:
|
public:
|
||||||
/// Constructor
|
/// Constructor
|
||||||
///
|
///
|
||||||
///
|
///
|
||||||
AP_LeadFilter() :
|
AP_LeadFilter() :
|
||||||
_last_velocity(0) {}
|
_last_velocity(0) {
|
||||||
|
}
|
||||||
|
|
||||||
// setup min and max radio values in CLI
|
// setup min and max radio values in CLI
|
||||||
int32_t get_position(int32_t pos, int16_t vel);
|
int32_t get_position(int32_t pos, int16_t vel);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int16_t _last_velocity;
|
int16_t _last_velocity;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user