mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-02-06 02:52:42 +08:00
22 lines
573 B
XML
22 lines
573 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<!--
|
|
Generic ADC module
|
|
@param ADC_CHANNEL_GENERIC1 on which ADC input 1 is measured
|
|
@param ADC_CHANNEL_GENERIC2 on which ADC input 2 is measured
|
|
-->
|
|
|
|
<module name="adc_generic" dir="adcs">
|
|
<header>
|
|
<file name="adc_generic.h"/>
|
|
</header>
|
|
<init fun="adc_generic_init()"/>
|
|
<periodic fun="adc_generic_periodic()" freq="4"/>
|
|
<makefile target="ap">
|
|
<file name="adc_generic.c"/>
|
|
<define name="USE_$(ADC_CHANNEL_GENERIC1)"/>
|
|
<define name="USE_$(ADC_CHANNEL_GENERIC2)"/>
|
|
</makefile>
|
|
</module>
|
|
|