ardupilot/APMrover2/APMrover2.cpp

342 lines
10 KiB
C++
Raw Normal View History

/*
This program 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 program 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/>.
*/
/*
This is the APMrover2 firmware. It was originally derived from
ArduPlane by Jean-Louis Naudin (JLN), and then rewritten after the
AP_HAL merge by Andrew Tridgell
Maintainer: Grant Morphett
2013-02-28 21:32:48 -04:00
Authors: Doug Weibel, Jose Julio, Jordi Munoz, Jason Short, Andrew Tridgell, Randy Mackay, Pat Hickey, John Arne Birkeland, Olivier Adler, Jean-Louis Naudin, Grant Morphett
2013-02-28 21:32:48 -04:00
Thanks to: Chris Anderson, Michael Oborne, Paul Mather, Bill Premerlani, James Cohen, JB from rotorFX, Automatik, Fefenin, Peter Meister, Remzibi, Yury Smirnov, Sandro Benigno, Max Levine, Roberto Navoni, Lorenz Meier
APMrover alpha version tester: Franco Borasio, Daniel Chapelat...
Please contribute your ideas! See http://dev.ardupilot.org for details
*/
2013-02-28 21:32:48 -04:00
#include "Rover.h"
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
2015-05-13 00:16:45 -03:00
Rover rover;
2015-12-26 00:05:34 -04:00
#define SCHED_TASK(func, _interval_ticks, _max_time_micros) SCHED_TASK_CLASS(Rover, &rover, func, _interval_ticks, _max_time_micros)
2015-05-12 04:00:25 -03:00
/*
scheduler table - all regular tasks should be listed here, along
with how often they should be called (in 20ms units) and the maximum
time they are expected to take (in microseconds)
*/
const AP_Scheduler::Task Rover::scheduler_tasks[] = {
2017-06-19 12:55:14 -03:00
// Function name, Hz, us,
2015-12-26 00:05:34 -04:00
SCHED_TASK(read_radio, 50, 1000),
SCHED_TASK(ahrs_update, 50, 6400),
2017-07-13 08:36:44 -03:00
SCHED_TASK(read_rangefinders, 50, 2000),
2015-12-26 00:05:34 -04:00
SCHED_TASK(update_current_mode, 50, 1500),
SCHED_TASK(set_servos, 50, 1500),
SCHED_TASK(update_GPS_50Hz, 50, 2500),
SCHED_TASK(update_GPS_10Hz, 10, 2500),
SCHED_TASK(update_alt, 10, 3400),
SCHED_TASK_CLASS(AP_Beacon, &rover.g2.beacon, update, 50, 50),
SCHED_TASK_CLASS(AP_Proximity, &rover.g2.proximity, update, 50, 50),
2017-06-01 04:39:49 -03:00
SCHED_TASK(update_visual_odom, 50, 50),
2017-07-20 04:57:19 -03:00
SCHED_TASK(update_wheel_encoder, 20, 50),
2015-12-26 00:05:34 -04:00
SCHED_TASK(update_compass, 10, 2000),
SCHED_TASK(update_mission, 10, 1000),
2015-12-26 00:05:34 -04:00
SCHED_TASK(update_logging1, 10, 1000),
SCHED_TASK(update_logging2, 10, 1000),
SCHED_TASK(gcs_retry_deferred, 50, 1000),
SCHED_TASK(gcs_update, 50, 1700),
SCHED_TASK(gcs_data_stream_send, 50, 3000),
SCHED_TASK(read_control_switch, 7, 1000),
SCHED_TASK(read_aux_switch, 10, 100),
SCHED_TASK_CLASS(AP_BattMonitor, &rover.battery, read, 10, 1000),
2015-12-26 00:05:34 -04:00
SCHED_TASK(read_receiver_rssi, 10, 1000),
SCHED_TASK_CLASS(AP_ServoRelayEvents, &rover.ServoRelayEvents, update_events, 50, 1000),
2015-12-26 00:05:34 -04:00
SCHED_TASK(check_usb_mux, 3, 1000),
#if MOUNT == ENABLED
SCHED_TASK_CLASS(AP_Mount, &rover.camera_mount, update, 50, 600),
#endif
#if CAMERA == ENABLED
SCHED_TASK_CLASS(AP_Camera, &rover.camera, update_trigger, 50, 600),
#endif
2015-12-26 00:05:34 -04:00
SCHED_TASK(gcs_failsafe_check, 10, 600),
2017-08-16 07:02:56 -03:00
SCHED_TASK(fence_check, 10, 100),
2015-12-26 00:05:34 -04:00
SCHED_TASK(compass_accumulate, 50, 900),
SCHED_TASK_CLASS(ModeSmartRTL, &rover.mode_smartrtl, save_position, 3, 100),
SCHED_TASK_CLASS(AP_Notify, &rover.notify, update, 50, 300),
2015-12-26 00:05:34 -04:00
SCHED_TASK(one_second_loop, 1, 3000),
SCHED_TASK(compass_cal_update, 50, 100),
SCHED_TASK(accel_cal_update, 10, 100),
SCHED_TASK_CLASS(DataFlash_Class, &rover.DataFlash, periodic_tasks, 50, 300),
SCHED_TASK_CLASS(AP_InertialSensor, &rover.ins, periodic, 50, 50),
SCHED_TASK_CLASS(AP_Scheduler, &rover.scheduler, update_logging, 0.1, 75),
SCHED_TASK_CLASS(AP_Button, &rover.button, update, 5, 100),
SCHED_TASK(stats_update, 1, 100),
SCHED_TASK(crash_check, 10, 1000),
SCHED_TASK(cruise_learn_update, 50, 50),
2017-01-30 10:21:55 -04:00
#if ADVANCED_FAILSAFE == ENABLED
SCHED_TASK(afs_fs_check, 10, 100),
#endif
2015-05-12 04:00:25 -03:00
};
/*
update AP_Stats
*/
void Rover::stats_update(void)
{
g2.stats.set_flying(motor_active());
g2.stats.update();
}
/*
setup is called when the sketch starts
*/
void Rover::setup()
{
2012-12-18 16:17:17 -04:00
// load the default values of variables listed in var_info[]
AP_Param::setup_sketch_defaults();
init_ardupilot();
// initialise the main loop scheduler
scheduler.init(&scheduler_tasks[0], ARRAY_SIZE(scheduler_tasks), MASK_LOG_PM);
}
/*
loop() is called rapidly while the sketch is running
*/
void Rover::loop()
{
scheduler.loop();
G_Dt = scheduler.get_last_loop_time_s();
}
void Rover::update_soft_armed()
{
hal.util->set_soft_armed(arming.is_armed() &&
hal.util->safety_switch_state() != AP_HAL::Util::SAFETY_DISARMED);
DataFlash.set_vehicle_armed(hal.util->get_soft_armed());
}
// update AHRS system
void Rover::ahrs_update()
{
update_soft_armed();
2014-02-18 19:54:04 -04:00
#if HIL_MODE != HIL_MODE_DISABLED
// update hil before AHRS update
gcs_update();
#endif
// when in reverse we need to tell AHRS not to assume we are a
// 'fly forward' vehicle, otherwise it will see a large
// discrepancy between the mag and the GPS heading and will try to
// correct for it, leading to a large yaw error
ahrs.set_fly_forward(!in_reverse);
ahrs.update();
2017-06-05 04:55:24 -03:00
// update home from EKF if necessary
update_home_from_EKF();
// if using the EKF get a speed update now (from accelerometers)
Vector3f velocity;
if (ahrs.get_velocity_NED(velocity)) {
ground_speed = norm(velocity.x, velocity.y);
} else if (gps.status() >= AP_GPS::GPS_OK_FIX_3D) {
ground_speed = ahrs.groundspeed();
}
if (should_log(MASK_LOG_ATTITUDE_FAST)) {
Log_Write_Attitude();
}
2015-07-13 08:34:58 -03:00
if (should_log(MASK_LOG_IMU)) {
2013-11-03 23:37:54 -04:00
DataFlash.Log_Write_IMU(ins);
2015-07-13 08:34:58 -03:00
}
}
void Rover::update_alt()
{
2015-01-05 07:27:45 -04:00
barometer.update();
if (should_log(MASK_LOG_IMU)) {
Log_Write_Baro();
}
}
/*
check for GCS failsafe - 10Hz
*/
void Rover::gcs_failsafe_check(void)
{
if (g.fs_gcs_enabled) {
failsafe_trigger(FAILSAFE_EVENT_GCS, last_heartbeat_ms != 0 && (millis() - last_heartbeat_ms) > 2000);
}
}
/*
check for new compass data - 10Hz
*/
void Rover::update_compass(void)
{
if (g.compass_enabled && compass.read()) {
ahrs.set_compass(&compass);
// update offsets
2014-01-14 00:10:13 -04:00
if (should_log(MASK_LOG_COMPASS)) {
DataFlash.Log_Write_Compass(compass);
}
}
}
/*
log some key data - 10Hz
*/
void Rover::update_logging1(void)
{
if (should_log(MASK_LOG_ATTITUDE_MED) && !should_log(MASK_LOG_ATTITUDE_FAST)) {
Log_Write_Attitude();
}
if (should_log(MASK_LOG_THR)) {
Log_Write_Throttle();
Log_Write_Beacon();
2017-08-16 07:57:42 -03:00
Log_Write_Proximity();
}
if (should_log(MASK_LOG_NTUN)) {
Log_Write_Nav_Tuning();
}
2013-12-29 19:24:01 -04:00
}
2013-12-29 19:24:01 -04:00
/*
log some key data - 10Hz
*/
void Rover::update_logging2(void)
2013-12-29 19:24:01 -04:00
{
2014-01-14 00:10:13 -04:00
if (should_log(MASK_LOG_STEERING)) {
Log_Write_Steering();
}
2013-12-29 19:24:01 -04:00
if (should_log(MASK_LOG_RC)) {
2013-12-29 19:24:01 -04:00
Log_Write_RC();
2017-07-11 23:02:51 -03:00
Log_Write_WheelEncoder();
}
if (should_log(MASK_LOG_IMU)) {
DataFlash.Log_Write_Vibration(ins);
}
}
/*
update aux servo mappings
*/
void Rover::update_aux(void)
{
2017-01-06 06:31:10 -04:00
SRV_Channels::enable_aux_servos();
}
/*
once a second events
*/
void Rover::one_second_loop(void)
{
// send a heartbeat
gcs().send_message(MSG_HEARTBEAT);
// allow orientation change at runtime to aid config
ahrs.set_orientation();
set_control_channels();
// cope with changes to aux functions
update_aux();
// update notify flags
AP_Notify::flags.pre_arm_check = arming.pre_arm_checks(false);
AP_Notify::flags.pre_arm_gps_check = true;
AP_Notify::flags.armed = arming.is_armed() || arming.arming_required() == AP_Arming::NO;
// cope with changes to mavlink system ID
mavlink_system.sysid = g.sysid_this_mav;
2015-05-12 04:00:25 -03:00
static uint8_t counter;
counter++;
// save compass offsets once a minute
if (counter >= 60) {
if (g.compass_enabled) {
compass.save_offsets();
}
counter = 0;
}
2015-05-06 23:11:43 -03:00
// update home position if not soft armed and gps position has
// changed. Update every 1s at most
if (!hal.util->get_soft_armed() &&
gps.status() >= AP_GPS::GPS_OK_FIX_3D) {
update_home();
}
// update error mask of sensors and subsystems. The mask uses the
// MAV_SYS_STATUS_* values from mavlink. If a bit is set then it
// indicates that the sensor or subsystem is present but not
// functioning correctly
update_sensor_status_flags();
}
void Rover::update_GPS_50Hz(void)
{
2015-05-12 04:00:25 -03:00
static uint32_t last_gps_reading[GPS_MAX_INSTANCES];
gps.update();
2013-12-21 07:27:06 -04:00
for (uint8_t i=0; i < gps.num_sensors(); i++) {
if (gps.last_message_time_ms(i) != last_gps_reading[i]) {
last_gps_reading[i] = gps.last_message_time_ms(i);
if (should_log(MASK_LOG_GPS)) {
2016-05-03 19:26:20 -03:00
DataFlash.Log_Write_GPS(gps, i);
}
2013-04-28 01:57:19 -03:00
}
}
}
2013-04-28 01:57:19 -03:00
void Rover::update_GPS_10Hz(void)
{
2014-01-02 22:10:52 -04:00
have_position = ahrs.get_position(current_loc);
2017-06-05 04:55:24 -03:00
if (gps.last_message_time_ms() != last_gps_msg_ms) {
last_gps_msg_ms = gps.last_message_time_ms();
2017-06-05 04:55:24 -03:00
// set system time if necessary
set_system_time_from_GPS();
#if CAMERA == ENABLED
camera.update();
#endif
}
}
void Rover::update_current_mode(void)
{
2017-07-18 23:19:08 -03:00
control_mode->update();
}
AP_HAL_MAIN_CALLBACKS(&rover);