ardupilot/libraries/AP_HAL_SITL/HAL_SITL_Class.cpp

209 lines
5.8 KiB
C++
Raw Normal View History

#include <AP_HAL/AP_HAL.h>
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
2015-10-19 11:26:18 -03:00
#include <assert.h>
#include <errno.h>
#include <signal.h>
#include <stdio.h>
2015-10-19 11:26:18 -03:00
#include "AP_HAL_SITL.h"
#include "AP_HAL_SITL_Namespace.h"
#include "HAL_SITL_Class.h"
#include "Scheduler.h"
#include "AnalogIn.h"
#include "UARTDriver.h"
#include "Storage.h"
#include "RCInput.h"
2012-12-17 23:56:21 -04:00
#include "RCOutput.h"
#include "GPIO.h"
#include "SITL_State.h"
#include "Util.h"
#include <AP_BoardConfig/AP_BoardConfig.h>
#include <AP_HAL_Empty/AP_HAL_Empty.h>
#include <AP_HAL_Empty/AP_HAL_Empty_Private.h>
#include <AP_InternalError/AP_InternalError.h>
#include <AP_Logger/AP_Logger.h>
using namespace HALSITL;
static Storage sitlStorage;
static SITL_State sitlState;
static Scheduler sitlScheduler(&sitlState);
static RCInput sitlRCInput(&sitlState);
static RCOutput sitlRCOutput(&sitlState);
static AnalogIn sitlAnalogIn(&sitlState);
static GPIO sitlGPIO(&sitlState);
// use the Empty HAL for hardware we don't emulate
2015-12-01 15:57:35 -04:00
static Empty::I2CDeviceManager i2c_mgr_instance;
static Empty::SPIDeviceManager emptySPI;
static Empty::OpticalFlow emptyOpticalFlow;
2019-03-25 21:14:30 -03:00
static Empty::Flash emptyFlash;
static UARTDriver sitlUart0Driver(0, &sitlState);
static UARTDriver sitlUart1Driver(1, &sitlState);
static UARTDriver sitlUart2Driver(2, &sitlState);
static UARTDriver sitlUart3Driver(3, &sitlState);
static UARTDriver sitlUart4Driver(4, &sitlState);
2016-04-19 00:48:18 -03:00
static UARTDriver sitlUart5Driver(5, &sitlState);
2018-06-27 08:34:24 -03:00
static UARTDriver sitlUart6Driver(6, &sitlState);
static Util utilInstance(&sitlState);
HAL_SITL::HAL_SITL() :
AP_HAL::HAL(
2017-01-09 08:23:23 -04:00
&sitlUart0Driver, /* uartA */
&sitlUart1Driver, /* uartB */
&sitlUart2Driver, /* uartC */
&sitlUart3Driver, /* uartD */
&sitlUart4Driver, /* uartE */
&sitlUart5Driver, /* uartF */
2018-06-27 08:34:24 -03:00
&sitlUart6Driver, /* uartG */
2015-12-01 15:57:35 -04:00
&i2c_mgr_instance,
2017-01-09 08:23:23 -04:00
&emptySPI, /* spi */
&sitlAnalogIn, /* analogin */
&sitlStorage, /* storage */
2017-01-09 08:23:23 -04:00
&sitlUart0Driver, /* console */
&sitlGPIO, /* gpio */
&sitlRCInput, /* rcinput */
&sitlRCOutput, /* rcoutput */
&sitlScheduler, /* scheduler */
&utilInstance, /* util */
2017-04-02 11:55:19 -03:00
&emptyOpticalFlow, /* onboard optical flow */
2019-03-25 21:14:30 -03:00
&emptyFlash, /* flash driver */
2017-04-02 11:55:19 -03:00
nullptr), /* CAN */
_sitl_state(&sitlState)
{}
static char *new_argv[100];
/*
save watchdog data
*/
2019-05-09 07:46:52 -03:00
static bool watchdog_save(const uint32_t *data, uint32_t nwords)
{
int fd = ::open("persistent.dat", O_WRONLY|O_CREAT|O_TRUNC, 0644);
2019-05-09 07:46:52 -03:00
bool ret = false;
if (fd != -1) {
2019-05-11 20:10:31 -03:00
if (::write(fd, data, nwords*4) == (ssize_t)(nwords*4)) {
2019-05-09 07:46:52 -03:00
ret = true;
}
::close(fd);
}
2019-05-09 07:46:52 -03:00
return ret;
}
/*
load watchdog data
*/
static bool watchdog_load(uint32_t *data, uint32_t nwords)
{
int fd = ::open("persistent.dat", O_RDONLY, 0644);
bool ret = false;
if (fd != -1) {
2019-05-11 20:10:31 -03:00
ret = (::read(fd, data, nwords*4) == (ssize_t)(nwords*4));
::close(fd);
}
return ret;
}
/*
implement watchdoh reset via SIGALRM
*/
static void sig_alrm(int signum)
{
static char env[] = "SITL_WATCHDOG_RESET=1";
putenv(env);
printf("GOT SIGALRM\n");
execv(new_argv[0], new_argv);
}
2015-10-19 12:59:47 -03:00
void HAL_SITL::run(int argc, char * const argv[], Callbacks* callbacks) const
{
2015-10-19 12:59:47 -03:00
assert(callbacks);
_sitl_state->init(argc, argv);
scheduler->init();
uartA->begin(115200);
rcin->init();
rcout->init();
2017-01-09 08:23:23 -04:00
// spi->init();
analogin->init();
2015-10-19 11:26:18 -03:00
if (getenv("SITL_WATCHDOG_RESET")) {
AP::internalerror().error(AP_InternalError::error_t::watchdog_reset);
if (watchdog_load((uint32_t *)&utilInstance.persistent_data, (sizeof(utilInstance.persistent_data)+3)/4)) {
uartA->printf("Loaded watchdog data");
}
2015-10-19 11:26:18 -03:00
}
2019-05-11 05:47:00 -03:00
// form a new argv, removing problem parameters. This is used for reboot
uint8_t new_argv_offset = 0;
for (uint8_t i=0; i<ARRAY_SIZE(new_argv) && i<argc; i++) {
if (!strcmp(argv[i], "-w")) {
// don't wipe params on reboot
continue;
}
new_argv[new_argv_offset++] = argv[i];
}
callbacks->setup();
scheduler->system_initialized();
2019-05-15 03:55:05 -03:00
if (getenv("SITL_WATCHDOG_RESET")) {
const AP_HAL::Util::PersistentData &pd = util->persistent_data;
AP::logger().WriteCritical("WDOG", "TimeUS,Task,IErr,IErrCnt,MavMsg,MavCmd,SemLine", "QbIIHHH",
AP_HAL::micros64(),
pd.scheduler_task,
pd.internal_errors,
pd.internal_error_count,
pd.last_mavlink_msgid,
pd.last_mavlink_cmd,
pd.semaphore_line);
}
bool using_watchdog = AP_BoardConfig::watchdog_enabled();
if (using_watchdog) {
signal(SIGALRM, sig_alrm);
alarm(2);
}
uint32_t last_watchdog_save = AP_HAL::millis();
while (!HALSITL::Scheduler::_should_reboot) {
callbacks->loop();
HALSITL::Scheduler::_run_io_procs();
uint32_t now = AP_HAL::millis();
if (now - last_watchdog_save >= 100 && using_watchdog) {
// save persistent data every 100ms
last_watchdog_save = now;
watchdog_save((uint32_t *)&utilInstance.persistent_data, (sizeof(utilInstance.persistent_data)+3)/4);
}
if (using_watchdog) {
// note that this only works for a speedup of 1
alarm(2);
}
}
actually_reboot();
}
void HAL_SITL::actually_reboot()
{
execv(new_argv[0], new_argv);
AP_HAL::panic("PANIC: REBOOT FAILED: %s", strerror(errno));
2015-10-19 11:26:18 -03:00
}
const AP_HAL::HAL& AP_HAL::get_HAL() {
static const HAL_SITL hal;
return hal;
}
2017-01-09 08:23:23 -04:00
#endif // CONFIG_HAL_BOARD == HAL_BOARD_SITL