summaryrefslogtreecommitdiff
path: root/chip/stm32/adc-stm32f.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/stm32/adc-stm32f.c')
-rw-r--r--chip/stm32/adc-stm32f.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/chip/stm32/adc-stm32f.c b/chip/stm32/adc-stm32f.c
index 22d909a339..e2053e331b 100644
--- a/chip/stm32/adc-stm32f.c
+++ b/chip/stm32/adc-stm32f.c
@@ -289,21 +289,3 @@ static void adc_init(void)
STM32_ADC_SMPR2 = 0x12492492;
}
DECLARE_HOOK(HOOK_INIT, adc_init, HOOK_PRIO_DEFAULT);
-
-static int command_adc(int argc, char **argv)
-{
- int i;
- int data[ADC_CH_COUNT];
-
- if (adc_read_all_channels(data))
- return EC_ERROR_UNKNOWN;
- for (i = 0; i < ADC_CH_COUNT; ++i)
- ccprintf("ADC channel \"%s\" = %d\n",
- adc_channels[i].name, data[i]);
-
- return EC_SUCCESS;
-}
-DECLARE_CONSOLE_COMMAND(adc, command_adc,
- NULL,
- "Print ADC channels",
- NULL);