mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-01 12:57:27 +08:00
Start converting planes, turn meteo sensors into modules, adapt to new I2C framework.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE module SYSTEM "module.dtd">
|
||||
|
||||
<module name="baro_scp" dir="meteo">
|
||||
<header>
|
||||
<file name="baro_scp.h"/>
|
||||
</header>
|
||||
<init fun="baro_scp_init()"/>
|
||||
<periodic fun="baro_scp_periodic()" freq="1.8"/>
|
||||
<event fun="baro_scp_event()"/>
|
||||
<makefile target="ap">
|
||||
<file name="baro_scp.c"/>
|
||||
</makefile>
|
||||
</module>
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE module SYSTEM "module.dtd">
|
||||
|
||||
<module name="baro_scp_i2c" dir="meteo">
|
||||
<header>
|
||||
<file name="baro_scp_i2c.h"/>
|
||||
</header>
|
||||
<init fun="baro_scp_init()"/>
|
||||
<periodic fun="baro_scp_periodic()" freq="1.8"/>
|
||||
<event fun="baro_scp_event()"/>
|
||||
<makefile target="ap">
|
||||
<file name="baro_scp_i2c.c"/>
|
||||
</makefile>
|
||||
</module>
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE module SYSTEM "module.dtd">
|
||||
|
||||
<module name="humid_dpicco" dir="meteo">
|
||||
<header>
|
||||
<file name="humid_dpicco.h"/>
|
||||
</header>
|
||||
<init fun="dpicco_init()"/>
|
||||
<periodic fun="dpicco_periodic()" freq="4."/>
|
||||
<event fun="dpicco_event()"/>
|
||||
<makefile target="ap">
|
||||
<file name="humid_dpicco.c"/>
|
||||
</makefile>
|
||||
</module>
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE module SYSTEM "module.dtd">
|
||||
|
||||
<module name="humid_sht" dir="meteo">
|
||||
<header>
|
||||
<file name="humid_sht.h"/>
|
||||
</header>
|
||||
<init fun="humid_sht_init()"/>
|
||||
<periodic fun="humid_sht_periodic()" freq="4."/>
|
||||
<makefile target="ap">
|
||||
<file name="humid_sht.c"/>
|
||||
</makefile>
|
||||
</module>
|
||||
|
||||
Reference in New Issue
Block a user