diff --git a/ArduPlane/Parameters.pde b/ArduPlane/Parameters.pde index b51cce0efa..07f6f0ef17 100644 --- a/ArduPlane/Parameters.pde +++ b/ArduPlane/Parameters.pde @@ -542,10 +542,10 @@ const AP_Param::Info var_info[] PROGMEM = { // @Param: MAG_ENABLE // @DisplayName: Enable Compass - // @Description: Setting this to Enabled(1) will enable the compass. Setting this to Disabled(0) will disable the compass + // @Description: Setting this to Enabled(1) will enable the compass. Setting this to Disabled(0) will disable the compass. Note that this is separate from COMPASS_USE. This will enable the low level senor, and will enable logging of magnetometer data. To use the compass for navigation you must also set COMPASS_USE to 1. // @Values: 0:Disabled,1:Enabled // @User: Standard - GSCALAR(compass_enabled, "MAG_ENABLE", MAGNETOMETER), + GSCALAR(compass_enabled, "MAG_ENABLE", 1), GSCALAR(flap_1_percent, "FLAP_1_PERCNT", FLAP_1_PERCENT), GSCALAR(flap_1_speed, "FLAP_1_SPEED", FLAP_1_SPEED), diff --git a/ArduPlane/config.h b/ArduPlane/config.h index a5e6950a8b..e1429e5e13 100644 --- a/ArduPlane/config.h +++ b/ArduPlane/config.h @@ -119,7 +119,6 @@ # define CONFIG_PITOT_SOURCE PITOT_SOURCE_ANALOG_PIN # define CONFIG_PITOT_SOURCE_ANALOG_PIN 0 # define CONFIG_PITOT_SCALING 4.0 - # define MAGNETOMETER ENABLED # ifdef APM2_BETA_HARDWARE # define CONFIG_BARO AP_BARO_BMP085 # else // APM2 Production Hardware (default) @@ -139,7 +138,6 @@ # define CONFIG_PITOT_SOURCE PITOT_SOURCE_ANALOG_PIN # define CONFIG_PITOT_SOURCE_ANALOG_PIN 0 # define CONFIG_PITOT_SCALING 4.0 - # define MAGNETOMETER ENABLED # define CONFIG_BARO AP_BARO_HIL # define CONFIG_COMPASS AP_COMPASS_HIL #elif CONFIG_HAL_BOARD == HAL_BOARD_PX4 @@ -155,7 +153,6 @@ # define CONFIG_PITOT_SOURCE PITOT_SOURCE_ANALOG_PIN # define CONFIG_PITOT_SOURCE_ANALOG_PIN 11 # define CONFIG_PITOT_SCALING (4.0*5.0/3.3) - # define MAGNETOMETER ENABLED # define CONFIG_BARO AP_BARO_PX4 # define CONFIG_COMPASS AP_COMPASS_PX4 # define SERIAL0_BAUD 115200 @@ -264,12 +261,6 @@ # define INPUT_VOLTAGE 4.68 // 4.68 is the average value for a sample set. This is the value at the processor with 5.02 applied at the servo rail #endif -////////////////////////////////////////////////////////////////////////////// -// MAGNETOMETER -#ifndef MAGNETOMETER - # define MAGNETOMETER DISABLED -#endif - ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // RADIO CONFIGURATION