mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="vn100" dir="ins">
|
|
<doc>
|
|
<description>VectorNav VN100 (SPI)</description>
|
|
<configure name="VN100_SPI_DEV" value="spiX" description="select spi peripherals (default spi1)"/>
|
|
<configure name="VN100_SLAVE_IDX" value="SPI_SLAVEX" description="spi slave index"/>
|
|
</doc>
|
|
<!-- <conflicts>ins</conflicts> -->
|
|
<header>
|
|
<file name="ins_vn100.h"/>
|
|
</header>
|
|
<init fun="vn100_init()"/>
|
|
<periodic fun="vn100_periodic_task()" freq="60"/>
|
|
<periodic fun="vn100_report_task()" freq="4"/>
|
|
<event fun="vn100_event_task()"/>
|
|
<makefile>
|
|
<configure name="VN100_SPI_DEV" default="spi1" case="upper|lower"/>
|
|
<configure name="VN100_SLAVE_IDX" default="spi_slave0" case="upper|lower"/>
|
|
<raw>
|
|
include $(CFG_SHARED)/spi_master.makefile
|
|
</raw>
|
|
<define name="USE_$(VN100_SPI_DEV_UPPER)" />
|
|
<define name="USE_$(VN100_SLAVE_IDX_UPPER)" />
|
|
<define name="VN100_SPI_DEV" value="$(VN100_SPI_DEV_LOWER)" />
|
|
<define name="VN100_SLAVE_IDX" value="$(VN100_SLAVE_IDX_UPPER)" />
|
|
<file name="ins_vn100.c"/>
|
|
</makefile>
|
|
</module>
|
|
|