Files
paparazzi/conf/modules/adc.xml
T
Gautier Hattenberger 46bec882f3 [modules] start adding MCU periph modules (#1989)
Modules for MCU peripherals. Previous subsystems or direct definition in firmware makefile are kept for now, until dependencies are properly handled.
2017-01-26 22:09:55 +01:00

19 lines
445 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="adc" dir="mcu_periph" task="mcu">
<doc>
<description>
General ADC driver
To activate a specific ADC input, define flag USE_ADC_X where X is your ADC input number
</description>
</doc>
<header>
<file name="adc.h" dir="mcu_periph"/>
</header>
<makefile>
<define name="USE_ADC"/>
<file_arch name="adc_arch.c" dir="mcu_periph"/>
</makefile>
</module>