Skip to content

Commit

Permalink
[modules] fix malformed xml files
Browse files Browse the repository at this point in the history
  • Loading branch information
flixr committed Dec 6, 2014
1 parent 85ca30f commit ee64cbe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions conf/modules/digital_cam_i2c.xml
Expand Up @@ -12,20 +12,20 @@

<header>
<file name="atmega_i2c_cam_ctrl.h"/>
<file name="dc.h"/
<file name="dc.h"/>
</header>

<init fun="atmega_i2c_cam_ctrl_init()"/>
<periodic fun="atmega_i2c_cam_ctrl_periodic()" autorun="TRUE" freq="4" />
<event fun="atmega_i2c_cam_ctrl_event()"/>
<init fun="atmega_i2c_cam_ctrl_init()"/>
<periodic fun="atmega_i2c_cam_ctrl_periodic()" autorun="TRUE" freq="4"/>
<event fun="atmega_i2c_cam_ctrl_event()"/>

<datalink message="PAYLOAD_COMMAND" fun="ParseCameraCommand()" />
<datalink message="PAYLOAD_COMMAND" fun="ParseCameraCommand()"/>

<makefile target="ap">
<file name="atmega_i2c_cam_ctrl.c"/>
<file name="dc.c"/>
<define name="ATMEGA_I2C_DEV" value="i2c0"/>
<define name="USE_I2C0" value="1"/>
<define name="ATMEGA_I2C_DEV" value="i2c0"/>
<define name="USE_I2C0" value="1"/>
</makefile>

<makefile target="sim">
Expand Down
2 changes: 1 addition & 1 deletion conf/modules/digital_cam_uart.xml
Expand Up @@ -22,7 +22,7 @@
</settings>
<header>
<file name="uart_cam_ctrl.h"/>
<file name="dc.h"/
<file name="dc.h"/>
</header>
<init fun="digital_cam_uart_init()"/>
<periodic fun="digital_cam_uart_periodic()" freq="4" autorun="TRUE"/>
Expand Down

0 comments on commit ee64cbe

Please sign in to comment.