2011-03-19 07:20:11 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2011-02-24 01:56:59 -04:00
|
|
|
|
2011-07-17 07:34:05 -03:00
|
|
|
#if CLI_ENABLED == ENABLED
|
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
// These are function definitions so the Menu can be constructed before the functions
|
|
|
|
// are defined below. Order matters to the compiler.
|
2011-11-19 18:02:00 -04:00
|
|
|
//static int8_t test_radio_pwm(uint8_t argc, const Menu::arg *argv);
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t test_radio(uint8_t argc, const Menu::arg *argv);
|
2011-11-05 01:41:51 -03:00
|
|
|
//static int8_t test_failsafe(uint8_t argc, const Menu::arg *argv);
|
2011-05-07 17:57:48 -03:00
|
|
|
//static int8_t test_stabilize(uint8_t argc, const Menu::arg *argv);
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t test_gps(uint8_t argc, const Menu::arg *argv);
|
2011-11-19 18:02:00 -04:00
|
|
|
//static int8_t test_tri(uint8_t argc, const Menu::arg *argv);
|
|
|
|
//static int8_t test_adc(uint8_t argc, const Menu::arg *argv);
|
2011-11-13 01:06:54 -04:00
|
|
|
|
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE
|
2011-11-12 23:51:43 -04:00
|
|
|
static int8_t test_ins(uint8_t argc, const Menu::arg *argv);
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t test_imu(uint8_t argc, const Menu::arg *argv);
|
2011-11-12 23:57:16 -04:00
|
|
|
static int8_t test_dcm_eulers(uint8_t argc, const Menu::arg *argv);
|
2011-11-13 01:06:54 -04:00
|
|
|
#endif // HIL_MODE
|
|
|
|
|
2011-02-24 01:56:59 -04:00
|
|
|
//static int8_t test_dcm(uint8_t argc, const Menu::arg *argv);
|
2011-03-07 02:00:27 -04:00
|
|
|
//static int8_t test_omega(uint8_t argc, const Menu::arg *argv);
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t test_battery(uint8_t argc, const Menu::arg *argv);
|
2011-09-24 20:48:04 -03:00
|
|
|
//static int8_t test_nav(uint8_t argc, const Menu::arg *argv);
|
|
|
|
|
2011-05-18 20:38:24 -03:00
|
|
|
//static int8_t test_wp_nav(uint8_t argc, const Menu::arg *argv);
|
2011-07-13 23:01:51 -03:00
|
|
|
//static int8_t test_reverse(uint8_t argc, const Menu::arg *argv);
|
2011-04-17 20:08:16 -03:00
|
|
|
static int8_t test_tuning(uint8_t argc, const Menu::arg *argv);
|
2011-01-16 23:44:12 -04:00
|
|
|
static int8_t test_current(uint8_t argc, const Menu::arg *argv);
|
2011-11-19 18:02:00 -04:00
|
|
|
//static int8_t test_relay(uint8_t argc, const Menu::arg *argv);
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t test_wp(uint8_t argc, const Menu::arg *argv);
|
2011-06-03 15:49:13 -03:00
|
|
|
static int8_t test_baro(uint8_t argc, const Menu::arg *argv);
|
2011-12-03 19:39:02 -04:00
|
|
|
static int8_t test_mag(uint8_t argc, const Menu::arg *argv);
|
2011-12-11 10:25:03 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE && CONFIG_SONAR == ENABLED
|
2011-06-03 15:49:13 -03:00
|
|
|
static int8_t test_sonar(uint8_t argc, const Menu::arg *argv);
|
2011-12-11 10:25:03 -04:00
|
|
|
#endif
|
2011-07-21 20:14:53 -03:00
|
|
|
#ifdef OPTFLOW_ENABLED
|
|
|
|
static int8_t test_optflow(uint8_t argc, const Menu::arg *argv);
|
|
|
|
#endif
|
2011-10-15 17:09:04 -03:00
|
|
|
//static int8_t test_xbee(uint8_t argc, const Menu::arg *argv);
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t test_eedump(uint8_t argc, const Menu::arg *argv);
|
2011-03-11 17:37:37 -04:00
|
|
|
static int8_t test_rawgps(uint8_t argc, const Menu::arg *argv);
|
2011-08-05 13:47:44 -03:00
|
|
|
//static int8_t test_mission(uint8_t argc, const Menu::arg *argv);
|
2010-12-19 12:40:33 -04:00
|
|
|
|
|
|
|
// This is the help function
|
|
|
|
// PSTR is an AVR macro to read strings from flash memory
|
|
|
|
// printf_P is a version of printf that reads from flash memory
|
|
|
|
/*static int8_t help_test(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
|
|
|
Serial.printf_P(PSTR("\n"
|
|
|
|
"Commands:\n"
|
|
|
|
" radio\n"
|
|
|
|
" servos\n"
|
2011-02-17 05:36:33 -04:00
|
|
|
" g_gps\n"
|
2010-12-19 12:40:33 -04:00
|
|
|
" imu\n"
|
|
|
|
" battery\n"
|
|
|
|
"\n"));
|
|
|
|
}*/
|
|
|
|
|
|
|
|
// Creates a constant array of structs representing menu options
|
|
|
|
// and stores them in Flash memory, not RAM.
|
|
|
|
// User enters the string in the console to call the functions on the right.
|
|
|
|
// See class Menu in AP_Coommon for implementation details
|
|
|
|
const struct Menu::command test_menu_commands[] PROGMEM = {
|
2011-11-19 18:02:00 -04:00
|
|
|
// {"pwm", test_radio_pwm},
|
2010-12-19 12:40:33 -04:00
|
|
|
{"radio", test_radio},
|
2011-11-05 01:41:51 -03:00
|
|
|
// {"failsafe", test_failsafe},
|
2011-05-07 17:57:48 -03:00
|
|
|
// {"stabilize", test_stabilize},
|
2010-12-19 12:40:33 -04:00
|
|
|
{"gps", test_gps},
|
2011-11-12 23:54:42 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE && CONFIG_ADC == ENABLED
|
2011-11-19 18:02:00 -04:00
|
|
|
// {"adc", test_adc},
|
2011-03-03 07:39:52 -04:00
|
|
|
#endif
|
2011-11-13 01:06:54 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE
|
2011-11-12 23:51:43 -04:00
|
|
|
{"ins", test_ins},
|
2010-12-19 12:40:33 -04:00
|
|
|
{"imu", test_imu},
|
2011-11-12 23:57:16 -04:00
|
|
|
{"dcm", test_dcm_eulers},
|
2011-11-13 01:06:54 -04:00
|
|
|
#endif
|
2011-03-07 02:00:27 -04:00
|
|
|
//{"omega", test_omega},
|
2010-12-19 12:40:33 -04:00
|
|
|
{"battery", test_battery},
|
2011-04-17 20:08:16 -03:00
|
|
|
{"tune", test_tuning},
|
2011-11-19 18:02:00 -04:00
|
|
|
//{"tri", test_tri},
|
2011-01-16 23:44:12 -04:00
|
|
|
{"current", test_current},
|
2011-11-19 18:02:00 -04:00
|
|
|
// {"relay", test_relay},
|
2011-11-12 19:14:32 -04:00
|
|
|
{"wp", test_wp},
|
2011-09-24 20:48:04 -03:00
|
|
|
//{"nav", test_nav},
|
2011-03-03 07:39:52 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE
|
2011-06-03 15:49:13 -03:00
|
|
|
{"altitude", test_baro},
|
2011-03-03 07:39:52 -04:00
|
|
|
#endif
|
2011-12-11 10:25:03 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE && CONFIG_SONAR == ENABLED
|
2011-06-03 15:49:13 -03:00
|
|
|
{"sonar", test_sonar},
|
2011-11-12 23:54:42 -04:00
|
|
|
#endif
|
2011-12-03 19:39:02 -04:00
|
|
|
{"compass", test_mag},
|
2011-07-21 20:14:53 -03:00
|
|
|
#ifdef OPTFLOW_ENABLED
|
|
|
|
{"optflow", test_optflow},
|
|
|
|
#endif
|
2011-10-02 15:36:23 -03:00
|
|
|
//{"xbee", test_xbee},
|
2011-02-17 05:36:33 -04:00
|
|
|
{"eedump", test_eedump},
|
2011-11-19 18:02:00 -04:00
|
|
|
// {"rawgps", test_rawgps},
|
2011-08-05 13:47:44 -03:00
|
|
|
// {"mission", test_mission},
|
2011-07-13 23:01:51 -03:00
|
|
|
//{"reverse", test_reverse},
|
2011-05-30 01:24:07 -03:00
|
|
|
//{"wp", test_wp_nav},
|
2010-12-19 12:40:33 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// A Macro to create the Menu
|
|
|
|
MENU(test_menu, "test", test_menu_commands);
|
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static int8_t
|
2010-12-19 12:40:33 -04:00
|
|
|
test_mode(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
2011-07-13 23:01:51 -03:00
|
|
|
//Serial.printf_P(PSTR("Test Mode\n\n"));
|
2010-12-19 12:40:33 -04:00
|
|
|
test_menu.run();
|
2011-07-17 07:30:21 -03:00
|
|
|
return 0;
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int8_t
|
|
|
|
test_eedump(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
// hexdump the EEPROM
|
|
|
|
for (i = 0; i < EEPROM_MAX_ADDR; i += 16) {
|
|
|
|
Serial.printf_P(PSTR("%04x:"), i);
|
|
|
|
for (j = 0; j < 16; j++)
|
|
|
|
Serial.printf_P(PSTR(" %02x"), eeprom_read_byte((const uint8_t *)(i + j)));
|
|
|
|
Serial.println();
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2011-12-03 21:55:44 -04:00
|
|
|
/*
|
|
|
|
//static int8_t
|
2011-11-19 18:02:00 -04:00
|
|
|
//test_radio_pwm(uint8_t argc, const Menu::arg *argv)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
while(1){
|
|
|
|
delay(20);
|
|
|
|
|
|
|
|
// Filters radio input - adjust filters in the radio.pde file
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
read_radio();
|
|
|
|
|
2011-05-03 19:13:48 -03:00
|
|
|
// servo Yaw
|
2011-05-03 19:15:20 -03:00
|
|
|
//APM_RC.OutputCh(CH_7, g.rc_4.radio_out);
|
2011-05-03 19:13:48 -03:00
|
|
|
|
2011-02-24 01:56:59 -04:00
|
|
|
Serial.printf_P(PSTR("IN: 1: %d\t2: %d\t3: %d\t4: %d\t5: %d\t6: %d\t7: %d\t8: %d\n"),
|
|
|
|
g.rc_1.radio_in,
|
|
|
|
g.rc_2.radio_in,
|
|
|
|
g.rc_3.radio_in,
|
|
|
|
g.rc_4.radio_in,
|
|
|
|
g.rc_5.radio_in,
|
|
|
|
g.rc_6.radio_in,
|
|
|
|
g.rc_7.radio_in,
|
|
|
|
g.rc_8.radio_in);
|
2010-12-19 12:40:33 -04:00
|
|
|
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
2011-11-19 18:02:00 -04:00
|
|
|
}*/
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2011-12-03 21:55:44 -04:00
|
|
|
/*
|
|
|
|
//static int8_t
|
2011-11-19 18:02:00 -04:00
|
|
|
//test_tri(uint8_t argc, const Menu::arg *argv)
|
2011-05-03 19:13:48 -03:00
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
delay(20);
|
|
|
|
|
|
|
|
// Filters radio input - adjust filters in the radio.pde file
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
read_radio();
|
|
|
|
g.rc_4.servo_out = g.rc_4.control_in;
|
|
|
|
g.rc_4.calc_pwm();
|
|
|
|
|
|
|
|
Serial.printf_P(PSTR("input: %d\toutput%d\n"),
|
|
|
|
g.rc_4.control_in,
|
|
|
|
g.rc_4.radio_out);
|
|
|
|
|
2011-05-03 19:15:20 -03:00
|
|
|
APM_RC.OutputCh(CH_7, g.rc_4.radio_out);
|
|
|
|
|
2011-05-03 19:13:48 -03:00
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
2011-11-19 18:02:00 -04:00
|
|
|
}*/
|
2011-05-03 19:13:48 -03:00
|
|
|
|
2011-09-24 20:48:04 -03:00
|
|
|
/*
|
2011-12-03 21:55:44 -04:00
|
|
|
//static int8_t
|
2011-11-19 18:02:00 -04:00
|
|
|
//test_nav(uint8_t argc, const Menu::arg *argv)
|
2011-09-24 20:48:04 -03:00
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
delay(1000);
|
|
|
|
g_gps->ground_course = 19500;
|
|
|
|
calc_nav_rate2(g.waypoint_speed_max);
|
|
|
|
calc_nav_pitch_roll2();
|
|
|
|
|
|
|
|
g_gps->ground_course = 28500;
|
|
|
|
calc_nav_rate2(g.waypoint_speed_max);
|
|
|
|
calc_nav_pitch_roll2();
|
|
|
|
|
|
|
|
g_gps->ground_course = 1500;
|
|
|
|
calc_nav_rate2(g.waypoint_speed_max);
|
|
|
|
calc_nav_pitch_roll2();
|
|
|
|
|
|
|
|
g_gps->ground_course = 10500;
|
|
|
|
calc_nav_rate2(g.waypoint_speed_max);
|
|
|
|
calc_nav_pitch_roll2();
|
|
|
|
|
|
|
|
|
|
|
|
//if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
//}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t
|
|
|
|
test_radio(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
delay(20);
|
|
|
|
read_radio();
|
2011-05-06 19:46:57 -03:00
|
|
|
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-04-21 02:15:45 -03:00
|
|
|
Serial.printf_P(PSTR("IN 1: %d\t2: %d\t3: %d\t4: %d\t5: %d\t6: %d\t7: %d\n"),
|
2011-03-02 22:32:50 -04:00
|
|
|
g.rc_1.control_in,
|
|
|
|
g.rc_2.control_in,
|
|
|
|
g.rc_3.control_in,
|
|
|
|
g.rc_4.control_in,
|
2011-02-24 01:56:59 -04:00
|
|
|
g.rc_5.control_in,
|
|
|
|
g.rc_6.control_in,
|
|
|
|
g.rc_7.control_in);
|
|
|
|
|
2011-02-17 03:09:13 -04:00
|
|
|
//Serial.printf_P(PSTR("OUT 1: %d\t2: %d\t3: %d\t4: %d\n"), (g.rc_1.servo_out / 100), (g.rc_2.servo_out / 100), g.rc_3.servo_out, (g.rc_4.servo_out / 100));
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-28 21:36:30 -04:00
|
|
|
/*Serial.printf_P(PSTR( "min: %d"
|
2010-12-26 20:35:08 -04:00
|
|
|
"\t in: %d"
|
|
|
|
"\t pwm_in: %d"
|
|
|
|
"\t sout: %d"
|
|
|
|
"\t pwm_out %d\n"),
|
2011-02-17 05:36:33 -04:00
|
|
|
g.rc_3.radio_min,
|
2011-02-17 03:09:13 -04:00
|
|
|
g.rc_3.control_in,
|
|
|
|
g.rc_3.radio_in,
|
|
|
|
g.rc_3.servo_out,
|
|
|
|
g.rc_3.pwm_out
|
2010-12-26 20:35:08 -04:00
|
|
|
);
|
2010-12-28 21:36:30 -04:00
|
|
|
*/
|
2010-12-19 12:40:33 -04:00
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
/*
|
2011-12-03 21:55:44 -04:00
|
|
|
//static int8_t
|
2011-11-19 18:02:00 -04:00
|
|
|
//test_failsafe(uint8_t argc, const Menu::arg *argv)
|
2011-01-22 16:25:14 -04:00
|
|
|
{
|
2011-08-05 13:47:44 -03:00
|
|
|
|
|
|
|
#if THROTTLE_FAILSAFE
|
2011-01-22 16:25:14 -04:00
|
|
|
byte fail_test;
|
|
|
|
print_hit_enter();
|
|
|
|
for(int i = 0; i < 50; i++){
|
|
|
|
delay(20);
|
|
|
|
read_radio();
|
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-22 16:25:14 -04:00
|
|
|
oldSwitchPosition = readSwitch();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-25 01:53:36 -04:00
|
|
|
Serial.printf_P(PSTR("Unplug battery, throttle in neutral, turn off radio.\n"));
|
2011-02-17 03:09:13 -04:00
|
|
|
while(g.rc_3.control_in > 0){
|
2011-01-26 03:14:54 -04:00
|
|
|
delay(20);
|
|
|
|
read_radio();
|
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-22 16:25:14 -04:00
|
|
|
while(1){
|
|
|
|
delay(20);
|
|
|
|
read_radio();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-02-17 03:09:13 -04:00
|
|
|
if(g.rc_3.control_in > 0){
|
|
|
|
Serial.printf_P(PSTR("THROTTLE CHANGED %d \n"), g.rc_3.control_in);
|
2011-01-22 16:25:14 -04:00
|
|
|
fail_test++;
|
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-22 16:25:14 -04:00
|
|
|
if(oldSwitchPosition != readSwitch()){
|
2011-01-26 03:14:54 -04:00
|
|
|
Serial.printf_P(PSTR("CONTROL MODE CHANGED: "));
|
2011-01-22 16:25:14 -04:00
|
|
|
Serial.println(flight_mode_strings[readSwitch()]);
|
|
|
|
fail_test++;
|
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-02-19 22:03:01 -04:00
|
|
|
if(g.throttle_fs_enabled && g.rc_3.get_failsafe()){
|
2011-02-17 03:09:13 -04:00
|
|
|
Serial.printf_P(PSTR("THROTTLE FAILSAFE ACTIVATED: %d, "), g.rc_3.radio_in);
|
2011-01-22 16:25:14 -04:00
|
|
|
Serial.println(flight_mode_strings[readSwitch()]);
|
|
|
|
fail_test++;
|
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-22 16:25:14 -04:00
|
|
|
if(fail_test > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
Serial.printf_P(PSTR("LOS caused no change in ACM.\n"));
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
2011-08-05 13:47:44 -03:00
|
|
|
#else
|
|
|
|
return (0);
|
|
|
|
#endif
|
2011-01-22 16:25:14 -04:00
|
|
|
}
|
2011-11-05 01:41:51 -03:00
|
|
|
*/
|
2011-01-22 16:25:14 -04:00
|
|
|
|
2011-12-03 21:55:44 -04:00
|
|
|
/*
|
|
|
|
//static int8_t
|
2011-11-19 18:02:00 -04:00
|
|
|
//test_stabilize(uint8_t argc, const Menu::arg *argv)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
2011-01-02 16:34:42 -04:00
|
|
|
static byte ts_num;
|
2011-02-17 05:36:33 -04:00
|
|
|
|
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-27 19:09:08 -04:00
|
|
|
// setup the radio
|
|
|
|
// ---------------
|
|
|
|
init_rc_in();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
control_mode = STABILIZE;
|
2011-09-04 21:15:36 -03:00
|
|
|
Serial.printf_P(PSTR("g.pi_stabilize_roll.kP: %4.4f\n"), g.pi_stabilize_roll.kP());
|
2010-12-19 12:40:33 -04:00
|
|
|
Serial.printf_P(PSTR("max_stabilize_dampener:%d\n\n "), max_stabilize_dampener);
|
2010-12-27 19:09:08 -04:00
|
|
|
|
2011-05-14 23:02:09 -03:00
|
|
|
motor_auto_armed = false;
|
2011-01-25 01:53:36 -04:00
|
|
|
motor_armed = true;
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
while(1){
|
|
|
|
// 50 hz
|
2011-01-02 16:34:42 -04:00
|
|
|
if (millis() - fast_loopTimer > 19) {
|
2011-01-17 22:48:44 -04:00
|
|
|
delta_ms_fast_loop = millis() - fast_loopTimer;
|
2010-12-19 12:40:33 -04:00
|
|
|
fast_loopTimer = millis();
|
2011-01-17 22:48:44 -04:00
|
|
|
G_Dt = (float)delta_ms_fast_loop / 1000.f;
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2011-02-17 03:09:13 -04:00
|
|
|
if(g.compass_enabled){
|
2010-12-19 12:40:33 -04:00
|
|
|
medium_loopCounter++;
|
|
|
|
if(medium_loopCounter == 5){
|
|
|
|
compass.read(); // Read magnetometer
|
2011-02-17 03:09:13 -04:00
|
|
|
compass.calculate(dcm.roll, dcm.pitch); // Calculate heading
|
2011-03-07 15:06:29 -04:00
|
|
|
compass.null_offsets(dcm.get_dcm_matrix());
|
2010-12-19 12:40:33 -04:00
|
|
|
medium_loopCounter = 0;
|
|
|
|
}
|
|
|
|
}
|
2011-02-19 22:03:01 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
// for trim features
|
|
|
|
read_trim_switch();
|
|
|
|
|
|
|
|
// Filters radio input - adjust filters in the radio.pde file
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
read_radio();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
// IMU
|
|
|
|
// ---
|
|
|
|
read_AHRS();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-02 16:34:42 -04:00
|
|
|
// allow us to zero out sensors with control switches
|
2011-02-17 03:09:13 -04:00
|
|
|
if(g.rc_5.control_in < 600){
|
2011-01-25 01:53:36 -04:00
|
|
|
dcm.roll_sensor = dcm.pitch_sensor = 0;
|
2011-01-02 16:34:42 -04:00
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
// custom code/exceptions for flight modes
|
|
|
|
// ---------------------------------------
|
|
|
|
update_current_flight_mode();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
// write out the servo PWM values
|
|
|
|
// ------------------------------
|
|
|
|
set_servos_4();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-02 16:34:42 -04:00
|
|
|
ts_num++;
|
2011-03-07 02:00:27 -04:00
|
|
|
if (ts_num > 10){
|
2011-01-02 16:34:42 -04:00
|
|
|
ts_num = 0;
|
2011-02-06 03:01:30 -04:00
|
|
|
Serial.printf_P(PSTR("r: %d, p:%d, rc1:%d, "),
|
2011-01-25 01:53:36 -04:00
|
|
|
(int)(dcm.roll_sensor/100),
|
|
|
|
(int)(dcm.pitch_sensor/100),
|
2011-02-17 03:09:13 -04:00
|
|
|
g.rc_1.pwm_out);
|
2011-01-12 21:31:05 -04:00
|
|
|
|
2011-03-07 02:00:27 -04:00
|
|
|
print_motor_out();
|
2011-01-02 16:34:42 -04:00
|
|
|
}
|
|
|
|
// R: 1417, L: 1453 F: 1453 B: 1417
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-25 01:53:36 -04:00
|
|
|
//Serial.printf_P(PSTR("timer: %d, r: %d\tp: %d\t y: %d\n"), (int)delta_ms_fast_loop, ((int)dcm.roll_sensor/100), ((int)dcm.pitch_sensor/100), ((uint16_t)dcm.yaw_sensor/100));
|
|
|
|
//Serial.printf_P(PSTR("timer: %d, r: %d\tp: %d\t y: %d\n"), (int)delta_ms_fast_loop, ((int)dcm.roll_sensor/100), ((int)dcm.pitch_sensor/100), ((uint16_t)dcm.yaw_sensor/100));
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
if(Serial.available() > 0){
|
2011-03-07 15:06:29 -04:00
|
|
|
if(g.compass_enabled){
|
|
|
|
compass.save_offsets();
|
2011-03-27 18:26:34 -03:00
|
|
|
report_compass();
|
2011-03-07 15:06:29 -04:00
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
return (0);
|
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-05-07 17:57:48 -03:00
|
|
|
*/
|
2011-11-19 18:02:00 -04:00
|
|
|
|
2011-11-12 23:54:42 -04:00
|
|
|
|
|
|
|
/*#if HIL_MODE != HIL_MODE_ATTITUDE && CONFIG_ADC == ENABLED
|
2011-12-03 21:55:44 -04:00
|
|
|
//static int8_t
|
2011-11-19 18:02:00 -04:00
|
|
|
//test_adc(uint8_t argc, const Menu::arg *argv)
|
2011-01-02 16:34:42 -04:00
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
Serial.printf_P(PSTR("ADC\n"));
|
|
|
|
delay(1000);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-11-12 23:54:42 -04:00
|
|
|
adc.Init(&timer_scheduler);
|
|
|
|
|
|
|
|
delay(50);
|
|
|
|
|
2011-01-02 16:34:42 -04:00
|
|
|
while(1){
|
|
|
|
for(int i = 0; i < 9; i++){
|
2011-12-10 06:45:34 -04:00
|
|
|
Serial.printf_P(PSTR("%.1f,"),adc.Ch(i));
|
2011-01-02 16:34:42 -04:00
|
|
|
}
|
|
|
|
Serial.println();
|
|
|
|
delay(20);
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-03-03 07:39:52 -04:00
|
|
|
#endif
|
2011-11-19 18:02:00 -04:00
|
|
|
*/
|
2011-03-03 07:39:52 -04:00
|
|
|
|
2011-11-13 01:06:54 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE
|
2011-11-12 23:51:43 -04:00
|
|
|
static int8_t
|
|
|
|
test_ins(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
|
|
|
float gyro[3], accel[3], temp;
|
|
|
|
print_hit_enter();
|
|
|
|
Serial.printf_P(PSTR("InertialSensor\n"));
|
|
|
|
delay(1000);
|
|
|
|
|
|
|
|
ins.init(&timer_scheduler);
|
|
|
|
|
|
|
|
delay(50);
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
ins.update();
|
|
|
|
ins.get_gyros(gyro);
|
|
|
|
ins.get_accels(accel);
|
|
|
|
temp = ins.temperature();
|
|
|
|
|
|
|
|
Serial.printf_P(PSTR("g"));
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
Serial.printf_P(PSTR(" %7.4f"), gyro[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Serial.printf_P(PSTR(" a"));
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
Serial.printf_P(PSTR(" %7.4f"),accel[i]);
|
|
|
|
}
|
|
|
|
Serial.printf_P(PSTR(" t %7.4f \n"), temp);
|
|
|
|
delay(40);
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-11-13 01:06:54 -04:00
|
|
|
#endif // HIL_MODE
|
2011-11-12 23:51:43 -04:00
|
|
|
|
2011-11-12 23:57:16 -04:00
|
|
|
|
2011-11-13 01:06:54 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE
|
2011-11-12 23:57:16 -04:00
|
|
|
/*
|
|
|
|
test the IMU interface
|
|
|
|
*/
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t
|
|
|
|
test_imu(uint8_t argc, const Menu::arg *argv)
|
2011-11-12 23:57:16 -04:00
|
|
|
{
|
|
|
|
Vector3f gyro;
|
|
|
|
Vector3f accel;
|
|
|
|
|
2011-12-13 03:19:41 -04:00
|
|
|
imu.init(IMU::WARM_START, delay, flash_leds, &timer_scheduler);
|
2011-11-12 23:57:16 -04:00
|
|
|
|
|
|
|
report_imu();
|
2011-12-13 03:19:41 -04:00
|
|
|
imu.init_gyro(delay, flash_leds);
|
2011-11-12 23:57:16 -04:00
|
|
|
report_imu();
|
|
|
|
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
delay(40);
|
|
|
|
|
|
|
|
imu.update();
|
|
|
|
gyro = imu.get_gyro();
|
|
|
|
accel = imu.get_accel();
|
|
|
|
|
|
|
|
Serial.printf_P(PSTR("g %8.4f %8.4f %8.4f"), gyro.x, gyro.y, gyro.z);
|
|
|
|
Serial.printf_P(PSTR(" a %8.4f %8.4f %8.4f\n"), accel.x, accel.y, accel.z);
|
|
|
|
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2011-11-13 01:06:54 -04:00
|
|
|
#endif // HIL_MODE
|
2011-11-12 23:57:16 -04:00
|
|
|
|
|
|
|
|
2011-11-13 01:06:54 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE
|
2011-11-12 23:57:16 -04:00
|
|
|
/*
|
|
|
|
test the DCM code, printing Euler angles
|
|
|
|
*/
|
|
|
|
static int8_t
|
|
|
|
test_dcm_eulers(uint8_t argc, const Menu::arg *argv)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
|
|
|
//Serial.printf_P(PSTR("Calibrating."));
|
|
|
|
|
2011-07-10 21:47:08 -03:00
|
|
|
//dcm.kp_yaw(0.02);
|
|
|
|
//dcm.ki_yaw(0);
|
|
|
|
|
2011-12-13 03:19:41 -04:00
|
|
|
imu.init(IMU::WARM_START, delay, flash_leds, &timer_scheduler);
|
2011-11-12 23:57:16 -04:00
|
|
|
|
2011-02-20 19:09:28 -04:00
|
|
|
report_imu();
|
2011-12-13 03:19:41 -04:00
|
|
|
imu.init_gyro(delay, flash_leds);
|
2011-02-20 19:09:28 -04:00
|
|
|
report_imu();
|
2010-12-19 12:40:33 -04:00
|
|
|
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-02-13 18:32:34 -04:00
|
|
|
//float cos_roll, sin_roll, cos_pitch, sin_pitch, cos_yaw, sin_yaw;
|
2011-06-16 14:03:26 -03:00
|
|
|
fast_loopTimer = millis();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
while(1){
|
2011-06-16 14:03:26 -03:00
|
|
|
//delay(20);
|
2011-11-05 01:41:51 -03:00
|
|
|
if (millis() - fast_loopTimer >=20) {
|
2011-02-10 03:10:24 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
// IMU
|
|
|
|
// ---
|
|
|
|
read_AHRS();
|
2011-06-16 14:03:26 -03:00
|
|
|
medium_loopCounter++;
|
2011-07-10 21:47:08 -03:00
|
|
|
|
2011-06-16 14:03:26 -03:00
|
|
|
if(medium_loopCounter == 4){
|
|
|
|
update_trig();
|
|
|
|
}
|
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
if(medium_loopCounter == 1){
|
2011-06-16 14:03:26 -03:00
|
|
|
medium_loopCounter = 0;
|
2011-11-13 00:35:19 -04:00
|
|
|
Serial.printf_P(PSTR("dcm: %6.1f, %6.1f, %6.1f omega: %6.1f, %6.1f, %6.1f\n"),
|
|
|
|
dcm.roll_sensor/100.0,
|
|
|
|
dcm.pitch_sensor/100.0,
|
|
|
|
dcm.yaw_sensor/100.0,
|
|
|
|
degrees(omega.x),
|
|
|
|
degrees(omega.y),
|
|
|
|
degrees(omega.z));
|
2011-06-16 14:03:26 -03:00
|
|
|
|
|
|
|
if(g.compass_enabled){
|
2010-12-19 12:40:33 -04:00
|
|
|
compass.read(); // Read magnetometer
|
2011-07-10 21:47:08 -03:00
|
|
|
compass.calculate(dcm.get_dcm_matrix());
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
}
|
2011-11-13 00:35:19 -04:00
|
|
|
fast_loopTimer = millis();
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-11-13 01:06:54 -04:00
|
|
|
#endif // HIL_MODE
|
2010-12-19 12:40:33 -04:00
|
|
|
|
|
|
|
static int8_t
|
|
|
|
test_gps(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
while(1){
|
2011-02-24 01:56:59 -04:00
|
|
|
delay(333);
|
|
|
|
|
|
|
|
// Blink GPS LED if we don't have a fix
|
|
|
|
// ------------------------------------
|
|
|
|
update_GPS_light();
|
|
|
|
|
|
|
|
g_gps->update();
|
|
|
|
|
|
|
|
if (g_gps->new_data){
|
|
|
|
Serial.printf_P(PSTR("Lat: %ld, Lon %ld, Alt: %ldm, #sats: %d\n"),
|
|
|
|
g_gps->latitude,
|
|
|
|
g_gps->longitude,
|
|
|
|
g_gps->altitude/100,
|
|
|
|
g_gps->num_sats);
|
2011-05-23 02:53:00 -03:00
|
|
|
g_gps->new_data = false;
|
2011-02-24 01:56:59 -04:00
|
|
|
}else{
|
|
|
|
Serial.print(".");
|
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-24 01:56:59 -04:00
|
|
|
/*
|
2011-12-03 21:55:44 -04:00
|
|
|
//static int8_t
|
|
|
|
//test_dcm(uint8_t argc, const Menu::arg *argv)
|
2010-12-27 19:09:08 -04:00
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
|
|
|
Serial.printf_P(PSTR("Gyro | Accel\n"));
|
|
|
|
Vector3f _cam_vector;
|
|
|
|
Vector3f _out_vector;
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-27 19:09:08 -04:00
|
|
|
G_Dt = .02;
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
for(byte i = 0; i <= 50; i++){
|
|
|
|
delay(20);
|
|
|
|
// IMU
|
|
|
|
// ---
|
|
|
|
read_AHRS();
|
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-27 19:09:08 -04:00
|
|
|
Matrix3f temp = dcm.get_dcm_matrix();
|
|
|
|
Matrix3f temp_t = dcm.get_dcm_transposed();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-27 19:09:08 -04:00
|
|
|
Serial.printf_P(PSTR("dcm\n"
|
2011-01-11 17:16:00 -04:00
|
|
|
"%4.4f \t %4.4f \t %4.4f \n"
|
|
|
|
"%4.4f \t %4.4f \t %4.4f \n"
|
|
|
|
"%4.4f \t %4.4f \t %4.4f \n\n"),
|
|
|
|
temp.a.x, temp.a.y, temp.a.z,
|
|
|
|
temp.b.x, temp.b.y, temp.b.z,
|
|
|
|
temp.c.x, temp.c.y, temp.c.z);
|
2010-12-27 19:09:08 -04:00
|
|
|
|
|
|
|
int _pitch = degrees(-asin(temp.c.x));
|
|
|
|
int _roll = degrees(atan2(temp.c.y, temp.c.z));
|
|
|
|
int _yaw = degrees(atan2(temp.b.x, temp.a.x));
|
|
|
|
Serial.printf_P(PSTR( "angles\n"
|
|
|
|
"%d \t %d \t %d\n\n"),
|
2011-02-17 05:36:33 -04:00
|
|
|
_pitch,
|
2011-01-11 17:16:00 -04:00
|
|
|
_roll,
|
|
|
|
_yaw);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-27 19:09:08 -04:00
|
|
|
//_out_vector = _cam_vector * temp;
|
|
|
|
//Serial.printf_P(PSTR( "cam\n"
|
|
|
|
// "%d \t %d \t %d\n\n"),
|
|
|
|
// (int)temp.a.x * 100, (int)temp.a.y * 100, (int)temp.a.x * 100);
|
|
|
|
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-02-24 01:56:59 -04:00
|
|
|
*/
|
2010-12-19 12:40:33 -04:00
|
|
|
/*
|
2011-12-03 21:55:44 -04:00
|
|
|
//static int8_t
|
|
|
|
//test_dcm(uint8_t argc, const Menu::arg *argv)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
|
|
|
Serial.printf_P(PSTR("Gyro | Accel\n"));
|
|
|
|
delay(1000);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
while(1){
|
|
|
|
Vector3f accels = dcm.get_accel();
|
|
|
|
Serial.print("accels.z:");
|
|
|
|
Serial.print(accels.z);
|
|
|
|
Serial.print("omega.z:");
|
|
|
|
Serial.print(omega.z);
|
|
|
|
delay(100);
|
|
|
|
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
2011-02-24 01:56:59 -04:00
|
|
|
|
2011-03-07 02:00:27 -04:00
|
|
|
/*static int8_t
|
2011-12-03 21:55:44 -04:00
|
|
|
//test_omega(uint8_t argc, const Menu::arg *argv)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
2011-01-02 16:34:42 -04:00
|
|
|
static byte ts_num;
|
|
|
|
float old_yaw;
|
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
|
|
|
Serial.printf_P(PSTR("Omega"));
|
|
|
|
delay(1000);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-02 16:34:42 -04:00
|
|
|
G_Dt = .02;
|
2010-12-19 12:40:33 -04:00
|
|
|
|
|
|
|
while(1){
|
2011-01-02 16:34:42 -04:00
|
|
|
delay(20);
|
|
|
|
// IMU
|
|
|
|
// ---
|
|
|
|
read_AHRS();
|
2011-03-06 20:57:06 -04:00
|
|
|
|
2011-01-02 16:34:42 -04:00
|
|
|
float my_oz = (dcm.yaw - old_yaw) * 50;
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-02 16:34:42 -04:00
|
|
|
old_yaw = dcm.yaw;
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-02 16:34:42 -04:00
|
|
|
ts_num++;
|
|
|
|
if (ts_num > 2){
|
|
|
|
ts_num = 0;
|
|
|
|
//Serial.printf_P(PSTR("R: %4.4f\tP: %4.4f\tY: %4.4f\tY: %4.4f\n"), omega.x, omega.y, omega.z, my_oz);
|
|
|
|
Serial.printf_P(PSTR(" Yaw: %ld\tY: %4.4f\tY: %4.4f\n"), dcm.yaw_sensor, omega.z, my_oz);
|
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
2011-01-02 16:34:42 -04:00
|
|
|
return (0);
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
2011-03-06 20:57:06 -04:00
|
|
|
//*/
|
2010-12-19 12:40:33 -04:00
|
|
|
|
|
|
|
static int8_t
|
|
|
|
test_battery(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
|
|
|
#if BATTERY_EVENT == 1
|
|
|
|
for (int i = 0; i < 20; i++){
|
|
|
|
delay(20);
|
|
|
|
read_battery();
|
|
|
|
}
|
2011-05-21 03:51:16 -03:00
|
|
|
Serial.printf_P(PSTR("Volts: 1:%2.2f, 2:%2.2f, 3:%2.2f, 4:%2.2f\n"),
|
2011-02-24 01:56:59 -04:00
|
|
|
battery_voltage1,
|
|
|
|
battery_voltage2,
|
|
|
|
battery_voltage3,
|
|
|
|
battery_voltage4);
|
2010-12-19 12:40:33 -04:00
|
|
|
#else
|
|
|
|
Serial.printf_P(PSTR("Not enabled\n"));
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
#endif
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2011-04-17 20:08:16 -03:00
|
|
|
static int8_t
|
|
|
|
test_tuning(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
delay(200);
|
|
|
|
read_radio();
|
2011-09-10 19:16:51 -03:00
|
|
|
tuning();
|
|
|
|
Serial.printf_P(PSTR("tune: %1.3f\n"), tuning_value);
|
2011-06-16 14:03:26 -03:00
|
|
|
|
2011-04-17 20:08:16 -03:00
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-16 23:44:12 -04:00
|
|
|
static int8_t
|
|
|
|
test_current(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
|
|
|
print_hit_enter();
|
2011-09-19 18:02:42 -03:00
|
|
|
//delta_ms_medium_loop = 100;
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-16 23:44:12 -04:00
|
|
|
while(1){
|
2011-01-17 22:48:44 -04:00
|
|
|
delay(100);
|
|
|
|
read_radio();
|
2011-05-09 12:46:56 -03:00
|
|
|
read_battery();
|
2011-02-24 01:56:59 -04:00
|
|
|
Serial.printf_P(PSTR("V: %4.4f, A: %4.4f, mAh: %4.4f\n"),
|
2011-05-09 14:40:32 -03:00
|
|
|
battery_voltage,
|
2011-02-24 01:56:59 -04:00
|
|
|
current_amps,
|
|
|
|
current_total);
|
2011-01-17 22:48:44 -04:00
|
|
|
|
2011-05-09 12:46:56 -03:00
|
|
|
APM_RC.OutputCh(CH_1, g.rc_3.radio_in);
|
|
|
|
APM_RC.OutputCh(CH_2, g.rc_3.radio_in);
|
|
|
|
APM_RC.OutputCh(CH_3, g.rc_3.radio_in);
|
|
|
|
APM_RC.OutputCh(CH_4, g.rc_3.radio_in);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-01-16 23:44:12 -04:00
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-19 18:02:00 -04:00
|
|
|
/*
|
2011-12-03 21:55:44 -04:00
|
|
|
//static int8_t
|
2011-11-19 18:02:00 -04:00
|
|
|
//test_relay(uint8_t argc, const Menu::arg *argv)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
while(1){
|
2011-02-24 01:56:59 -04:00
|
|
|
Serial.printf_P(PSTR("Relay on\n"));
|
2011-10-02 09:52:02 -03:00
|
|
|
relay.on();
|
2010-12-19 12:40:33 -04:00
|
|
|
delay(3000);
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-02-24 01:56:59 -04:00
|
|
|
Serial.printf_P(PSTR("Relay off\n"));
|
2011-10-02 09:52:02 -03:00
|
|
|
relay.off();
|
2010-12-19 12:40:33 -04:00
|
|
|
delay(3000);
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-11-19 18:02:00 -04:00
|
|
|
*/
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t
|
|
|
|
test_wp(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
|
|
|
delay(1000);
|
|
|
|
|
|
|
|
// save the alitude above home option
|
2011-08-05 13:47:44 -03:00
|
|
|
Serial.printf_P(PSTR("Hold alt "));
|
2011-02-25 01:33:39 -04:00
|
|
|
if(g.RTL_altitude < 0){
|
2011-03-26 03:35:52 -03:00
|
|
|
Serial.printf_P(PSTR("\n"));
|
2010-12-19 12:40:33 -04:00
|
|
|
}else{
|
2011-03-26 03:35:52 -03:00
|
|
|
Serial.printf_P(PSTR("of %dm\n"), (int)g.RTL_altitude / 100);
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-11-05 01:41:51 -03:00
|
|
|
Serial.printf_P(PSTR("%d wp\n"), (int)g.command_total);
|
2011-08-05 13:47:44 -03:00
|
|
|
Serial.printf_P(PSTR("Hit rad: %d\n"), (int)g.waypoint_radius);
|
2011-03-26 03:35:52 -03:00
|
|
|
//Serial.printf_P(PSTR("Loiter radius: %d\n\n"), (int)g.loiter_radius);
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-03-26 03:35:52 -03:00
|
|
|
report_wp();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2011-11-19 18:02:00 -04:00
|
|
|
//static int8_t test_rawgps(uint8_t argc, const Menu::arg *argv) {
|
2011-11-16 04:20:14 -04:00
|
|
|
/*
|
2011-06-20 14:11:54 -03:00
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
|
|
|
while(1){
|
|
|
|
if (Serial3.available()){
|
2011-11-12 23:44:36 -04:00
|
|
|
digitalWrite(B_LED_PIN, LED_ON); // Blink Yellow LED if we are sending data to GPS
|
2011-06-20 14:11:54 -03:00
|
|
|
Serial1.write(Serial3.read());
|
2011-11-12 23:44:36 -04:00
|
|
|
digitalWrite(B_LED_PIN, LED_OFF);
|
2011-06-20 14:11:54 -03:00
|
|
|
}
|
|
|
|
if (Serial1.available()){
|
2011-11-12 23:44:36 -04:00
|
|
|
digitalWrite(C_LED_PIN, LED_ON); // Blink Red LED if we are receiving data from GPS
|
2011-06-20 14:11:54 -03:00
|
|
|
Serial3.write(Serial1.read());
|
2011-11-12 23:44:36 -04:00
|
|
|
digitalWrite(C_LED_PIN, LED_OFF);
|
2011-06-20 14:11:54 -03:00
|
|
|
}
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
2011-11-16 04:20:14 -04:00
|
|
|
*/
|
2011-11-19 18:02:00 -04:00
|
|
|
//}
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2011-10-02 15:36:23 -03:00
|
|
|
/*static int8_t
|
2011-11-19 18:02:00 -04:00
|
|
|
//test_xbee(uint8_t argc, const Menu::arg *argv)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
|
|
|
Serial.printf_P(PSTR("Begin XBee X-CTU Range and RSSI Test:\n"));
|
2011-03-10 15:25:54 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
while(1){
|
2011-03-11 19:03:56 -04:00
|
|
|
if (Serial3.available())
|
2011-03-10 17:27:22 -04:00
|
|
|
Serial3.write(Serial3.read());
|
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-02 15:36:23 -03:00
|
|
|
*/
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2011-03-03 07:39:52 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t
|
2011-06-03 15:49:13 -03:00
|
|
|
test_baro(uint8_t argc, const Menu::arg *argv)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
|
|
|
print_hit_enter();
|
2011-02-24 01:56:59 -04:00
|
|
|
init_barometer();
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
while(1){
|
2011-11-01 13:29:55 -03:00
|
|
|
delay(100);
|
2011-11-30 00:37:50 -04:00
|
|
|
int32_t alt = read_barometer(); /* calls barometer.read() */
|
|
|
|
int32_t pres = barometer.get_pressure();
|
|
|
|
int16_t temp = barometer.get_temperature();
|
|
|
|
int32_t raw_pres = barometer.get_raw_pressure();
|
|
|
|
int32_t raw_temp = barometer.get_raw_temp();
|
|
|
|
Serial.printf_P(PSTR("alt: %ldcm, pres: %ldmbar, temp: %d/100degC,"
|
|
|
|
" raw pres: %ld, raw temp: %ld\n"),
|
|
|
|
alt, pres ,temp, raw_pres, raw_temp);
|
2010-12-19 12:40:33 -04:00
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-03-03 07:39:52 -04:00
|
|
|
#endif
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2011-12-03 19:39:02 -04:00
|
|
|
|
2010-12-19 12:40:33 -04:00
|
|
|
static int8_t
|
2011-12-03 19:39:02 -04:00
|
|
|
test_mag(uint8_t argc, const Menu::arg *argv)
|
2011-04-08 16:13:31 -03:00
|
|
|
{
|
|
|
|
if(g.compass_enabled) {
|
|
|
|
//Serial.printf_P(PSTR("MAG_ORIENTATION: %d\n"), MAG_ORIENTATION);
|
|
|
|
|
|
|
|
print_hit_enter();
|
|
|
|
|
|
|
|
while(1){
|
2011-07-10 21:47:08 -03:00
|
|
|
delay(100);
|
2011-04-08 16:13:31 -03:00
|
|
|
compass.read();
|
2011-07-10 21:47:08 -03:00
|
|
|
compass.calculate(dcm.get_dcm_matrix());
|
2011-04-08 16:13:31 -03:00
|
|
|
Vector3f maggy = compass.get_offsets();
|
2011-08-05 13:47:44 -03:00
|
|
|
Serial.printf_P(PSTR("Heading: %ld, XYZ: %d, %d, %d\n"),
|
2011-04-08 16:13:31 -03:00
|
|
|
(wrap_360(ToDeg(compass.heading) * 100)) /100,
|
|
|
|
compass.mag_x,
|
|
|
|
compass.mag_y,
|
2011-08-05 13:47:44 -03:00
|
|
|
compass.mag_z);
|
2011-04-08 16:13:31 -03:00
|
|
|
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
}
|
2011-04-08 16:13:31 -03:00
|
|
|
} else {
|
|
|
|
Serial.printf_P(PSTR("Compass: "));
|
|
|
|
print_enabled(false);
|
|
|
|
return (0);
|
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
2011-12-03 19:39:02 -04:00
|
|
|
|
2011-07-13 23:01:51 -03:00
|
|
|
/*
|
2011-12-07 01:03:56 -04:00
|
|
|
//static int8_t
|
2011-11-19 18:02:00 -04:00
|
|
|
//test_reverse(uint8_t argc, const Menu::arg *argv)
|
2011-07-13 23:01:51 -03:00
|
|
|
{
|
|
|
|
print_hit_enter();
|
|
|
|
delay(1000);
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
delay(20);
|
|
|
|
|
|
|
|
// Filters radio input - adjust filters in the radio.pde file
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
g.rc_4.set_reverse(0);
|
|
|
|
g.rc_4.set_pwm(APM_RC.InputCh(CH_4));
|
|
|
|
g.rc_4.servo_out = g.rc_4.control_in;
|
|
|
|
g.rc_4.calc_pwm();
|
|
|
|
Serial.printf_P(PSTR("PWM:%d input: %d\toutput%d "),
|
|
|
|
APM_RC.InputCh(CH_4),
|
|
|
|
g.rc_4.control_in,
|
|
|
|
g.rc_4.radio_out);
|
|
|
|
APM_RC.OutputCh(CH_6, g.rc_4.radio_out);
|
|
|
|
|
|
|
|
|
|
|
|
g.rc_4.set_reverse(1);
|
|
|
|
g.rc_4.set_pwm(APM_RC.InputCh(CH_4));
|
|
|
|
g.rc_4.servo_out = g.rc_4.control_in;
|
|
|
|
g.rc_4.calc_pwm();
|
|
|
|
Serial.printf_P(PSTR("\trev input: %d\toutput%d\n"),
|
|
|
|
g.rc_4.control_in,
|
|
|
|
g.rc_4.radio_out);
|
|
|
|
|
|
|
|
APM_RC.OutputCh(CH_7, g.rc_4.radio_out);
|
|
|
|
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
g.rc_4.set_reverse(0);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}*/
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2011-03-17 22:50:27 -03:00
|
|
|
/*
|
|
|
|
test the sonar
|
|
|
|
*/
|
2011-12-11 10:25:03 -04:00
|
|
|
#if HIL_MODE != HIL_MODE_ATTITUDE && CONFIG_SONAR == ENABLED
|
2011-06-03 15:49:13 -03:00
|
|
|
static int8_t
|
2011-03-17 22:50:27 -03:00
|
|
|
test_sonar(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
2011-06-16 14:03:26 -03:00
|
|
|
if(g.sonar_enabled == false){
|
|
|
|
Serial.printf_P(PSTR("Sonar disabled\n"));
|
|
|
|
return (0);
|
|
|
|
}
|
2011-12-11 03:40:59 -04:00
|
|
|
|
|
|
|
// make sure sonar is initialised
|
|
|
|
init_sonar();
|
2011-06-16 14:03:26 -03:00
|
|
|
|
2011-03-17 22:50:27 -03:00
|
|
|
print_hit_enter();
|
|
|
|
while(1) {
|
|
|
|
delay(100);
|
2011-06-03 15:49:13 -03:00
|
|
|
|
|
|
|
Serial.printf_P(PSTR("Sonar: %d cm\n"), sonar.read());
|
2011-07-17 16:08:17 -03:00
|
|
|
//Serial.printf_P(PSTR("Sonar, %d, %d\n"), sonar.read(), sonar.raw_value);
|
2011-06-03 15:49:13 -03:00
|
|
|
|
2011-03-17 22:50:27 -03:00
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
2011-06-16 14:03:26 -03:00
|
|
|
|
2011-03-17 22:50:27 -03:00
|
|
|
return (0);
|
|
|
|
}
|
2011-11-12 23:54:42 -04:00
|
|
|
#endif
|
2011-03-17 22:50:27 -03:00
|
|
|
|
2011-07-21 20:14:53 -03:00
|
|
|
#ifdef OPTFLOW_ENABLED
|
|
|
|
static int8_t
|
|
|
|
test_optflow(uint8_t argc, const Menu::arg *argv)
|
|
|
|
{
|
2011-09-16 03:33:00 -03:00
|
|
|
///*
|
2011-07-21 20:14:53 -03:00
|
|
|
if(g.optflow_enabled) {
|
|
|
|
Serial.printf_P(PSTR("man id: %d\t"),optflow.read_register(ADNS3080_PRODUCT_ID));
|
|
|
|
print_hit_enter();
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
delay(200);
|
|
|
|
optflow.read();
|
|
|
|
Log_Write_Optflow();
|
|
|
|
Serial.printf_P(PSTR("x/dx: %d/%d\t y/dy %d/%d\t squal:%d\n"),
|
|
|
|
optflow.x,
|
|
|
|
optflow.dx,
|
|
|
|
optflow.y,
|
|
|
|
optflow.dy,
|
|
|
|
optflow.surface_quality);
|
|
|
|
|
|
|
|
if(Serial.available() > 0){
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Serial.printf_P(PSTR("OptFlow: "));
|
|
|
|
print_enabled(false);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-08-05 13:47:44 -03:00
|
|
|
/*
|
2011-03-26 03:35:52 -03:00
|
|
|
static int8_t
|
2011-11-19 18:02:00 -04:00
|
|
|
//test_mission(uint8_t argc, const Menu::arg *argv)
|
2011-03-26 03:35:52 -03:00
|
|
|
{
|
|
|
|
//write out a basic mission to the EEPROM
|
2011-06-16 14:03:26 -03:00
|
|
|
|
2011-08-05 13:47:44 -03:00
|
|
|
//{
|
|
|
|
// uint8_t id; ///< command id
|
|
|
|
// uint8_t options; ///< options bitmask (1<<0 = relative altitude)
|
|
|
|
// uint8_t p1; ///< param 1
|
|
|
|
// int32_t alt; ///< param 2 - Altitude in centimeters (meters * 100)
|
|
|
|
// int32_t lat; ///< param 3 - Lattitude * 10**7
|
|
|
|
// int32_t lng; ///< param 4 - Longitude * 10**7
|
|
|
|
//}
|
2011-03-26 03:35:52 -03:00
|
|
|
|
2011-03-27 18:26:34 -03:00
|
|
|
// clear home
|
|
|
|
{Location t = {0, 0, 0, 0, 0, 0};
|
2011-11-20 03:16:57 -04:00
|
|
|
set_cmd_with_index(t,0);}
|
2011-03-26 03:35:52 -03:00
|
|
|
|
2011-05-14 23:02:09 -03:00
|
|
|
// CMD opt pitch alt/cm
|
|
|
|
{Location t = {MAV_CMD_NAV_TAKEOFF, WP_OPTION_RELATIVE, 0, 100, 0, 0};
|
2011-11-20 03:16:57 -04:00
|
|
|
set_cmd_with_index(t,1);}
|
2011-03-27 18:26:34 -03:00
|
|
|
|
2011-04-08 16:13:31 -03:00
|
|
|
if (!strcmp_P(argv[1].str, PSTR("wp"))) {
|
|
|
|
|
|
|
|
// CMD opt
|
|
|
|
{Location t = {MAV_CMD_NAV_WAYPOINT, WP_OPTION_RELATIVE, 15, 0, 0, 0};
|
2011-11-20 03:16:57 -04:00
|
|
|
set_cmd_with_index(t,2);}
|
2011-04-08 16:13:31 -03:00
|
|
|
// CMD opt
|
|
|
|
{Location t = {MAV_CMD_NAV_RETURN_TO_LAUNCH, WP_OPTION_YAW, 0, 0, 0, 0};
|
2011-11-20 03:16:57 -04:00
|
|
|
set_cmd_with_index(t,3);}
|
2011-04-08 16:13:31 -03:00
|
|
|
|
|
|
|
// CMD opt
|
|
|
|
{Location t = {MAV_CMD_NAV_LAND, 0, 0, 0, 0, 0};
|
2011-11-20 03:16:57 -04:00
|
|
|
set_cmd_with_index(t,4);}
|
2011-03-27 18:26:34 -03:00
|
|
|
|
2011-04-08 16:13:31 -03:00
|
|
|
} else {
|
|
|
|
//2250 = 25 meteres
|
|
|
|
// CMD opt p1 //alt //NS //WE
|
2011-05-14 23:02:09 -03:00
|
|
|
{Location t = {MAV_CMD_NAV_LOITER_TIME, 0, 10, 0, 0, 0}; // 19
|
2011-11-20 03:16:57 -04:00
|
|
|
set_cmd_with_index(t,2);}
|
2011-03-27 18:26:34 -03:00
|
|
|
|
2011-04-08 16:13:31 -03:00
|
|
|
// CMD opt dir angle/deg deg/s relative
|
|
|
|
{Location t = {MAV_CMD_CONDITION_YAW, 0, 1, 360, 60, 1};
|
2011-11-20 03:16:57 -04:00
|
|
|
set_cmd_with_index(t,3);}
|
2011-03-26 03:35:52 -03:00
|
|
|
|
2011-04-08 16:13:31 -03:00
|
|
|
// CMD opt
|
|
|
|
{Location t = {MAV_CMD_NAV_LAND, 0, 0, 0, 0, 0};
|
2011-11-20 03:16:57 -04:00
|
|
|
set_cmd_with_index(t,4);}
|
2011-04-08 16:13:31 -03:00
|
|
|
|
|
|
|
}
|
2011-03-26 03:35:52 -03:00
|
|
|
|
|
|
|
g.RTL_altitude.set_and_save(300);
|
2011-11-05 01:41:51 -03:00
|
|
|
g.command_total.set_and_save(4);
|
2011-03-26 03:35:52 -03:00
|
|
|
g.waypoint_radius.set_and_save(3);
|
|
|
|
|
|
|
|
test_wp(NULL, NULL);
|
2011-06-16 14:03:26 -03:00
|
|
|
return (0);
|
2011-03-26 03:35:52 -03:00
|
|
|
}
|
2011-08-05 13:47:44 -03:00
|
|
|
*/
|
2011-09-10 19:16:51 -03:00
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static void print_hit_enter()
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
|
|
|
Serial.printf_P(PSTR("Hit Enter to exit.\n\n"));
|
|
|
|
}
|
2011-09-10 19:16:51 -03:00
|
|
|
|
2011-08-05 13:47:44 -03:00
|
|
|
/*
|
2011-11-19 18:02:00 -04:00
|
|
|
//static void fake_out_gps()
|
2011-02-10 03:10:24 -04:00
|
|
|
{
|
|
|
|
static float rads;
|
2011-02-17 05:36:33 -04:00
|
|
|
g_gps->new_data = true;
|
|
|
|
g_gps->fix = true;
|
|
|
|
|
2011-05-06 21:21:16 -03:00
|
|
|
//int length = g.rc_6.control_in;
|
2011-02-10 03:10:24 -04:00
|
|
|
rads += .05;
|
2011-02-17 05:36:33 -04:00
|
|
|
|
2011-02-10 03:10:24 -04:00
|
|
|
if (rads > 6.28){
|
|
|
|
rads = 0;
|
|
|
|
}
|
2011-02-17 05:36:33 -04:00
|
|
|
|
|
|
|
g_gps->latitude = 377696000; // Y
|
|
|
|
g_gps->longitude = -1224319000; // X
|
|
|
|
g_gps->altitude = 9000; // meters * 100
|
|
|
|
|
2011-02-10 03:10:24 -04:00
|
|
|
//next_WP.lng = home.lng - length * sin(rads); // X
|
|
|
|
//next_WP.lat = home.lat + length * cos(rads); // Y
|
|
|
|
}
|
|
|
|
|
2011-08-05 13:47:44 -03:00
|
|
|
*/
|
2011-11-10 03:28:50 -04:00
|
|
|
/*
|
2011-11-19 18:02:00 -04:00
|
|
|
//static void print_motor_out(){
|
2011-02-17 05:36:33 -04:00
|
|
|
Serial.printf("out: R: %d, L: %d F: %d B: %d\n",
|
2011-05-23 23:14:18 -03:00
|
|
|
(motor_out[CH_1] - g.rc_3.radio_min),
|
|
|
|
(motor_out[CH_2] - g.rc_3.radio_min),
|
|
|
|
(motor_out[CH_3] - g.rc_3.radio_min),
|
|
|
|
(motor_out[CH_4] - g.rc_3.radio_min));
|
2011-02-17 05:36:33 -04:00
|
|
|
}
|
2011-11-10 03:28:50 -04:00
|
|
|
*/
|
2011-07-17 07:34:05 -03:00
|
|
|
#endif // CLI_ENABLED
|