summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/adc.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/firmware/drivers/adc.c b/firmware/drivers/adc.c
index ad10017d85..c9e11e0f56 100644
--- a/firmware/drivers/adc.c
+++ b/firmware/drivers/adc.c
@@ -329,3 +329,19 @@ void adc_init(void)
329} 329}
330 330
331#endif 331#endif
332#ifdef IAUDIO_X5
333unsigned char adc_scan(int channel)
334{
335 return 0;
336}
337
338unsigned short adc_read(int channel)
339{
340 return 0;
341}
342
343void adc_init(void)
344{
345}
346
347#endif