2016-02-17 21:25:25 -04:00
|
|
|
#pragma once
|
2012-08-20 15:37:46 -03:00
|
|
|
|
2018-02-02 16:35:15 -04:00
|
|
|
class AP_Param;
|
|
|
|
|
2012-08-20 15:37:46 -03:00
|
|
|
#include "AP_HAL_Namespace.h"
|
|
|
|
|
2015-10-20 13:50:37 -03:00
|
|
|
#include "AnalogIn.h"
|
|
|
|
#include "GPIO.h"
|
|
|
|
#include "RCInput.h"
|
|
|
|
#include "RCOutput.h"
|
2016-07-22 11:19:59 -03:00
|
|
|
#include "SPIDevice.h"
|
2015-10-20 13:50:37 -03:00
|
|
|
#include "Storage.h"
|
|
|
|
#include "UARTDriver.h"
|
2015-11-19 23:24:56 -04:00
|
|
|
#include "system.h"
|
2015-11-23 14:45:20 -04:00
|
|
|
#include "OpticalFlow.h"
|
2017-04-02 11:54:31 -03:00
|
|
|
#if HAL_WITH_UAVCAN
|
|
|
|
#include "CAN.h"
|
|
|
|
#endif
|
2012-08-20 15:37:46 -03:00
|
|
|
|
2018-02-02 16:35:15 -04:00
|
|
|
|
2012-08-20 15:37:46 -03:00
|
|
|
class AP_HAL::HAL {
|
|
|
|
public:
|
2013-12-21 07:25:27 -04:00
|
|
|
HAL(AP_HAL::UARTDriver* _uartA, // console
|
|
|
|
AP_HAL::UARTDriver* _uartB, // 1st GPS
|
|
|
|
AP_HAL::UARTDriver* _uartC, // telem1
|
|
|
|
AP_HAL::UARTDriver* _uartD, // telem2
|
|
|
|
AP_HAL::UARTDriver* _uartE, // 2nd GPS
|
2016-04-19 00:44:52 -03:00
|
|
|
AP_HAL::UARTDriver* _uartF, // extra1
|
2018-06-27 08:32:36 -03:00
|
|
|
AP_HAL::UARTDriver* _uartG, // extra2
|
2019-07-12 01:57:56 -03:00
|
|
|
AP_HAL::UARTDriver* _uartH, // extra3
|
2015-11-22 19:39:44 -04:00
|
|
|
AP_HAL::I2CDeviceManager* _i2c_mgr,
|
2012-11-28 21:57:20 -04:00
|
|
|
AP_HAL::SPIDeviceManager* _spi,
|
2012-09-10 23:05:02 -03:00
|
|
|
AP_HAL::AnalogIn* _analogin,
|
2012-08-20 15:37:46 -03:00
|
|
|
AP_HAL::Storage* _storage,
|
2013-10-05 05:32:00 -03:00
|
|
|
AP_HAL::UARTDriver* _console,
|
2012-08-20 15:37:46 -03:00
|
|
|
AP_HAL::GPIO* _gpio,
|
2012-08-27 15:44:50 -03:00
|
|
|
AP_HAL::RCInput* _rcin,
|
|
|
|
AP_HAL::RCOutput* _rcout,
|
2012-12-18 20:09:24 -04:00
|
|
|
AP_HAL::Scheduler* _scheduler,
|
2015-11-23 14:45:20 -04:00
|
|
|
AP_HAL::Util* _util,
|
2017-04-02 11:54:31 -03:00
|
|
|
AP_HAL::OpticalFlow *_opticalflow,
|
2019-03-25 21:13:39 -03:00
|
|
|
AP_HAL::Flash *_flash,
|
2017-05-06 06:12:19 -03:00
|
|
|
#if HAL_WITH_UAVCAN
|
|
|
|
AP_HAL::CANManager* _can_mgr[MAX_NUMBER_OF_CAN_DRIVERS])
|
|
|
|
#else
|
|
|
|
AP_HAL::CANManager** _can_mgr)
|
|
|
|
#endif
|
2012-08-20 15:37:46 -03:00
|
|
|
:
|
2012-12-04 18:16:02 -04:00
|
|
|
uartA(_uartA),
|
|
|
|
uartB(_uartB),
|
|
|
|
uartC(_uartC),
|
2013-11-22 04:15:29 -04:00
|
|
|
uartD(_uartD),
|
2013-12-21 07:25:27 -04:00
|
|
|
uartE(_uartE),
|
2016-04-19 00:44:52 -03:00
|
|
|
uartF(_uartF),
|
2018-06-27 08:32:36 -03:00
|
|
|
uartG(_uartG),
|
2019-07-12 01:57:56 -03:00
|
|
|
uartH(_uartH),
|
2015-11-22 19:39:44 -04:00
|
|
|
i2c_mgr(_i2c_mgr),
|
2012-08-20 15:37:46 -03:00
|
|
|
spi(_spi),
|
2012-09-10 23:05:02 -03:00
|
|
|
analogin(_analogin),
|
2012-08-20 15:37:46 -03:00
|
|
|
storage(_storage),
|
|
|
|
console(_console),
|
|
|
|
gpio(_gpio),
|
2012-08-27 15:44:50 -03:00
|
|
|
rcin(_rcin),
|
|
|
|
rcout(_rcout),
|
2012-12-18 20:09:24 -04:00
|
|
|
scheduler(_scheduler),
|
2015-11-23 14:45:20 -04:00
|
|
|
util(_util),
|
2019-03-25 21:13:39 -03:00
|
|
|
opticalflow(_opticalflow),
|
|
|
|
flash(_flash)
|
2015-11-19 23:24:56 -04:00
|
|
|
{
|
2017-05-06 06:12:19 -03:00
|
|
|
#if HAL_WITH_UAVCAN
|
|
|
|
if (_can_mgr == nullptr) {
|
|
|
|
for (uint8_t i = 0; i < MAX_NUMBER_OF_CAN_DRIVERS; i++)
|
|
|
|
can_mgr[i] = nullptr;
|
|
|
|
} else {
|
|
|
|
for (uint8_t i = 0; i < MAX_NUMBER_OF_CAN_DRIVERS; i++)
|
|
|
|
can_mgr[i] = _can_mgr[i];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-11-19 23:24:56 -04:00
|
|
|
AP_HAL::init();
|
|
|
|
}
|
2012-08-20 15:37:46 -03:00
|
|
|
|
2015-10-19 11:13:39 -03:00
|
|
|
struct Callbacks {
|
|
|
|
virtual void setup() = 0;
|
|
|
|
virtual void loop() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FunCallbacks : public Callbacks {
|
|
|
|
FunCallbacks(void (*setup_fun)(void), void (*loop_fun)(void));
|
|
|
|
|
|
|
|
void setup() override { _setup(); }
|
|
|
|
void loop() override { _loop(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
void (*_setup)(void);
|
|
|
|
void (*_loop)(void);
|
|
|
|
};
|
|
|
|
|
2015-10-19 12:48:04 -03:00
|
|
|
virtual void run(int argc, char * const argv[], Callbacks* callbacks) const = 0;
|
2015-10-19 11:13:39 -03:00
|
|
|
|
2012-12-04 18:16:02 -04:00
|
|
|
AP_HAL::UARTDriver* uartA;
|
|
|
|
AP_HAL::UARTDriver* uartB;
|
|
|
|
AP_HAL::UARTDriver* uartC;
|
2013-11-22 04:15:29 -04:00
|
|
|
AP_HAL::UARTDriver* uartD;
|
2013-12-21 07:25:27 -04:00
|
|
|
AP_HAL::UARTDriver* uartE;
|
2016-04-19 00:44:52 -03:00
|
|
|
AP_HAL::UARTDriver* uartF;
|
2018-06-27 08:32:36 -03:00
|
|
|
AP_HAL::UARTDriver* uartG;
|
2019-07-12 01:57:56 -03:00
|
|
|
AP_HAL::UARTDriver* uartH;
|
2015-11-22 19:39:44 -04:00
|
|
|
AP_HAL::I2CDeviceManager* i2c_mgr;
|
2012-11-28 21:57:20 -04:00
|
|
|
AP_HAL::SPIDeviceManager* spi;
|
2012-09-10 23:05:02 -03:00
|
|
|
AP_HAL::AnalogIn* analogin;
|
2012-08-20 15:37:46 -03:00
|
|
|
AP_HAL::Storage* storage;
|
2013-10-05 05:32:00 -03:00
|
|
|
AP_HAL::UARTDriver* console;
|
2012-08-20 15:37:46 -03:00
|
|
|
AP_HAL::GPIO* gpio;
|
2012-08-27 15:44:50 -03:00
|
|
|
AP_HAL::RCInput* rcin;
|
|
|
|
AP_HAL::RCOutput* rcout;
|
2012-08-23 15:36:13 -03:00
|
|
|
AP_HAL::Scheduler* scheduler;
|
2015-12-14 08:37:56 -04:00
|
|
|
AP_HAL::Util *util;
|
|
|
|
AP_HAL::OpticalFlow *opticalflow;
|
2019-03-25 21:13:39 -03:00
|
|
|
AP_HAL::Flash *flash;
|
2017-05-06 06:12:19 -03:00
|
|
|
#if HAL_WITH_UAVCAN
|
|
|
|
AP_HAL::CANManager* can_mgr[MAX_NUMBER_OF_CAN_DRIVERS];
|
|
|
|
#else
|
|
|
|
AP_HAL::CANManager** can_mgr;
|
|
|
|
#endif
|
2012-08-20 15:37:46 -03:00
|
|
|
};
|