ardupilot/libraries/AP_HAL_Empty/Scheduler.h
Lucas De Marchi 5ea1784838 global: remove AP_HAL::in_timerprocess()
This is not used and in the only places it would make sense would be
internally to the scheduler so remove it.
2017-08-03 20:25:14 -07:00

26 lines
651 B
C++

#pragma once
#include "AP_HAL_Empty.h"
class Empty::Scheduler : public AP_HAL::Scheduler {
public:
Scheduler();
void init();
void delay(uint16_t ms);
void delay_microseconds(uint16_t us);
void register_delay_callback(AP_HAL::Proc,
uint16_t min_time_ms);
void register_timer_process(AP_HAL::MemberProc);
void register_io_process(AP_HAL::MemberProc);
void suspend_timer_procs();
void resume_timer_procs();
void register_timer_failsafe(AP_HAL::Proc, uint32_t period_us);
void system_initialized();
void reboot(bool hold_in_bootloader);
};