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/>.
|
|
|
|
*
|
|
|
|
* Code by Andrew Tridgell and Siddharth Bharat Purohit
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_CHIBIOS
|
|
|
|
#include "AP_HAL_ChibiOS_Namespace.h"
|
|
|
|
|
|
|
|
#define CHIBIOS_SCHEDULER_MAX_TIMER_PROCS 8
|
|
|
|
|
|
|
|
#define APM_MAIN_PRIORITY 180
|
|
|
|
#define APM_TIMER_PRIORITY 178
|
2018-01-18 15:12:38 -04:00
|
|
|
#define APM_RCIN_PRIORITY 177
|
2018-01-28 14:31:21 -04:00
|
|
|
#define APM_TONEALARM_PRIORITY 61
|
2018-01-05 02:19:51 -04:00
|
|
|
#define APM_UART_PRIORITY 60
|
|
|
|
#define APM_STORAGE_PRIORITY 59
|
|
|
|
#define APM_IO_PRIORITY 58
|
|
|
|
#define APM_STARTUP_PRIORITY 10
|
|
|
|
|
2018-04-02 23:25:42 -03:00
|
|
|
/*
|
|
|
|
boost priority handling
|
|
|
|
*/
|
|
|
|
#ifndef APM_MAIN_PRIORITY_BOOST
|
|
|
|
#define APM_MAIN_PRIORITY_BOOST 182
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef APM_MAIN_PRIORITY_BOOST_USEC
|
|
|
|
#define APM_MAIN_PRIORITY_BOOST_USEC 200
|
|
|
|
#endif
|
|
|
|
|
2018-01-17 04:36:12 -04:00
|
|
|
#ifndef APM_SPI_PRIORITY
|
2018-04-02 04:39:10 -03:00
|
|
|
// SPI priority needs to be above main priority to ensure fast sampling of IMUs can keep up
|
|
|
|
// with the data rate
|
|
|
|
#define APM_SPI_PRIORITY 181
|
2018-01-17 04:36:12 -04:00
|
|
|
#endif
|
|
|
|
|
2018-02-01 15:21:18 -04:00
|
|
|
#ifndef APM_UAVCAN_PRIORITY
|
|
|
|
#define APM_UAVCAN_PRIORITY 178
|
|
|
|
#endif
|
|
|
|
|
2018-01-17 04:36:12 -04:00
|
|
|
#ifndef APM_CAN_PRIORITY
|
|
|
|
#define APM_CAN_PRIORITY 177
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef APM_I2C_PRIORITY
|
|
|
|
#define APM_I2C_PRIORITY 176
|
|
|
|
#endif
|
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
#define APM_MAIN_THREAD_STACK_SIZE 8192
|
|
|
|
|
|
|
|
/* Scheduler implementation: */
|
2018-01-13 00:02:05 -04:00
|
|
|
class ChibiOS::Scheduler : public AP_HAL::Scheduler {
|
2018-01-05 02:19:51 -04:00
|
|
|
public:
|
2018-01-13 00:02:05 -04:00
|
|
|
Scheduler();
|
2018-01-05 02:19:51 -04:00
|
|
|
/* AP_HAL::Scheduler methods */
|
|
|
|
|
|
|
|
|
|
|
|
void init();
|
|
|
|
void delay(uint16_t ms);
|
|
|
|
void delay_microseconds(uint16_t us);
|
|
|
|
void delay_microseconds_boost(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 register_timer_failsafe(AP_HAL::Proc, uint32_t period_us);
|
|
|
|
void suspend_timer_procs();
|
|
|
|
void resume_timer_procs();
|
|
|
|
void reboot(bool hold_in_bootloader);
|
|
|
|
|
|
|
|
bool in_main_thread() const override;
|
|
|
|
void system_initialized();
|
|
|
|
void hal_initialized() { _hal_initialized = true; }
|
|
|
|
|
2018-02-09 22:46:55 -04:00
|
|
|
bool check_called_boost(void);
|
2018-03-28 05:49:51 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
disable interrupts and return a context that can be used to
|
|
|
|
restore the interrupt state. This can be used to protect
|
|
|
|
critical regions
|
|
|
|
*/
|
|
|
|
void *disable_interrupts_save(void) override;
|
|
|
|
|
|
|
|
/*
|
|
|
|
restore interrupt state from disable_interrupts_save()
|
|
|
|
*/
|
|
|
|
void restore_interrupts(void *) override;
|
2018-02-09 22:46:55 -04:00
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
private:
|
|
|
|
bool _initialized;
|
|
|
|
volatile bool _hal_initialized;
|
|
|
|
AP_HAL::Proc _delay_cb;
|
|
|
|
uint16_t _min_delay_cb_ms;
|
|
|
|
AP_HAL::Proc _failsafe;
|
2018-02-09 22:46:55 -04:00
|
|
|
bool _called_boost;
|
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
volatile bool _timer_suspended;
|
|
|
|
|
|
|
|
AP_HAL::MemberProc _timer_proc[CHIBIOS_SCHEDULER_MAX_TIMER_PROCS];
|
|
|
|
uint8_t _num_timer_procs;
|
|
|
|
volatile bool _in_timer_proc;
|
|
|
|
|
|
|
|
AP_HAL::MemberProc _io_proc[CHIBIOS_SCHEDULER_MAX_TIMER_PROCS];
|
|
|
|
uint8_t _num_io_procs;
|
|
|
|
volatile bool _in_io_proc;
|
|
|
|
|
|
|
|
volatile bool _timer_event_missed;
|
|
|
|
|
2018-04-02 23:25:42 -03:00
|
|
|
virtual_timer_t _boost_timer;
|
2018-01-05 02:19:51 -04:00
|
|
|
thread_t* _timer_thread_ctx;
|
2018-01-18 15:12:38 -04:00
|
|
|
thread_t* _rcin_thread_ctx;
|
2018-01-05 02:19:51 -04:00
|
|
|
thread_t* _io_thread_ctx;
|
|
|
|
thread_t* _storage_thread_ctx;
|
2018-01-28 14:31:21 -04:00
|
|
|
thread_t* _toneAlarm_thread_ctx;
|
2018-02-01 15:21:18 -04:00
|
|
|
#if HAL_WITH_UAVCAN
|
|
|
|
thread_t* _uavcan_thread_ctx;
|
|
|
|
#endif
|
2018-01-05 02:19:51 -04:00
|
|
|
static void _timer_thread(void *arg);
|
2018-01-18 15:12:38 -04:00
|
|
|
static void _rcin_thread(void *arg);
|
2018-01-05 02:19:51 -04:00
|
|
|
static void _io_thread(void *arg);
|
|
|
|
static void _storage_thread(void *arg);
|
|
|
|
static void _uart_thread(void *arg);
|
2018-01-28 14:31:21 -04:00
|
|
|
static void _toneAlarm_thread(void *arg);
|
2018-02-01 15:21:18 -04:00
|
|
|
#if HAL_WITH_UAVCAN
|
|
|
|
static void _uavcan_thread(void *arg);
|
|
|
|
#endif
|
2018-01-05 02:19:51 -04:00
|
|
|
void _run_timers(bool called_from_timer_thread);
|
|
|
|
void _run_io(void);
|
|
|
|
};
|
|
|
|
#endif
|