mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
56a2eb21e0
* [FBW_GPS] Run GPS driver in FBW, e.g. for geofencing * [FBW_GPS] convert all GPS modules to run in FBW
50 lines
1.7 KiB
XML
50 lines
1.7 KiB
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="gps_mediatek" dir="gps">
|
|
<doc>
|
|
<description>
|
|
Mediatek MT3329 GPS (UART)
|
|
Driver for Mediatek MT3329 GPS, DIYDrones V1.4/1.6 protocol
|
|
</description>
|
|
<configure name="MTK_GPS_PORT" value="UARTx" description="UART where the GPS is connected to (UART1, UART2, etc"/>
|
|
<configure name="MTK_GPS_BAUD" value="B38400" description="UART baud rate"/>
|
|
</doc>
|
|
<autoload name="gps"/>
|
|
<autoload name="gps_nps"/>
|
|
<autoload name="gps_sim"/>
|
|
<header>
|
|
<file name="gps.h" dir="subsystems"/>
|
|
</header>
|
|
<init fun="gps_mtk_init()"/>
|
|
<periodic fun="gps_mtk_periodic_check()" freq="1." autorun="TRUE"/>
|
|
<event fun="gps_mtk_event()"/>
|
|
<makefile target="ap|fbw">
|
|
<configure name="MTK_GPS_PORT" default="$(GPS_PORT)" case="upper|lower"/>
|
|
<configure name="MTK_GPS_BAUD" default="$(GPS_BAUD)"/>
|
|
|
|
<file name="gps_mtk.c" dir="subsystems/gps"/>
|
|
|
|
<define name="USE_$(MTK_GPS_PORT_UPPER)"/>
|
|
<define name="MTK_GPS_LINK" value="$(MTK_GPS_PORT_LOWER)"/>
|
|
<define name="$(MTK_GPS_PORT_UPPER)_BAUD" value="$(MTK_GPS_BAUD)"/>
|
|
<raw>
|
|
ifdef SECONDARY_GPS
|
|
ifneq (,$(findstring $(SECONDARY_GPS), mtk mediatek))
|
|
# this is the secondary GPS
|
|
$(TARGET).CFLAGS += -DGPS_SECONDARY_TYPE_H=\"subsystems/gps/gps_mtk.h\"
|
|
$(TARGET).CFLAGS += -DSECONDARY_GPS=GPS_MTK
|
|
else
|
|
$(TARGET).CFLAGS += -DGPS_TYPE_H=\"subsystems/gps/gps_mtk.h\"
|
|
$(TARGET).CFLAGS += -DPRIMARY_GPS=GPS_MTK
|
|
endif
|
|
else
|
|
# plain old single GPS usage
|
|
$(TARGET).CFLAGS += -DGPS_TYPE_H=\"subsystems/gps/gps_mtk.h\"
|
|
endif
|
|
</raw>
|
|
</makefile>
|
|
<makefile target="fbw">
|
|
<define name="USE_GPS"/>
|
|
</makefile>
|
|
</module>
|