FMUv4: Remove non-existent airspeed sensing channel

This commit is contained in:
Lorenz Meier 2016-01-20 10:08:40 +01:00
parent 92c946dae1
commit cbde246f0a
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ __BEGIN_DECLS
*
* These are the channel numbers of the ADCs of the microcontroller that can be used by the Px4 Firmware in the adc driver
*/
#define ADC_CHANNELS (1 << 2) | (1 << 3) | (1 << 4) | (1 << 10) | (1 << 11) | (1 << 12) | (1 << 13) | (1 << 14) | (1 << 15)
#define ADC_CHANNELS (1 << 2) | (1 << 3) | (1 << 4) | (1 << 10) | (1 << 11) | (1 << 12) | (1 << 13) | (1 << 14)
// ADC defines to be used in sensors.cpp to read from a particular channel
#define ADC_BATTERY_VOLTAGE_CHANNEL 2