2018-01-05 02:19:51 -04:00
|
|
|
/*
|
|
|
|
* This file is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This file is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2019-10-20 10:31:12 -03:00
|
|
|
*
|
2018-01-05 02:19:51 -04:00
|
|
|
* Code by Andrew Tridgell and Siddharth Bharat Purohit
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2018-08-07 03:39:42 -03:00
|
|
|
#include <stdint.h>
|
2018-01-05 02:19:51 -04:00
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
2018-08-07 03:39:42 -03:00
|
|
|
#include <AP_HAL/AP_HAL_Macros.h>
|
|
|
|
#include <AP_HAL/Semaphores.h>
|
|
|
|
#include "AP_HAL_ChibiOS_Namespace.h"
|
2018-03-06 18:41:03 -04:00
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
class ChibiOS::Semaphore : public AP_HAL::Semaphore {
|
|
|
|
public:
|
2018-08-07 03:39:42 -03:00
|
|
|
Semaphore();
|
2018-08-19 22:18:43 -03:00
|
|
|
virtual bool give() override;
|
|
|
|
virtual bool take(uint32_t timeout_ms) override;
|
|
|
|
virtual bool take_nonblocking() override;
|
2018-08-07 03:39:42 -03:00
|
|
|
|
|
|
|
// methods within HAL_ChibiOS only
|
|
|
|
bool check_owner(void);
|
|
|
|
void assert_owner(void);
|
2018-08-19 22:18:43 -03:00
|
|
|
protected:
|
2018-08-07 03:39:42 -03:00
|
|
|
// to avoid polluting the global namespace with the 'ch' variable,
|
2020-01-18 17:57:24 -04:00
|
|
|
// we declare the lock as a uint32_t array, and cast inside the cpp file
|
|
|
|
uint32_t _lock[5];
|
2018-08-19 22:18:43 -03:00
|
|
|
};
|
2023-12-29 17:30:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
BinarySemaphore implementation
|
|
|
|
*/
|
|
|
|
class ChibiOS::BinarySemaphore : public AP_HAL::BinarySemaphore {
|
|
|
|
public:
|
|
|
|
BinarySemaphore(bool initial_state=false);
|
|
|
|
|
|
|
|
CLASS_NO_COPY(BinarySemaphore);
|
|
|
|
|
|
|
|
bool wait(uint32_t timeout_us) override;
|
|
|
|
bool wait_blocking(void) override;
|
|
|
|
void signal(void) override;
|
|
|
|
void signal_ISR(void) override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
uint32_t _lock[5];
|
|
|
|
};
|