mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-20 11:28:58 +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
41 lines
775 B
XML
41 lines
775 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<!--
|
|
|
|
Pressure Board Navarro (2010)
|
|
|
|
by Matthieu Navarro
|
|
|
|
combine differential and absolute pressure sensor (ETS raw sensors)
|
|
controlled by a dspic
|
|
return scaled values over I2C
|
|
|
|
-->
|
|
|
|
<module name="pbn" dir="sensors">
|
|
<doc>
|
|
<description>
|
|
Pressure Board Navarro (2010)
|
|
|
|
by Matthieu Navarro
|
|
|
|
combine differential and absolute pressure sensor (ETS raw sensors)
|
|
controlled by a dspic
|
|
return scaled values over I2C
|
|
</description>
|
|
</doc>
|
|
|
|
<header>
|
|
<file name="pressure_board_navarro.h"/>
|
|
</header>
|
|
<init fun="pbn_init()"/>
|
|
<periodic fun="pbn_periodic()" freq="10"/>
|
|
<event fun="PbnEvent()"/>
|
|
|
|
<makefile>
|
|
<file name="pressure_board_navarro.c"/>
|
|
</makefile>
|
|
|
|
</module>
|
|
|