Files
paparazzi/conf/modules/spi_master.xml
T
Gautier Hattenberger 46bec882f3 [modules] start adding MCU periph modules (#1989)
Modules for MCU peripherals. Previous subsystems or direct definition in firmware makefile are kept for now, until dependencies are properly handled.
2017-01-26 22:09:55 +01:00

21 lines
549 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="spi_master" dir="mcu_periph" task="mcu">
<doc>
<description>
General SPI driver (master mode)
To activate a specific SPI peripheral, define flag USE_SPIX where X is your SPI peripheral number
</description>
</doc>
<header>
<file name="spi.h" dir="mcu_periph"/>
</header>
<makefile>
<define name="USE_SPI"/>
<define name="SPI_MASTER"/>
<file name="spi.c" dir="mcu_periph"/>
<file_arch name="spi_arch.c" dir="mcu_periph"/>
</makefile>
</module>