ArduPlane: added config.h and defines.h to support CONFIG_BARO

This commit is contained in:
Pat Hickey 2011-11-26 22:07:49 -08:00 committed by Pat Hickey
parent 62844d8ddc
commit 1b2ebdff44
2 changed files with 12 additions and 0 deletions

View File

@ -60,6 +60,7 @@
# define CONFIG_RELAY DISABLED
# define MAG_ORIENTATION AP_COMPASS_APM2_SHIELD
# define CONFIG_SONAR_SOURCE SONAR_SOURCE_ANALOG_PIN
# define CONFIG_BARO AP_BARO_MS5611
#endif
// LED and IO Pins
@ -121,6 +122,14 @@
# endif
#endif
//////////////////////////////////////////////////////////////////////////////
// Barometer
//
#ifndef CONFIG_BARO
# define CONFIG_BARO AP_BARO_BMP085
#endif
//////////////////////////////////////////////////////////////////////////////
// Pitot
//

View File

@ -228,4 +228,7 @@ enum gcs_severity {
#define APM_HARDWARE_APM1 1
#define APM_HARDWARE_APM2 2
#define AP_BARO_BMP085 1
#define AP_BARO_MS5611 2
#endif // _DEFINES_H