mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-21 11:55:41 +08:00
cb6facbb75
move defines where the values need escaping to the raw makefile section this specific escape code doesn't work with all parsers...
31 lines
895 B
XML
31 lines
895 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="ins">
|
|
<doc>
|
|
<description>
|
|
CHimu (UART)
|
|
For older CHIMU v1.0 you should define CHIMU_BIG_ENDIAN
|
|
</description>
|
|
</doc>
|
|
<!-- <depend conflict="ins" -->
|
|
<header>
|
|
<file name="ins_module.h"/>
|
|
</header>
|
|
<!--<periodic fun="ins_periodic()" freq="60"/>-->
|
|
<event fun="parse_ins_msg()"/>
|
|
<makefile target="ap">
|
|
<define name="AHRS_TRIGGERED_ATTITUDE_LOOP"/>
|
|
<define name="USE_AHRS"/>
|
|
<define name="USE_INS_MODULE"/>
|
|
<define name="USE_UART$(CHIMU_UART_NR)"/>
|
|
<define name="INS_LINK" value="Uart$(CHIMU_UART_NR)"/>
|
|
<define name="UART$(CHIMU_UART_NR)_BAUD" value="B115200"/>
|
|
<file name="ahrs_chimu_uart.c"/>
|
|
<file name="imu_chimu.c"/>
|
|
<file name="ahrs.c" dir="subsystems"/>
|
|
<raw>
|
|
ap.CFLAGS += -DAHRS_TYPE_H=\"modules/ins/ins_module.h\"
|
|
</raw>
|
|
</makefile>
|
|
</module>
|