mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
62646d68de
Add two new items in module's dependency: - recommends: a recommended module tells the sorting algo that if the module is found, it should be sorted accordingly. It is useful for optional dependencies, like shell or mission in some modules - suggests: if a functionality is not provided by the user, a module can suggest a list of modules that can provide them. It is a convenient way to have "default" modules. As a result the former autoload node is removed and replaced by suggested modules.
62 lines
2.1 KiB
XML
62 lines
2.1 KiB
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="gps_furuno" dir="gps" task="sensors">
|
|
<doc>
|
|
<description>
|
|
Furuno GPS (UART)
|
|
Driver for Furuno GPS modules parsing the NMEA protocol with Furuno extensions.
|
|
</description>
|
|
<configure name="FURUNO_GPS_PORT" value="UARTx" description="UART where the GPS is connected to (UART1, UART2, etc"/>
|
|
<configure name="FURUNO_GPS_BAUD" value="B38400" description="UART baud rate"/>
|
|
</doc>
|
|
<dep>
|
|
<depends>uart,gps</depends>
|
|
<provides>gps</provides>
|
|
</dep>
|
|
<header>
|
|
<file name="gps.h"/>
|
|
</header>
|
|
<init fun="gps_nmea_init()"/>
|
|
<periodic fun="gps_nmea_periodic_check()" freq="1." autorun="TRUE"/>
|
|
<event fun="gps_nmea_event()"/>
|
|
<makefile target="ap|fbw">
|
|
<configure name="FURUNO_GPS_PORT" default="$(GPS_PORT)" case="upper|lower"/>
|
|
<configure name="FURUNO_GPS_BAUD" default="$(GPS_BAUD)"/>
|
|
|
|
<file name="gps_nmea.c"/>
|
|
|
|
<define name="USE_$(FURUNO_GPS_PORT_UPPER)"/>
|
|
<define name="NMEA_GPS_LINK" value="$(FURUNO_GPS_PORT_LOWER)"/>
|
|
<define name="$(FURUNO_GPS_PORT_UPPER)_BAUD" value="$(FURUNO_GPS_BAUD)"/>
|
|
|
|
<!-- furuno extension -->
|
|
<define name="NMEA_PARSE_PROP"/>
|
|
<file name="gps_furuno.c"/>
|
|
<raw>
|
|
ifdef SECONDARY_GPS
|
|
ifneq (,$(findstring $(SECONDARY_GPS), nmea furuno))
|
|
# this is the secondary GPS
|
|
$(TARGET).CFLAGS += -DGPS_SECONDARY_TYPE_H=\"modules/gps/gps_nmea.h\"
|
|
$(TARGET).CFLAGS += -DSECONDARY_GPS=GPS_NMEA
|
|
else
|
|
$(TARGET).CFLAGS += -DGPS_TYPE_H=\"modules/gps/gps_nmea.h\"
|
|
$(TARGET).CFLAGS += -DPRIMARY_GPS=GPS_NMEA
|
|
endif
|
|
else
|
|
# plain old single GPS usage
|
|
$(TARGET).CFLAGS += -DGPS_TYPE_H=\"modules/gps/gps_nmea.h\"
|
|
endif
|
|
</raw>
|
|
<test>
|
|
<define name="PRIMARY_GPS" value="GPS_NMEA"/>
|
|
<define name="FURUNO_GPS_PORT" value="uart2"/>
|
|
<define name="FURUNO_GPS_BAUD" value="115200"/>
|
|
<define name="USE_UART2"/>
|
|
<define name="NMEA_GPS_LINK" value="uart2"/>
|
|
</test>
|
|
</makefile>
|
|
<makefile target="fbw">
|
|
<define name="USE_GPS"/>
|
|
</makefile>
|
|
</module>
|