mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-05 23:49:00 +08:00
21 lines
494 B
XML
21 lines
494 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<!--
|
|
Bosch BMP085 pressure sensor
|
|
@param BMP_I2C_DEV i2c device (default i2c0)
|
|
@define SENSOR_SYNC_SEND to transmit the data as it is acquired
|
|
-->
|
|
|
|
<module name="baro_bmp" dir="sensors">
|
|
<header>
|
|
<file name="baro_bmp.h"/>
|
|
</header>
|
|
<init fun="baro_bmp_init()"/>
|
|
<periodic fun="baro_bmp_periodic()" freq="8"/>
|
|
<event fun="baro_bmp_event()"/>
|
|
<makefile target="ap">
|
|
<file name="baro_bmp.c"/>
|
|
</makefile>
|
|
</module>
|
|
|