ardupilot/libraries/AP_HAL_Empty/HAL_Empty_Class.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
1.9 KiB
C++
Raw Normal View History

#include <AP_HAL/AP_HAL.h>
#if CONFIG_HAL_BOARD == HAL_BOARD_EMPTY
2015-10-19 11:25:59 -03:00
#include <assert.h>
#include "HAL_Empty_Class.h"
#include "AP_HAL_Empty_Private.h"
using namespace Empty;
static UARTDriver serial0Driver;
static UARTDriver serial1Driver;
static UARTDriver serial2Driver;
static UARTDriver serial3Driver;
static SPIDeviceManager spiDeviceManager;
static AnalogIn analogIn;
static Storage storageDriver;
static GPIO gpioDriver;
static RCInput rcinDriver;
static RCOutput rcoutDriver;
static Scheduler schedulerInstance;
static Util utilInstance;
static OpticalFlow opticalFlowDriver;
2019-03-25 21:14:05 -03:00
static Flash flashDriver;
HAL_Empty::HAL_Empty() :
AP_HAL::HAL(
&serial0Driver,
&serial1Driver,
&serial2Driver,
&serial3Driver,
nullptr, /* no SERIAL4 */
nullptr, /* no SERIAL5 */
nullptr, /* no SERIAL6 */
nullptr, /* no SERIAL7 */
nullptr, /* no SERIAL8 */
nullptr, /* no SERIAL9 */
&spiDeviceManager,
&analogIn,
&storageDriver,
&serial0Driver,
&gpioDriver,
&rcinDriver,
&rcoutDriver,
2012-12-18 21:12:41 -04:00
&schedulerInstance,
&utilInstance,
2019-03-25 21:14:05 -03:00
&opticalFlowDriver,
&flashDriver,
nullptr) /* no DSP */
{}
2015-10-19 12:52:17 -03:00
void HAL_Empty::run(int argc, char* const argv[], Callbacks* callbacks) const
{
2012-12-17 15:54:55 -04:00
/* initialize all drivers and private members here.
* up to the programmer to do this in the correct order.
* Scheduler should likely come first. */
scheduler->init();
2020-12-10 21:15:28 -04:00
serial(0)->begin(115200);
2012-12-17 15:54:55 -04:00
_member->init();
2015-10-19 11:25:59 -03:00
callbacks->setup();
scheduler->set_system_initialized();
2015-10-19 11:25:59 -03:00
for (;;) {
callbacks->loop();
}
}
static HAL_Empty hal_empty;
const AP_HAL::HAL& AP_HAL::get_HAL() {
return hal_empty;
}
AP_HAL::HAL& AP_HAL::get_HAL_mutable() {
return hal_empty;
}
#endif