fuze+: add unknown channel to debug menu

imx233: always divide physical channels by two for wider range

The Fuze+ OF monitors channel 2 but I'm unable to determine the meaning of it.
Print the value on the debug menu so that people can have a look at it.

Change-Id: I8a942febeafbce06014178abda12e38a16c26664
This commit is contained in:
Amaury Pouly 2012-03-15 18:47:23 +01:00
parent 9caffa8bf7
commit e07b22f27e
3 changed files with 5 additions and 2 deletions

View file

@ -27,6 +27,7 @@ int imx233_adc_mapping[] =
[ADC_DIE_TEMP] = IMX233_ADC_DIE_TEMP,
[ADC_VDDIO] = IMX233_ADC_VDDIO,
[ADC_5V] = HW_LRADC_CHANNEL_5V,
[ADC_CH2] = HW_LRADC_CHANNEL(2),
};
const char *imx233_adc_channel_name[] =
@ -35,4 +36,5 @@ const char *imx233_adc_channel_name[] =
"Die temperature(°C)",
"VddIO",
"Vdd5V",
"Channel 2",
};