2012-04-30 04:17:14 -03:00
|
|
|
/*****************************************************************************
|
|
|
|
The init_ardupilot function processes everything we need for an in - air restart
|
2016-05-16 14:04:10 -03:00
|
|
|
We will determine later if we are actually on the ground and process a
|
|
|
|
ground start in that case.
|
2012-04-30 04:17:14 -03:00
|
|
|
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2015-05-13 00:16:45 -03:00
|
|
|
#include "Rover.h"
|
|
|
|
|
|
|
|
static void mavlink_delay_cb_static()
|
|
|
|
{
|
|
|
|
rover.mavlink_delay_cb();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void failsafe_check_static()
|
|
|
|
{
|
|
|
|
rover.failsafe_check();
|
|
|
|
}
|
|
|
|
|
2015-05-12 02:03:23 -03:00
|
|
|
void Rover::init_ardupilot()
|
2012-04-30 04:17:14 -03:00
|
|
|
{
|
2015-01-28 00:56:36 -04:00
|
|
|
// initialise console serial port
|
|
|
|
serial_manager.init_console();
|
2012-04-30 04:17:14 -03:00
|
|
|
|
2017-08-19 07:04:56 -03:00
|
|
|
hal.console->printf("\n\nInit %s"
|
2017-08-11 00:49:03 -03:00
|
|
|
"\n\nFree RAM: %u\n",
|
2017-08-19 07:04:56 -03:00
|
|
|
fwver.fw_string,
|
2017-08-11 00:49:03 -03:00
|
|
|
hal.util->available_memory());
|
2016-05-16 14:04:10 -03:00
|
|
|
|
|
|
|
//
|
|
|
|
// Check the EEPROM format version before loading any parameters from EEPROM.
|
|
|
|
//
|
|
|
|
|
2012-04-30 04:17:14 -03:00
|
|
|
load_parameters();
|
|
|
|
|
2016-10-25 23:19:28 -03:00
|
|
|
// initialise stats module
|
|
|
|
g2.stats.init();
|
|
|
|
|
2016-05-30 22:43:42 -03:00
|
|
|
gcs().set_dataflash(&DataFlash);
|
2014-01-19 21:57:59 -04:00
|
|
|
|
2016-10-16 19:21:20 -03:00
|
|
|
mavlink_system.sysid = g.sysid_this_mav;
|
|
|
|
|
2015-01-28 00:56:36 -04:00
|
|
|
// initialise serial ports
|
|
|
|
serial_manager.init();
|
|
|
|
|
2016-08-03 04:17:13 -03:00
|
|
|
// setup first port early to allow BoardConfig to report errors
|
2017-02-13 07:00:19 -04:00
|
|
|
gcs().chan(0).setup_uart(serial_manager, AP_SerialManager::SerialProtocol_MAVLink, 0);
|
2016-08-03 04:17:13 -03:00
|
|
|
|
|
|
|
// Register mavlink_delay_cb, which will run anytime you have
|
|
|
|
// more than 5ms remaining in your call to hal.scheduler->delay
|
|
|
|
hal.scheduler->register_delay_callback(mavlink_delay_cb_static, 5);
|
2016-12-20 09:34:10 -04:00
|
|
|
|
2016-08-03 04:17:13 -03:00
|
|
|
BoardConfig.init();
|
2017-05-06 06:11:40 -03:00
|
|
|
#if HAL_WITH_UAVCAN
|
|
|
|
BoardConfig_CAN.init();
|
|
|
|
#endif
|
2016-08-03 04:17:13 -03:00
|
|
|
|
2017-01-21 02:17:07 -04:00
|
|
|
// initialise notify system
|
|
|
|
notify.init(false);
|
|
|
|
AP_Notify::flags.failsafe_battery = false;
|
2017-07-18 23:19:08 -03:00
|
|
|
notify_mode((enum mode)control_mode->mode_number());
|
2017-01-21 02:17:07 -04:00
|
|
|
|
2014-01-20 01:05:23 -04:00
|
|
|
ServoRelayEvents.set_channel_mask(0xFFF0);
|
|
|
|
|
2015-02-11 12:17:19 -04:00
|
|
|
battery.init();
|
|
|
|
|
2017-06-19 12:46:20 -03:00
|
|
|
rssi.init();
|
|
|
|
|
2014-02-23 18:25:50 -04:00
|
|
|
// init baro before we start the GCS, so that the CLI baro test works
|
|
|
|
barometer.init();
|
|
|
|
|
2013-09-20 20:21:02 -03:00
|
|
|
// we start by assuming USB connected, as we initialed the serial
|
2016-05-16 14:04:10 -03:00
|
|
|
// port with SERIAL0_BAUD. check_usb_mux() fixes this if need be.
|
2013-09-20 20:21:02 -03:00
|
|
|
usb_connected = true;
|
|
|
|
check_usb_mux();
|
2013-09-19 03:24:59 -03:00
|
|
|
|
2016-05-16 00:33:43 -03:00
|
|
|
// setup telem slots with serial ports
|
2017-02-13 07:00:19 -04:00
|
|
|
gcs().setup_uarts(serial_manager);
|
2015-05-15 01:24:59 -03:00
|
|
|
|
2015-01-28 00:56:36 -04:00
|
|
|
// setup frsky telemetry
|
|
|
|
#if FRSKY_TELEM_ENABLED == ENABLED
|
2017-08-19 07:04:56 -03:00
|
|
|
frsky_telemetry.init(serial_manager, fwver.fw_string, MAV_TYPE_GROUND_ROVER);
|
2013-11-25 19:21:30 -04:00
|
|
|
#endif
|
2012-04-30 04:17:14 -03:00
|
|
|
|
|
|
|
#if LOGGING_ENABLED == ENABLED
|
2015-05-13 00:16:45 -03:00
|
|
|
log_init();
|
2012-04-30 04:17:14 -03:00
|
|
|
#endif
|
|
|
|
|
2017-06-06 22:28:34 -03:00
|
|
|
// initialise compass
|
|
|
|
init_compass();
|
2013-02-28 21:00:48 -04:00
|
|
|
|
2017-07-13 08:36:44 -03:00
|
|
|
// initialise rangefinder
|
|
|
|
init_rangefinder();
|
2013-02-28 21:00:48 -04:00
|
|
|
|
2017-04-03 17:46:12 -03:00
|
|
|
// init beacons used for non-gps position estimation
|
|
|
|
init_beacon();
|
|
|
|
|
2017-06-01 04:39:49 -03:00
|
|
|
// init visual odometry
|
|
|
|
init_visual_odom();
|
|
|
|
|
2014-02-23 18:25:50 -04:00
|
|
|
// and baro for EKF
|
2016-05-23 22:31:27 -03:00
|
|
|
init_barometer(true);
|
2014-02-23 18:25:50 -04:00
|
|
|
|
2016-05-16 14:04:10 -03:00
|
|
|
// Do GPS init
|
2017-06-27 05:12:55 -03:00
|
|
|
gps.set_log_gps_bit(MASK_LOG_GPS);
|
|
|
|
gps.init(serial_manager);
|
2013-12-21 07:27:06 -04:00
|
|
|
|
2012-12-18 07:44:12 -04:00
|
|
|
rc_override_active = hal.rcin->set_overrides(rc_override, 8);
|
2012-04-30 04:17:14 -03:00
|
|
|
|
2017-06-27 02:26:14 -03:00
|
|
|
ins.set_log_raw_bit(MASK_LOG_IMU_RAW);
|
|
|
|
|
2017-07-10 06:43:55 -03:00
|
|
|
set_control_channels(); // setup radio channels and ouputs ranges
|
|
|
|
init_rc_in(); // sets up rc channels deadzone
|
|
|
|
g2.motors.init(); // init motors including setting servo out channels ranges
|
|
|
|
init_rc_out(); // enable output
|
2017-07-06 00:06:20 -03:00
|
|
|
|
2017-07-11 23:02:51 -03:00
|
|
|
// init wheel encoders
|
|
|
|
g2.wheel_encoder.init();
|
|
|
|
|
2012-12-18 07:44:12 -04:00
|
|
|
relay.init();
|
2012-04-30 04:17:14 -03:00
|
|
|
|
2015-01-28 00:56:36 -04:00
|
|
|
#if MOUNT == ENABLED
|
2015-01-08 16:12:18 -04:00
|
|
|
// initialise camera mount
|
2017-08-23 21:59:47 -03:00
|
|
|
camera_mount.init(serial_manager);
|
2015-01-28 00:56:36 -04:00
|
|
|
#endif
|
2015-01-08 16:12:18 -04:00
|
|
|
|
2012-04-30 04:17:14 -03:00
|
|
|
/*
|
|
|
|
setup the 'main loop is dead' check. Note that this relies on
|
|
|
|
the RC library being initialised.
|
|
|
|
*/
|
2015-05-12 04:00:25 -03:00
|
|
|
hal.scheduler->register_timer_failsafe(failsafe_check_static, 1000);
|
2012-04-30 04:17:14 -03:00
|
|
|
|
2017-04-03 17:46:12 -03:00
|
|
|
// give AHRS the range beacon sensor
|
|
|
|
ahrs.set_beacon(&g2.beacon);
|
|
|
|
|
2015-01-28 00:56:36 -04:00
|
|
|
|
2016-05-16 14:04:10 -03:00
|
|
|
init_capabilities();
|
2015-07-31 18:14:51 -03:00
|
|
|
|
2016-05-16 14:04:10 -03:00
|
|
|
startup_ground();
|
2012-11-17 02:45:20 -04:00
|
|
|
|
2017-07-18 23:19:08 -03:00
|
|
|
Mode *initial_mode = control_mode_from_num((enum mode)g.initial_mode.get());
|
|
|
|
if (initial_mode == nullptr) {
|
|
|
|
initial_mode = &mode_initializing;
|
|
|
|
}
|
2017-07-24 14:05:59 -03:00
|
|
|
set_mode(*initial_mode, MODE_REASON_INITIALISED);
|
2017-07-18 23:19:08 -03:00
|
|
|
|
2012-04-30 04:17:14 -03:00
|
|
|
|
2016-05-16 14:04:10 -03:00
|
|
|
// set the correct flight mode
|
|
|
|
// ---------------------------
|
|
|
|
reset_control_switch();
|
2017-08-22 04:06:23 -03:00
|
|
|
init_aux_switch();
|
2017-04-29 21:48:00 -03:00
|
|
|
|
|
|
|
// disable safety if requested
|
|
|
|
BoardConfig.init_safety();
|
2017-06-27 23:32:01 -03:00
|
|
|
|
|
|
|
// flag that initialisation has completed
|
|
|
|
initialised = true;
|
2012-04-30 04:17:14 -03:00
|
|
|
}
|
|
|
|
|
2016-12-20 09:34:10 -04:00
|
|
|
//*********************************************************************************
|
|
|
|
// This function does all the calibrations, etc. that we need during a ground start
|
|
|
|
//*********************************************************************************
|
2015-05-12 02:03:23 -03:00
|
|
|
void Rover::startup_ground(void)
|
2012-04-30 04:17:14 -03:00
|
|
|
{
|
2017-07-24 14:05:59 -03:00
|
|
|
set_mode(mode_initializing, MODE_REASON_INITIALISED);
|
2012-04-30 04:17:14 -03:00
|
|
|
|
2017-07-08 22:40:59 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_INFO, "<startup_ground> Ground start");
|
2016-05-16 14:04:10 -03:00
|
|
|
|
|
|
|
#if(GROUND_START_DELAY > 0)
|
2017-07-08 22:40:59 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_NOTICE, "<startup_ground> With delay");
|
2016-05-16 14:04:10 -03:00
|
|
|
delay(GROUND_START_DELAY * 1000);
|
|
|
|
#endif
|
2012-04-30 04:17:14 -03:00
|
|
|
|
2016-12-20 09:34:10 -04:00
|
|
|
// IMU ground start
|
2016-05-16 14:04:10 -03:00
|
|
|
//------------------------
|
2012-04-30 04:17:14 -03:00
|
|
|
//
|
|
|
|
|
2016-05-16 14:04:10 -03:00
|
|
|
startup_INS_ground();
|
2012-11-17 02:45:20 -04:00
|
|
|
|
2016-05-16 14:04:10 -03:00
|
|
|
// read the radio to set trims
|
|
|
|
// ---------------------------
|
|
|
|
trim_radio();
|
2012-04-30 04:17:14 -03:00
|
|
|
|
2014-03-11 01:07:15 -03:00
|
|
|
// initialise mission library
|
|
|
|
mission.init();
|
|
|
|
|
2017-05-01 03:12:05 -03:00
|
|
|
// initialise DataFlash library
|
|
|
|
DataFlash.set_mission(&mission);
|
|
|
|
DataFlash.setVehicle_Startup_Log_Writer(
|
|
|
|
FUNCTOR_BIND(&rover, &Rover::Log_Write_Vehicle_Startup_Messages, void)
|
|
|
|
);
|
|
|
|
|
2015-01-28 00:56:36 -04:00
|
|
|
// we don't want writes to the serial port to cause us to pause
|
|
|
|
// so set serial ports non-blocking once we are ready to drive
|
|
|
|
serial_manager.set_blocking_writes_all(false);
|
2013-06-03 21:37:05 -03:00
|
|
|
|
2017-07-08 22:40:59 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_INFO, "Ready to drive");
|
2012-04-30 04:17:14 -03:00
|
|
|
}
|
|
|
|
|
2013-11-24 20:21:15 -04:00
|
|
|
/*
|
|
|
|
set the in_reverse flag
|
|
|
|
reset the throttle integrator if this changes in_reverse
|
|
|
|
*/
|
2015-05-12 02:03:23 -03:00
|
|
|
void Rover::set_reverse(bool reverse)
|
2013-11-24 20:21:15 -04:00
|
|
|
{
|
|
|
|
if (in_reverse == reverse) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
in_reverse = reverse;
|
|
|
|
}
|
|
|
|
|
2017-07-24 14:05:59 -03:00
|
|
|
bool Rover::set_mode(Mode &new_mode, mode_reason_t reason)
|
2016-05-16 14:04:10 -03:00
|
|
|
{
|
2017-07-18 23:19:08 -03:00
|
|
|
if (control_mode == &new_mode) {
|
2016-05-16 14:04:10 -03:00
|
|
|
// don't switch modes if we are already in the correct mode.
|
2017-07-18 23:19:08 -03:00
|
|
|
return true;
|
2016-05-16 14:04:10 -03:00
|
|
|
}
|
2015-07-27 09:10:37 -03:00
|
|
|
|
2017-07-18 23:19:08 -03:00
|
|
|
Mode &old_mode = *control_mode;
|
|
|
|
if (!new_mode.enter()) {
|
2017-07-24 14:05:59 -03:00
|
|
|
// Log error that we failed to enter desired flight mode
|
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_FLIGHT_MODE, new_mode.mode_number());
|
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "Flight mode change failed");
|
2017-07-18 23:19:08 -03:00
|
|
|
return false;
|
2016-05-16 14:04:10 -03:00
|
|
|
}
|
2015-07-27 09:10:37 -03:00
|
|
|
|
2017-07-18 23:19:08 -03:00
|
|
|
control_mode = &new_mode;
|
2013-03-21 19:38:25 -03:00
|
|
|
|
2016-08-09 19:27:42 -03:00
|
|
|
#if FRSKY_TELEM_ENABLED == ENABLED
|
2017-07-18 23:19:08 -03:00
|
|
|
frsky_telemetry.update_control_mode(control_mode->mode_number());
|
2016-08-09 19:27:42 -03:00
|
|
|
#endif
|
2017-10-24 07:44:46 -03:00
|
|
|
#if CAMERA == ENABLED
|
|
|
|
camera.set_is_auto_mode(control_mode->mode_number() == AUTO);
|
|
|
|
#endif
|
2016-12-20 09:34:10 -04:00
|
|
|
|
2017-07-18 23:19:08 -03:00
|
|
|
old_mode.exit();
|
2012-04-30 04:17:14 -03:00
|
|
|
|
2017-10-23 21:38:52 -03:00
|
|
|
control_mode_reason = reason;
|
|
|
|
DataFlash.Log_Write_Mode(control_mode->mode_number(), control_mode_reason);
|
2017-01-20 06:16:12 -04:00
|
|
|
|
2017-07-18 23:19:08 -03:00
|
|
|
notify_mode((enum mode)control_mode->mode_number());
|
|
|
|
return true;
|
2012-04-30 04:17:14 -03:00
|
|
|
}
|
|
|
|
|
2015-05-12 02:03:23 -03:00
|
|
|
void Rover::startup_INS_ground(void)
|
2012-04-30 04:17:14 -03:00
|
|
|
{
|
2017-07-08 22:40:59 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_INFO, "Beginning INS calibration. Do not move vehicle");
|
2017-08-22 06:30:40 -03:00
|
|
|
hal.scheduler->delay(100);
|
2012-04-30 04:17:14 -03:00
|
|
|
|
2013-01-13 01:03:54 -04:00
|
|
|
ahrs.init();
|
2017-06-19 12:46:20 -03:00
|
|
|
// say to EKF that rover only move by goind forward
|
2016-05-16 14:04:10 -03:00
|
|
|
ahrs.set_fly_forward(true);
|
2014-04-21 05:11:45 -03:00
|
|
|
ahrs.set_vehicle_class(AHRS_VEHICLE_GROUND);
|
2013-10-20 19:09:57 -03:00
|
|
|
|
2015-10-21 18:22:45 -03:00
|
|
|
ins.init(scheduler.get_loop_rate_hz());
|
2012-04-30 04:17:14 -03:00
|
|
|
ahrs.reset();
|
|
|
|
}
|
|
|
|
|
2013-08-29 00:14:16 -03:00
|
|
|
// updates the notify state
|
2013-08-24 06:05:18 -03:00
|
|
|
// should be called at 50hz
|
2015-05-12 02:03:23 -03:00
|
|
|
void Rover::update_notify()
|
2012-04-30 04:17:14 -03:00
|
|
|
{
|
2013-08-29 00:14:16 -03:00
|
|
|
notify.update();
|
2012-04-30 04:17:14 -03:00
|
|
|
}
|
|
|
|
|
2015-05-12 02:03:23 -03:00
|
|
|
void Rover::resetPerfData(void) {
|
2016-05-16 14:04:10 -03:00
|
|
|
mainLoop_count = 0;
|
|
|
|
G_Dt_max = 0;
|
|
|
|
perf_mon_timer = millis();
|
2012-04-30 04:17:14 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-12 02:03:23 -03:00
|
|
|
void Rover::check_usb_mux(void)
|
2012-04-30 04:17:14 -03:00
|
|
|
{
|
2013-09-19 03:24:59 -03:00
|
|
|
bool usb_check = hal.gpio->usb_connected();
|
2012-04-30 04:17:14 -03:00
|
|
|
if (usb_check == usb_connected) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// the user has switched to/from the telemetry port
|
|
|
|
usb_connected = usb_check;
|
2013-04-19 04:53:07 -03:00
|
|
|
}
|
|
|
|
|
2017-01-20 06:16:12 -04:00
|
|
|
// update notify with mode change
|
|
|
|
void Rover::notify_mode(enum mode new_mode)
|
|
|
|
{
|
|
|
|
notify.flags.flight_mode = new_mode;
|
|
|
|
|
|
|
|
switch (new_mode) {
|
|
|
|
case MANUAL:
|
|
|
|
notify.set_flight_mode_str("MANU");
|
|
|
|
break;
|
|
|
|
case STEERING:
|
|
|
|
notify.set_flight_mode_str("STER");
|
|
|
|
break;
|
|
|
|
case HOLD:
|
|
|
|
notify.set_flight_mode_str("HOLD");
|
|
|
|
break;
|
|
|
|
case AUTO:
|
|
|
|
notify.set_flight_mode_str("AUTO");
|
|
|
|
break;
|
|
|
|
case RTL:
|
|
|
|
notify.set_flight_mode_str("RTL");
|
|
|
|
break;
|
|
|
|
case GUIDED:
|
|
|
|
notify.set_flight_mode_str("GUID");
|
|
|
|
break;
|
|
|
|
case INITIALISING:
|
|
|
|
notify.set_flight_mode_str("INIT");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
notify.set_flight_mode_str("----");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-02 20:19:20 -03:00
|
|
|
/*
|
|
|
|
check a digitial pin for high,low (1/0)
|
|
|
|
*/
|
2015-05-12 02:03:23 -03:00
|
|
|
uint8_t Rover::check_digital_pin(uint8_t pin)
|
2013-05-02 20:19:20 -03:00
|
|
|
{
|
2017-01-31 06:12:26 -04:00
|
|
|
const int8_t dpin = hal.gpio->analogPinToDigitalPin(pin);
|
2013-05-02 20:19:20 -03:00
|
|
|
if (dpin == -1) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// ensure we are in input mode
|
2014-06-01 20:27:52 -03:00
|
|
|
hal.gpio->pinMode(dpin, HAL_GPIO_INPUT);
|
2013-05-02 20:19:20 -03:00
|
|
|
|
|
|
|
// enable pullup
|
|
|
|
hal.gpio->write(dpin, 1);
|
|
|
|
|
|
|
|
return hal.gpio->read(dpin);
|
|
|
|
}
|
2013-07-14 20:57:00 -03:00
|
|
|
|
2014-01-14 00:10:13 -04:00
|
|
|
/*
|
|
|
|
should we log a message type now?
|
|
|
|
*/
|
2015-05-12 02:03:23 -03:00
|
|
|
bool Rover::should_log(uint32_t mask)
|
2014-01-14 00:10:13 -04:00
|
|
|
{
|
2017-06-30 09:30:45 -03:00
|
|
|
return DataFlash.should_log(mask);
|
2014-01-14 00:10:13 -04:00
|
|
|
}
|
2014-07-29 08:36:26 -03:00
|
|
|
|
2015-10-30 02:56:41 -03:00
|
|
|
/*
|
|
|
|
update AHRS soft arm state and log as needed
|
|
|
|
*/
|
|
|
|
void Rover::change_arm_state(void)
|
|
|
|
{
|
|
|
|
Log_Arm_Disarm();
|
2016-07-28 04:31:58 -03:00
|
|
|
update_soft_armed();
|
2015-10-30 02:56:41 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
arm motors
|
|
|
|
*/
|
|
|
|
bool Rover::arm_motors(AP_Arming::ArmingMethod method)
|
|
|
|
{
|
|
|
|
if (!arming.arm(method)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
change_arm_state();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
disarm motors
|
|
|
|
*/
|
|
|
|
bool Rover::disarm_motors(void)
|
|
|
|
{
|
|
|
|
if (!arming.disarm()) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-07-18 23:19:08 -03:00
|
|
|
if (control_mode != &mode_auto) {
|
2015-10-30 02:56:41 -03:00
|
|
|
// reset the mission on disarm if we are not in auto
|
|
|
|
mission.reset();
|
|
|
|
}
|
|
|
|
|
2016-12-20 09:34:10 -04:00
|
|
|
// only log if disarming was successful
|
2015-10-30 02:56:41 -03:00
|
|
|
change_arm_state();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|