mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
e4d9e10492
- support depends, conflicts and provides nodes, all under a 'dep' node - autoload are kept for now and are not moved yet - modules are updated for new dep format - it is now required that module's name and filename are the same
30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="xtend_rssi" dir="datalink">
|
|
<doc>
|
|
<description>
|
|
Digi Xtend RSSI PWM Module.
|
|
For LPC21xx on the TWOG:
|
|
- INPUT CAPTURE CAP0.3 on P0.29 (TWOG ADC5, 5V to 3.3V voltage divider)
|
|
- INPUT CAPTURE CAP0.0 on P0.30 (TWOG ADC4, no voltage divider)
|
|
|
|
Currently only available on LPC21xx arch.
|
|
You must also load the module pwm_meas.xml
|
|
</description>
|
|
<configure name="XTEND_RSSI_PWM_INPUT_CHANNEL" value="input" description="select on which arch dep input the pwm line is connected"/>
|
|
</doc>
|
|
<dep>
|
|
<depends>pwm_meas</depends>
|
|
</dep>
|
|
<header>
|
|
<file name="xtend_rssi.h"/>
|
|
</header>
|
|
<periodic fun="xtend_rssi_periodic()" freq="0.5"/>
|
|
<makefile target="ap">
|
|
<file name="xtend_rssi.c"/>
|
|
<define name="XTEND_RSSI_PWM_INPUT_CHANNEL" value="$(XTEND_RSSI_PWM_INPUT_CHANNEL)"/> <!-- configure the pwm input to be used in airframe file -->
|
|
<define name="USE_PWM_INPUT$(XTEND_RSSI_PWM_INPUT_CHANNEL)" value="PWM_PULSE_TYPE_ACTIVE_HIGH"/> <!-- rssi signal is active high -->
|
|
</makefile>
|
|
</module>
|
|
|