mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-10 06:59:54 +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
26 lines
635 B
XML
26 lines
635 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="i2c" dir="mcu_periph" task="mcu">
|
|
<doc>
|
|
<description>
|
|
General I2C driver
|
|
To activate a specific I2C peripheral, define flag USE_I2CX where X is your I2C peripheral number
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>mcu,threads</depends>
|
|
</dep>
|
|
<header>
|
|
<file name="i2c.h" dir="mcu_periph"/>
|
|
</header>
|
|
<makefile>
|
|
<file name="i2c.c" dir="mcu_periph"/>
|
|
<file name="softi2c.c" dir="mcu_periph"/>
|
|
<file_arch name="i2c_arch.c" dir="mcu_periph"/>
|
|
<test>
|
|
<define name="USE_I2C2" value="TRUE"/>
|
|
</test>
|
|
</makefile>
|
|
</module>
|
|
|