mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 00:28:30 -04:00
Plane: enable compass on all boards by default
if not present, then mag init will fail and it will disable
This commit is contained in:
parent
0aa38a5bd4
commit
0d97f417ec
@ -542,10 +542,10 @@ const AP_Param::Info var_info[] PROGMEM = {
|
|||||||
|
|
||||||
// @Param: MAG_ENABLE
|
// @Param: MAG_ENABLE
|
||||||
// @DisplayName: Enable Compass
|
// @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
|
// @Values: 0:Disabled,1:Enabled
|
||||||
// @User: Standard
|
// @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_percent, "FLAP_1_PERCNT", FLAP_1_PERCENT),
|
||||||
GSCALAR(flap_1_speed, "FLAP_1_SPEED", FLAP_1_SPEED),
|
GSCALAR(flap_1_speed, "FLAP_1_SPEED", FLAP_1_SPEED),
|
||||||
|
@ -119,7 +119,6 @@
|
|||||||
# define CONFIG_PITOT_SOURCE PITOT_SOURCE_ANALOG_PIN
|
# define CONFIG_PITOT_SOURCE PITOT_SOURCE_ANALOG_PIN
|
||||||
# define CONFIG_PITOT_SOURCE_ANALOG_PIN 0
|
# define CONFIG_PITOT_SOURCE_ANALOG_PIN 0
|
||||||
# define CONFIG_PITOT_SCALING 4.0
|
# define CONFIG_PITOT_SCALING 4.0
|
||||||
# define MAGNETOMETER ENABLED
|
|
||||||
# ifdef APM2_BETA_HARDWARE
|
# ifdef APM2_BETA_HARDWARE
|
||||||
# define CONFIG_BARO AP_BARO_BMP085
|
# define CONFIG_BARO AP_BARO_BMP085
|
||||||
# else // APM2 Production Hardware (default)
|
# else // APM2 Production Hardware (default)
|
||||||
@ -139,7 +138,6 @@
|
|||||||
# define CONFIG_PITOT_SOURCE PITOT_SOURCE_ANALOG_PIN
|
# define CONFIG_PITOT_SOURCE PITOT_SOURCE_ANALOG_PIN
|
||||||
# define CONFIG_PITOT_SOURCE_ANALOG_PIN 0
|
# define CONFIG_PITOT_SOURCE_ANALOG_PIN 0
|
||||||
# define CONFIG_PITOT_SCALING 4.0
|
# define CONFIG_PITOT_SCALING 4.0
|
||||||
# define MAGNETOMETER ENABLED
|
|
||||||
# define CONFIG_BARO AP_BARO_HIL
|
# define CONFIG_BARO AP_BARO_HIL
|
||||||
# define CONFIG_COMPASS AP_COMPASS_HIL
|
# define CONFIG_COMPASS AP_COMPASS_HIL
|
||||||
#elif CONFIG_HAL_BOARD == HAL_BOARD_PX4
|
#elif CONFIG_HAL_BOARD == HAL_BOARD_PX4
|
||||||
@ -155,7 +153,6 @@
|
|||||||
# define CONFIG_PITOT_SOURCE PITOT_SOURCE_ANALOG_PIN
|
# define CONFIG_PITOT_SOURCE PITOT_SOURCE_ANALOG_PIN
|
||||||
# define CONFIG_PITOT_SOURCE_ANALOG_PIN 11
|
# define CONFIG_PITOT_SOURCE_ANALOG_PIN 11
|
||||||
# define CONFIG_PITOT_SCALING (4.0*5.0/3.3)
|
# define CONFIG_PITOT_SCALING (4.0*5.0/3.3)
|
||||||
# define MAGNETOMETER ENABLED
|
|
||||||
# define CONFIG_BARO AP_BARO_PX4
|
# define CONFIG_BARO AP_BARO_PX4
|
||||||
# define CONFIG_COMPASS AP_COMPASS_PX4
|
# define CONFIG_COMPASS AP_COMPASS_PX4
|
||||||
# define SERIAL0_BAUD 115200
|
# 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
|
# 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
|
#endif
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
|
||||||
// MAGNETOMETER
|
|
||||||
#ifndef MAGNETOMETER
|
|
||||||
# define MAGNETOMETER DISABLED
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
// RADIO CONFIGURATION
|
// RADIO CONFIGURATION
|
||||||
|
Loading…
Reference in New Issue
Block a user