Browse Source

AP_HAL_F4Light: remove un-needed methods

mission-4.1.18
Peter Barker 7 years ago committed by Andrew Tridgell
parent
commit
f6eb7e2ba5
  1. 11
      libraries/AP_HAL_F4Light/Util.h

11
libraries/AP_HAL_F4Light/Util.h

@ -25,17 +25,6 @@ public: @@ -25,17 +25,6 @@ public:
}
inline bool get_soft_armed() { return soft_armed; }
uint64_t get_system_clock_ms() const {
int32_t offs= hal_param_helper->_time_offset * 3600 * 1000; // in ms
return AP_HAL::millis() + (gps_shift+500)/1000 + offs;
}
void set_system_clock(uint64_t time_utc_usec){
gps_shift = time_utc_usec - Scheduler::_micros64();
}
uint32_t available_memory(void) override
{

Loading…
Cancel
Save