mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
2ffb08b9ca
Like was done for AP_HAL_Linux in 2ac96b9
("AP_HAL_Linux: remove prefix
from AP_HAL_Linux classes"), remove the "Empty" prefix from class names
since we are already inside the Empty namespace.
36 lines
879 B
C++
36 lines
879 B
C++
|
|
#ifndef __AP_HAL_EMPTY_SCHEDULER_H__
|
|
#define __AP_HAL_EMPTY_SCHEDULER_H__
|
|
|
|
#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();
|
|
|
|
bool in_timerprocess();
|
|
|
|
void register_timer_failsafe(AP_HAL::Proc, uint32_t period_us);
|
|
|
|
void begin_atomic();
|
|
void end_atomic();
|
|
|
|
bool system_initializing();
|
|
void system_initialized();
|
|
|
|
void reboot(bool hold_in_bootloader);
|
|
|
|
};
|
|
|
|
#endif // __AP_HAL_EMPTY_SCHEDULER_H__
|