mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
e4d9e10492
- support depends, conflicts and provides nodes, all under a 'dep' node - autoload are kept for now and are not moved yet - modules are updated for new dep format - it is now required that module's name and filename are the same
23 lines
493 B
XML
23 lines
493 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="mcp355x" dir="adcs">
|
|
<doc>
|
|
<description>MCP355X ADC driver (SPI)</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>spi_master</depends>
|
|
</dep>
|
|
<header>
|
|
<file name="mcp355x.h"/>
|
|
</header>
|
|
<init fun="mcp355x_init()"/>
|
|
<periodic fun="mcp355x_read()" freq="10"/>
|
|
<event fun="mcp355x_event()"/>
|
|
<makefile target="ap">
|
|
<file name="mcp355x.c" dir="peripherals"/>
|
|
<define name="USE_SPI_SLAVE0"/>
|
|
</makefile>
|
|
</module>
|
|
|
|
|