mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-25 10:08:28 -04:00
2.0.12, minor fixes.
git-svn-id: https://arducopter.googlecode.com/svn/trunk@2463 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
parent
b640e7b68c
commit
84ef135856
@ -576,8 +576,11 @@ void medium_loop()
|
|||||||
medium_loopCounter++;
|
medium_loopCounter++;
|
||||||
|
|
||||||
// hack to stop navigation in Simple mode
|
// hack to stop navigation in Simple mode
|
||||||
if (control_mode == SIMPLE)
|
if (control_mode == SIMPLE){
|
||||||
|
// clear GPS data
|
||||||
|
g_gps->new_data = false;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
// Auto control modes:
|
// Auto control modes:
|
||||||
if(g_gps->new_data){
|
if(g_gps->new_data){
|
||||||
@ -1240,15 +1243,15 @@ void update_alt()
|
|||||||
//sonar_alt = sonar.read();
|
//sonar_alt = sonar.read();
|
||||||
|
|
||||||
// decide if we're using sonar
|
// decide if we're using sonar
|
||||||
//if ((baro_alt < 1200) || sonar_alt < 300){
|
if ((baro_alt < 1200) || sonar_alt < 300){
|
||||||
if (baro_alt < 700){
|
//if (baro_alt < 700){
|
||||||
// correct alt for angle of the sonar
|
// correct alt for angle of the sonar
|
||||||
float temp = cos_pitch_x * cos_roll_x;
|
float temp = cos_pitch_x * cos_roll_x;
|
||||||
temp = max(temp, 0.707);
|
temp = max(temp, 0.707);
|
||||||
|
|
||||||
sonar_alt = (float)sonar_alt * temp;
|
sonar_alt = (float)sonar_alt * temp;
|
||||||
|
|
||||||
if(sonar_alt < 400){
|
if(sonar_alt < 450){
|
||||||
altitude_sensor = SONAR;
|
altitude_sensor = SONAR;
|
||||||
baro_alt_offset = sonar_alt - baro_alt;
|
baro_alt_offset = sonar_alt - baro_alt;
|
||||||
}
|
}
|
||||||
|
@ -8,16 +8,17 @@
|
|||||||
byte mavdelay = 0;
|
byte mavdelay = 0;
|
||||||
|
|
||||||
|
|
||||||
// what does this do?
|
|
||||||
static uint8_t mavlink_check_target(uint8_t sysid, uint8_t compid)
|
static uint8_t mavlink_check_target(uint8_t sysid, uint8_t compid)
|
||||||
{
|
{
|
||||||
//Serial.print("target = "); Serial.print(sysid, DEC); Serial.print("\tcomp = "); Serial.println(compid, DEC);
|
//Serial.print("target = "); Serial.print(sysid, DEC); Serial.print("\tcomp = "); Serial.println(compid, DEC);
|
||||||
if (sysid != mavlink_system.sysid){
|
if (sysid != mavlink_system.sysid){
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
}else if(compid != mavlink_system.compid){
|
// Currently we are not checking for correct compid since APM is not passing mavlink info to any subsystem
|
||||||
gcs.send_text_P(SEVERITY_LOW,PSTR("component id mismatch"));
|
// If it is addressed to our system ID we assume it is for us
|
||||||
return 0; // XXX currently not receiving correct compid from gcs
|
//}else if(compid != mavlink_system.compid){
|
||||||
|
// gcs.send_text_P(SEVERITY_LOW,PSTR("component id mismatch"));
|
||||||
|
// return 1; // XXX currently not receiving correct compid from gcs
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
return 0; // no error
|
return 0; // no error
|
||||||
@ -70,7 +71,7 @@ void mavlink_send_message(mavlink_channel_t chan, uint8_t id, uint32_t param, ui
|
|||||||
}
|
}
|
||||||
|
|
||||||
uint8_t status = MAV_STATE_ACTIVE;
|
uint8_t status = MAV_STATE_ACTIVE;
|
||||||
uint16_t battery_remaining = 10.0 * (float)(g.pack_capacity - current_total)/g.pack_capacity; //Mavlink scaling 100% = 1000
|
uint16_t battery_remaining = 1000.0 * (float)(g.pack_capacity - current_total)/(float)g.pack_capacity; //Mavlink scaling 100% = 1000
|
||||||
uint8_t motor_block = false;
|
uint8_t motor_block = false;
|
||||||
|
|
||||||
mavlink_msg_sys_status_send(
|
mavlink_msg_sys_status_send(
|
||||||
@ -80,7 +81,7 @@ void mavlink_send_message(mavlink_channel_t chan, uint8_t id, uint32_t param, ui
|
|||||||
status,
|
status,
|
||||||
load * 1000,
|
load * 1000,
|
||||||
battery_voltage * 1000,
|
battery_voltage * 1000,
|
||||||
motor_block,
|
battery_remaining,
|
||||||
packet_drops);
|
packet_drops);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -508,10 +508,10 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// if we are using fast, Disable Medium
|
// if we are using fast, Disable Medium
|
||||||
#if LOG_ATTITUDE_FAST == ENABLED
|
//#if LOG_ATTITUDE_FAST == ENABLED
|
||||||
#undef LOG_ATTITUDE_MED
|
// #undef LOG_ATTITUDE_MED
|
||||||
#define LOG_ATTITUDE_MED DISABLED
|
// #define LOG_ATTITUDE_MED DISABLED
|
||||||
#endif
|
//#endif
|
||||||
|
|
||||||
#ifndef DEBUG_PORT
|
#ifndef DEBUG_PORT
|
||||||
# define DEBUG_PORT 0
|
# define DEBUG_PORT 0
|
||||||
|
@ -267,12 +267,6 @@
|
|||||||
#define BATTERY_VOLTAGE(x) (x*(INPUT_VOLTAGE/1024.0))*VOLT_DIV_RATIO
|
#define BATTERY_VOLTAGE(x) (x*(INPUT_VOLTAGE/1024.0))*VOLT_DIV_RATIO
|
||||||
#define CURRENT_AMPS(x) ((x*(INPUT_VOLTAGE/1024.0))-CURR_AMPS_OFFSET)*CURR_AMP_PER_VOLT
|
#define CURRENT_AMPS(x) ((x*(INPUT_VOLTAGE/1024.0))-CURR_AMPS_OFFSET)*CURR_AMP_PER_VOLT
|
||||||
|
|
||||||
#define AIRSPEED_CH 7 // The external ADC channel for the airspeed sensor
|
|
||||||
#define BATTERY_PIN1 0 // These are the pins for the voltage dividers
|
|
||||||
#define BATTERY_PIN2 1
|
|
||||||
#define BATTERY_PIN3 2
|
|
||||||
#define BATTERY_PIN4 3
|
|
||||||
|
|
||||||
/* ************************************************************** */
|
/* ************************************************************** */
|
||||||
/* Expansion PIN's that people can use for various things. */
|
/* Expansion PIN's that people can use for various things. */
|
||||||
|
|
||||||
@ -307,6 +301,14 @@
|
|||||||
|
|
||||||
#define RELAY_PIN 47
|
#define RELAY_PIN 47
|
||||||
|
|
||||||
|
#define AIRSPEED_CH 7 // The external ADC channel for the airspeed sensor
|
||||||
|
#define BATTERY_PIN1 0 // These are the pins for the voltage dividers
|
||||||
|
#define BATTERY_PIN2 1
|
||||||
|
#define BATTERY_PIN3 2
|
||||||
|
#define BATTERY_PIN4 3
|
||||||
|
#define PIEZO_PIN AN5 //Last pin on the back ADC connector
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// sonar
|
// sonar
|
||||||
#define SonarToCm(x) (x*1.26) // Sonar raw value to centimeters
|
#define SonarToCm(x) (x*1.26) // Sonar raw value to centimeters
|
||||||
|
@ -375,11 +375,14 @@ setup_compass(uint8_t argc, const Menu::arg *argv)
|
|||||||
static int8_t
|
static int8_t
|
||||||
setup_batt_monitor(uint8_t argc, const Menu::arg *argv)
|
setup_batt_monitor(uint8_t argc, const Menu::arg *argv)
|
||||||
{
|
{
|
||||||
if(argv[1].i >= 0 && argv[1].i <= 4){
|
if (!strcmp_P(argv[1].str, PSTR("off"))) {
|
||||||
|
g.battery_monitoring.set_and_save(0);
|
||||||
|
|
||||||
|
} else if(argv[1].i > 0 && argv[1].i <= 4){
|
||||||
g.battery_monitoring.set_and_save(argv[1].i);
|
g.battery_monitoring.set_and_save(argv[1].i);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Serial.printf_P(PSTR("\nOptions: 0-4"));
|
Serial.printf_P(PSTR("\nOptions: off, 1-4"));
|
||||||
}
|
}
|
||||||
|
|
||||||
report_batt_monitor();
|
report_batt_monitor();
|
||||||
|
@ -37,7 +37,7 @@ const struct Menu::command main_menu_commands[] PROGMEM = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Create the top-level menu object.
|
// Create the top-level menu object.
|
||||||
MENU(main_menu, "AC 2.0.21 Beta", main_menu_commands);
|
MENU(main_menu, "AC 2.0.22 Beta", main_menu_commands);
|
||||||
|
|
||||||
void init_ardupilot()
|
void init_ardupilot()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user