123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- #include "Sub.h"
- void Sub::enable_motor_output()
- {
- motors.output_min();
- }
- void Sub::motors_output()
- {
-
- if (control_mode == MOTOR_DETECT){
- return;
- }
-
- if (ap.motor_test) {
- verify_motor_test();
- } else {
- motors.set_interlock(true);
- motors.output();
- }
- }
- bool Sub::init_motor_test()
- {
- uint32_t tnow = AP_HAL::millis();
-
-
- if (tnow < last_do_motor_test_fail_ms + 10000 && last_do_motor_test_fail_ms > 0) {
- gcs().send_text(MAV_SEVERITY_CRITICAL, "10 second cooldown required after motor test");
- return false;
- }
-
- if (hal.util->safety_switch_state() == AP_HAL::Util::SAFETY_DISARMED) {
- gcs().send_text(MAV_SEVERITY_CRITICAL,"Disarm hardware safety switch before testing motors.");
- return false;
- }
-
- if (!motors.armed()) {
- gcs().send_text(MAV_SEVERITY_WARNING, "Arm motors before testing motors.");
- return false;
- }
- enable_motor_output();
- ap.motor_test = true;
- return true;
- }
- bool Sub::verify_motor_test()
- {
- bool pass = true;
-
- if (AP_HAL::millis() > last_do_motor_test_ms + 500) {
- gcs().send_text(MAV_SEVERITY_INFO, "Motor test timed out!");
- pass = false;
- }
- if (!pass) {
- ap.motor_test = false;
- arming.disarm();
- last_do_motor_test_fail_ms = AP_HAL::millis();
- return false;
- }
- return true;
- }
- bool Sub::handle_do_motor_test(mavlink_command_long_t command) {
- last_do_motor_test_ms = AP_HAL::millis();
-
- static uint32_t tLastInitializationFailed = 0;
- if(!ap.motor_test) {
-
-
-
- if (AP_HAL::millis() > (tLastInitializationFailed + 2000)) {
- if (!init_motor_test()) {
- gcs().send_text(MAV_SEVERITY_WARNING, "motor test initialization failed!");
- tLastInitializationFailed = AP_HAL::millis();
- return false;
- }
- } else {
- return false;
- }
- }
- float motor_number = command.param1;
- float throttle_type = command.param2;
- float throttle = command.param3;
-
-
- float test_type = command.param6;
- if (!is_equal(test_type, (float)MOTOR_TEST_ORDER_BOARD)) {
- gcs().send_text(MAV_SEVERITY_WARNING, "bad test type %0.2f", (double)test_type);
- return false;
- }
- if (is_equal(throttle_type, (float)MOTOR_TEST_THROTTLE_PILOT)) {
- gcs().send_text(MAV_SEVERITY_WARNING, "bad throttle type %0.2f", (double)throttle_type);
- return false;
- }
- if (is_equal(throttle_type, (float)MOTOR_TEST_THROTTLE_PWM)) {
- return motors.output_test_num(motor_number, throttle);
- }
- if (is_equal(throttle_type, (float)MOTOR_TEST_THROTTLE_PERCENT)) {
- throttle = constrain_float(throttle, 0.0f, 100.0f);
- throttle = channel_throttle->get_radio_min() + throttle / 100.0f * (channel_throttle->get_radio_max() - channel_throttle->get_radio_min());
- return motors.output_test_num(motor_number, throttle);
- }
- return false;
- }
- void Sub::translate_wpnav_rp(float &lateral_out, float &forward_out)
- {
-
- int32_t lateral = wp_nav.get_roll();
- int32_t forward = -wp_nav.get_pitch();
-
-
- lateral = constrain_int16(lateral, -aparm.angle_max, aparm.angle_max);
- forward = constrain_int16(forward, -aparm.angle_max, aparm.angle_max);
-
- lateral_out = (float)lateral/(float)aparm.angle_max;
- forward_out = (float)forward/(float)aparm.angle_max;
- }
- void Sub::translate_circle_nav_rp(float &lateral_out, float &forward_out)
- {
-
- int32_t lateral = circle_nav.get_roll();
- int32_t forward = -circle_nav.get_pitch();
-
- lateral = constrain_int16(lateral, -aparm.angle_max, aparm.angle_max);
- forward = constrain_int16(forward, -aparm.angle_max, aparm.angle_max);
-
- lateral_out = (float)lateral/(float)aparm.angle_max;
- forward_out = (float)forward/(float)aparm.angle_max;
- }
- void Sub::translate_pos_control_rp(float &lateral_out, float &forward_out)
- {
-
- int32_t lateral = pos_control.get_roll();
- int32_t forward = -pos_control.get_pitch();
-
- lateral = constrain_int16(lateral, -aparm.angle_max, aparm.angle_max);
- forward = constrain_int16(forward, -aparm.angle_max, aparm.angle_max);
-
- lateral_out = (float)lateral/(float)aparm.angle_max;
- forward_out = (float)forward/(float)aparm.angle_max;
- }
|