1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-17 13:25:30 +03:00

Align ADC order with with resource.h file to show proper resource

assignments
This commit is contained in:
Michael Jakob 2016-12-01 21:03:54 +01:00
parent 24a042d253
commit 1746041007

View file

@ -21,9 +21,9 @@
typedef enum {
ADC_BATTERY = 0,
ADC_RSSI = 1,
ADC_CURRENT = 1,
ADC_EXTERNAL1 = 2,
ADC_CURRENT = 3,
ADC_RSSI = 3,
ADC_CHANNEL_MAX = ADC_CURRENT
} AdcChannel;