mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-22 04:13:39 +08:00
4ac6279aa9
* [fix] fix some bugs small errors from compilation tests * Attempt to fix the detection of failing tests Side effect: the file issues.md is not produced anymore, but still available in stdout, so needs a manual copy if needed
24 lines
601 B
XML
24 lines
601 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>
|
|
<dep>
|
|
<depends>mcu,threads</depends>
|
|
</dep>
|
|
<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>
|
|
|