mirror of https://github.com/ArduPilot/ardupilot
AP_RTC: Delete unused variables
AP_RTC: Delete unused variables
This commit is contained in:
parent
d05ab1b983
commit
820f9bd260
|
@ -6,13 +6,6 @@
|
||||||
|
|
||||||
extern const AP_HAL::HAL& hal;
|
extern const AP_HAL::HAL& hal;
|
||||||
|
|
||||||
const char *AP_RTC::_clock_source_types[] = {
|
|
||||||
"GPS",
|
|
||||||
"SYSTEM_TIME",
|
|
||||||
"HW",
|
|
||||||
"NONE",
|
|
||||||
};
|
|
||||||
|
|
||||||
AP_RTC::AP_RTC()
|
AP_RTC::AP_RTC()
|
||||||
{
|
{
|
||||||
AP_Param::setup_object_defaults(this, var_info);
|
AP_Param::setup_object_defaults(this, var_info);
|
||||||
|
|
|
@ -46,8 +46,6 @@ public:
|
||||||
return _singleton;
|
return _singleton;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char *_clock_source_types[];
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
static AP_RTC *_singleton;
|
static AP_RTC *_singleton;
|
||||||
|
|
Loading…
Reference in New Issue