mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-19 18:42:46 +08:00
22 lines
570 B
XML
22 lines
570 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<!-- to be configured with
|
|
ap.CFLAGS += -DUSE_GPS -DUBX -DGPS_LINK=gps_i2c -DGPS_LED=2
|
|
ap.CFLAGS += -DGPS_CONFIGURE -DGPS_PORT_ID=GPS_PORT_DDC
|
|
-->
|
|
|
|
<module name="gps_i2c">
|
|
<header>
|
|
<file name="gps_i2c.h"/>
|
|
</header>
|
|
<init fun="gps_i2c_init()"/>
|
|
<periodic fun="gps_i2c_periodic()" freq="4." delay="4" autorun="TRUE"/>
|
|
<event fun="gps_i2cEvent()"/>
|
|
<makefile target="ap">
|
|
<file name="gps_i2c.c"/>
|
|
<define name="GPS_CONFIGURE" />
|
|
<define name="GPS_PORT_ID" value="GPS_PORT_DDC" />
|
|
</makefile>
|
|
</module>
|
|
|