mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
7e92bbc7bd
Not sure the initialisation is needed but retained it.
14 lines
240 B
C++
14 lines
240 B
C++
#pragma once
|
|
|
|
#include "AP_HAL_Empty.h"
|
|
|
|
class Empty::Semaphore : public AP_HAL::Semaphore {
|
|
public:
|
|
|
|
bool give() override;
|
|
bool take(uint32_t timeout_ms) override;
|
|
bool take_nonblocking() override;
|
|
private:
|
|
bool _taken;
|
|
};
|