mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
bcaba7c720
modules developpers can provide - a description of the module - a list of the configuration variables and flags (configure and define) - a list of sections to add to the airframe file
21 lines
554 B
XML
21 lines
554 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="temp_tcouple_adc" dir="meteo">
|
|
<doc>
|
|
<description></description>
|
|
</doc>
|
|
<header>
|
|
<file name="temp_tcouple_adc.h"/>
|
|
</header>
|
|
<init fun="temp_tcouple_adc_init()"/>
|
|
<periodic fun="temp_tcouple_adc_periodic()" freq="60"/>
|
|
<makefile target="ap">
|
|
<file name="temp_tcouple_adc.c"/>
|
|
<define name="ADC_CHANNEL_TEMP_REF" value="ADC_4"/>
|
|
<define name="USE_ADC_4"/>
|
|
<define name="ADC_CHANNEL_TEMP_VAL" value="ADC_3"/>
|
|
<define name="USE_ADC_3"/>
|
|
</makefile>
|
|
</module>
|
|
|