#include "Rover.h"
#define FORCE_VERSION_H_INCLUDE
#include "version.h"
#undef FORCE_VERSION_H_INCLUDE
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
#define SCHED_TASK(func, rate_hz, _max_time_micros, _priority) SCHED_TASK_CLASS(Rover, &rover, func, rate_hz, _max_time_micros, _priority)
const AP_Scheduler::Task Rover::scheduler_tasks[] = {
SCHED_TASK(read_radio, 50, 200, 3),
SCHED_TASK(ahrs_update, 400, 400, 6),
#if AP_RANGEFINDER_ENABLED
SCHED_TASK(read_rangefinders, 50, 200, 9),
#endif
#if AP_OPTICALFLOW_ENABLED
SCHED_TASK_CLASS(AP_OpticalFlow, &rover.optflow, update, 200, 160, 11),
#endif
SCHED_TASK(update_current_mode, 400, 200, 12),
SCHED_TASK(set_servos, 400, 200, 15),
SCHED_TASK_CLASS(AP_GPS, &rover.gps, update, 50, 300, 18),
SCHED_TASK_CLASS(AP_Baro, &rover.barometer, update, 10, 200, 21),
#if AP_BEACON_ENABLED
SCHED_TASK_CLASS(AP_Beacon, &rover.g2.beacon, update, 50, 200, 24),
#endif
#if HAL_PROXIMITY_ENABLED
SCHED_TASK_CLASS(AP_Proximity, &rover.g2.proximity, update, 50, 200, 27),
#endif
SCHED_TASK_CLASS(AP_WindVane, &rover.g2.windvane, update, 20, 100, 30),
SCHED_TASK(update_wheel_encoder, 50, 200, 36),
SCHED_TASK(update_compass, 10, 200, 39),
#if HAL_LOGGING_ENABLED
SCHED_TASK(update_logging1, 10, 200, 45),
SCHED_TASK(update_logging2, 10, 200, 48),
#endif
SCHED_TASK_CLASS(GCS, (GCS*)&rover._gcs, update_receive, 400, 500, 51),
SCHED_TASK_CLASS(GCS, (GCS*)&rover._gcs, update_send, 400, 1000, 54),
SCHED_TASK_CLASS(RC_Channels, (RC_Channels*)&rover.g2.rc_channels, read_mode_switch, 7, 200, 57),
SCHED_TASK_CLASS(RC_Channels, (RC_Channels*)&rover.g2.rc_channels, read_aux_all, 10, 200, 60),
SCHED_TASK_CLASS(AP_BattMonitor, &rover.battery, read, 10, 300, 63),
#if AP_SERVORELAYEVENTS_ENABLED
SCHED_TASK_CLASS(AP_ServoRelayEvents, &rover.ServoRelayEvents, update_events, 50, 200, 66),
#endif
#if AC_PRECLAND_ENABLED
SCHED_TASK(update_precland, 400, 50, 70),
#endif
#if HAL_MOUNT_ENABLED
SCHED_TASK_CLASS(AP_Mount, &rover.camera_mount, update, 50, 200, 75),
#endif
#if AP_CAMERA_ENABLED
SCHED_TASK_CLASS(AP_Camera, &rover.camera, update, 50, 200, 78),
#endif
SCHED_TASK(gcs_failsafe_check, 10, 200, 81),
#if AP_FENCE_ENABLED
SCHED_TASK(fence_check, 10, 200, 84),
#endif
SCHED_TASK(ekf_check, 10, 100, 87),
SCHED_TASK_CLASS(ModeSmartRTL, &rover.mode_smartrtl, save_position, 3, 200, 90),
SCHED_TASK(one_second_loop, 1, 1500, 96),
#if HAL_SPRAYER_ENABLED
SCHED_TASK_CLASS(AC_Sprayer, &rover.g2.sprayer, update, 3, 90, 99),
#endif
#if HAL_LOGGING_ENABLED
SCHED_TASK_CLASS(AP_Logger, &rover.logger, periodic_tasks, 50, 300, 108),
#endif
SCHED_TASK_CLASS(AP_InertialSensor, &rover.ins, periodic, 400, 200, 111),
#if HAL_LOGGING_ENABLED
SCHED_TASK_CLASS(AP_Scheduler, &rover.scheduler, update_logging, 0.1, 200, 114),
#endif
#if HAL_BUTTON_ENABLED
SCHED_TASK_CLASS(AP_Button, &rover.button, update, 5, 200, 117),
#endif
SCHED_TASK(crash_check, 10, 200, 123),
SCHED_TASK(cruise_learn_update, 50, 200, 126),
#if AP_ROVER_ADVANCED_FAILSAFE_ENABLED
SCHED_TASK(afs_fs_check, 10, 200, 129),
#endif
};
void Rover::get_scheduler_tasks(const AP_Scheduler::Task *&tasks,
uint8_t &task_count,
uint32_t &log_bit)
{
tasks = &scheduler_tasks[0];
task_count = ARRAY_SIZE(scheduler_tasks);
log_bit = MASK_LOG_PM;
}
constexpr int8_t Rover::_failsafe_priorities[7];
Rover::Rover(void) :
AP_Vehicle(),
param_loader(var_info),
modes(&g.mode1),
control_mode(&mode_initializing)
{
}
#if AP_SCRIPTING_ENABLED || AP_EXTERNAL_CONTROL_ENABLED
bool Rover::set_target_location(const Location& target_loc)
{
if (!control_mode->in_guided_mode()) {
return false;
}
return mode_guided.set_desired_location(target_loc);
}
#endif
#if AP_SCRIPTING_ENABLED
bool Rover::set_target_velocity_NED(const Vector3f& vel_ned, bool align_yaw_to_target)
{
if (!control_mode->in_guided_mode()) {
return false;
}
const float target_speed_m = safe_sqrt(sq(vel_ned.x) + sq(vel_ned.y));
const float target_yaw_cd = degrees(atan2f(vel_ned.y, vel_ned.x)) * 100.0f;
mode_guided.set_desired_heading_and_speed(target_yaw_cd, target_speed_m);
return true;
}
bool Rover::set_steering_and_throttle(float steering, float throttle)
{
if (!control_mode->in_guided_mode()) {
return false;
}
mode_guided.set_steering_and_throttle(steering, throttle);
return true;
}
bool Rover::get_steering_and_throttle(float& steering, float& throttle)
{
steering = g2.motors.get_steering() / 4500.0;
throttle = g2.motors.get_throttle() * 0.01;
return true;
}
bool Rover::set_desired_turn_rate_and_speed(float turn_rate, float speed)
{
if (!control_mode->in_guided_mode()) {
return false;
}
mode_guided.set_desired_turn_rate_and_speed(turn_rate * 100.0f, speed);
return true;
}
bool Rover::set_desired_speed(float speed)
{
return control_mode->set_desired_speed(speed);
}
bool Rover::get_control_output(AP_Vehicle::ControlOutput control_output, float &control_value)
{
switch (control_output) {
case AP_Vehicle::ControlOutput::Roll:
control_value = constrain_float(g2.motors.get_roll(), -1.0f, 1.0f);
return true;
case AP_Vehicle::ControlOutput::Pitch:
control_value = constrain_float(g2.motors.get_pitch(), -1.0f, 1.0f);
return true;
case AP_Vehicle::ControlOutput::Walking_Height:
control_value = constrain_float(g2.motors.get_walking_height(), -1.0f, 1.0f);
return true;
case AP_Vehicle::ControlOutput::Throttle:
control_value = constrain_float(g2.motors.get_throttle() * 0.01f, -1.0f, 1.0f);
return true;
case AP_Vehicle::ControlOutput::Yaw:
control_value = constrain_float(g2.motors.get_steering() / 4500.0f, -1.0f, 1.0f);
return true;
case AP_Vehicle::ControlOutput::Lateral:
control_value = constrain_float(g2.motors.get_lateral() * 0.01f, -1.0f, 1.0f);
return true;
case AP_Vehicle::ControlOutput::MainSail:
control_value = constrain_float(g2.motors.get_mainsail() * 0.01f, -1.0f, 1.0f);
return true;
case AP_Vehicle::ControlOutput::WingSail:
control_value = constrain_float(g2.motors.get_wingsail() * 0.01f, -1.0f, 1.0f);
return true;
default:
return false;
}
return false;
}
bool Rover::nav_scripting_enable(uint8_t mode)
{
return mode == (uint8_t)mode_auto.mode_number();
}
bool Rover::nav_script_time(uint16_t &id, uint8_t &cmd, float &arg1, float &arg2, int16_t &arg3, int16_t &arg4)
{
if (control_mode != &mode_auto) {
return false;
}
return mode_auto.nav_script_time(id, cmd, arg1, arg2, arg3, arg4);
}
void Rover::nav_script_time_done(uint16_t id)
{
if (control_mode != &mode_auto) {
return;
}
return mode_auto.nav_script_time_done(id);
}
#endif
void Rover::ahrs_update()
{
arming.update_soft_armed();
update_ahrs_flyforward();
ahrs.update();
have_position = ahrs.get_location(current_loc);
if (!ahrs.home_is_set()) {
if (!set_home_to_current_location(false)) {
}
}
Vector3f velocity;
if (ahrs.get_velocity_NED(velocity)) {
ground_speed = velocity.xy().length();
} else if (gps.status() >= AP_GPS::GPS_OK_FIX_3D) {
ground_speed = ahrs.groundspeed();
}
#if AP_FOLLOW_ENABLED
g2.follow.update_estimates();
#endif
#if HAL_LOGGING_ENABLED
if (should_log(MASK_LOG_ATTITUDE_FAST)) {
Log_Write_Attitude();
Log_Write_Sail();
}
if (should_log(MASK_LOG_IMU)) {
AP::ins().Write_IMU();
}
if (should_log(MASK_LOG_VIDEO_STABILISATION)) {
ahrs.write_video_stabilisation();
}
#endif
}
void Rover::gcs_failsafe_check(void)
{
if (g.fs_gcs_enabled == FS_GCS_DISABLED) {
return;
}
const uint32_t gcs_last_seen_ms = gcs().sysid_mygcs_last_seen_time_ms();
if (gcs_last_seen_ms == 0) {
return;
}
const uint32_t last_gcs_update_ms = millis() - gcs_last_seen_ms;
const uint32_t gcs_timeout_ms = uint32_t(constrain_float(g2.fs_gcs_timeout * 1000.0f, 0.0f, UINT32_MAX));
const bool do_failsafe = last_gcs_update_ms >= gcs_timeout_ms ? true : false;
failsafe_trigger(FAILSAFE_EVENT_GCS, "GCS", do_failsafe);
}
#if HAL_LOGGING_ENABLED
void Rover::update_logging1(void)
{
if (should_log(MASK_LOG_ATTITUDE_MED) && !should_log(MASK_LOG_ATTITUDE_FAST)) {
Log_Write_Attitude();
Log_Write_Sail();
}
if (should_log(MASK_LOG_THR)) {
Log_Write_Throttle();
#if AP_BEACON_ENABLED
g2.beacon.log();
#endif
}
if (should_log(MASK_LOG_NTUN)) {
Log_Write_Nav_Tuning();
if (g2.pos_control.is_active()) {
g2.pos_control.write_log();
logger.Write_PID(LOG_PIDN_MSG, g2.pos_control.get_vel_pid().get_pid_info_x());
logger.Write_PID(LOG_PIDE_MSG, g2.pos_control.get_vel_pid().get_pid_info_y());
}
}
#if HAL_PROXIMITY_ENABLED
if (should_log(MASK_LOG_RANGEFINDER)) {
g2.proximity.log();
}
#endif
}
void Rover::update_logging2(void)
{
if (should_log(MASK_LOG_STEERING)) {
Log_Write_Steering();
}
if (should_log(MASK_LOG_RC)) {
Log_Write_RC();
g2.wheel_encoder.Log_Write();
}
if (should_log(MASK_LOG_IMU)) {
AP::ins().Write_Vibration();
#if HAL_GYROFFT_ENABLED
gyro_fft.write_log_messages();
#endif
}
#if HAL_MOUNT_ENABLED
if (should_log(MASK_LOG_CAMERA)) {
camera_mount.write_log();
}
#endif
}
#endif
#if AP_ROVER_AUTO_ARM_ONCE_ENABLED
void Rover::handle_auto_arm_once()
{
if (arming.is_armed()) {
auto_arm_once.done = true;
return;
}
if (auto_arm_once.done) {
return;
}
switch (arming.arming_required()) {
case AP_Arming::Required::NO:
case AP_Arming::Required::YES_MIN_PWM:
case AP_Arming::Required::YES_ZERO_PWM:
auto_arm_once.done = true;
return;
case AP_Arming::Required::YES_AUTO_ARM_MIN_PWM:
case AP_Arming::Required::YES_AUTO_ARM_ZERO_PWM:
break;
}
if (!arming.get_last_prearm_checks_result()) {
return;
}
const uint32_t now_ms = AP_HAL::millis();
if (now_ms - auto_arm_once.last_arm_attempt_ms < 5000) {
return;
}
auto_arm_once.last_arm_attempt_ms = now_ms;
if (!arming.arm(AP_Arming::Method::AUTO_ARM_ONCE)) {
return;
}
auto_arm_once.done = true;
}
#endif
void Rover::one_second_loop(void)
{
set_control_channels();
AP::srv().enable_aux_servos();
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();
AP_Notify::flags.flying = hal.util->get_soft_armed();
#if AP_ROVER_AUTO_ARM_ONCE_ENABLED
handle_auto_arm_once();
#endif
if (!hal.util->get_soft_armed()) {
update_home();
}
set_likely_flying(hal.util->get_soft_armed());
g2.wp_nav.set_turn_params(g2.turn_radius, g2.motors.have_skid_steering());
g2.pos_control.set_turn_params(g2.turn_radius, g2.motors.have_skid_steering());
g2.wheel_rate_control.set_notch_sample_rate(AP::scheduler().get_filtered_loop_rate_hz());
#if AP_STATS_ENABLED
AP::stats()->set_flying(g2.motors.active());
#endif
}
void Rover::update_current_mode(void)
{
if (SRV_Channels::get_emergency_stop()) {
g2.attitude_control.relax_I();
}
control_mode->update();
}
bool Rover::get_wp_distance_m(float &distance) const
{
if (!rover.control_mode->is_autopilot_mode()) {
return false;
}
distance = control_mode->get_distance_to_destination();
return true;
}
bool Rover::get_wp_bearing_deg(float &bearing) const
{
if (!rover.control_mode->is_autopilot_mode()) {
return false;
}
bearing = control_mode->wp_bearing();
return true;
}
bool Rover::get_wp_crosstrack_error_m(float &xtrack_error) const
{
if (!rover.control_mode->is_autopilot_mode()) {
return false;
}
xtrack_error = control_mode->crosstrack_error();
return true;
}
Rover rover;
AP_Vehicle& vehicle = rover;
AP_HAL_MAIN_CALLBACKS(&rover);