[tuxdroid-svn] r1126 - firmware/tuxcore/trunk
Status: Beta
Brought to you by:
ks156
From: jaguarondi <c2m...@c2...> - 2008-05-07 10:43:07
|
Author: jaguarondi Date: 2008-05-07 12:43:08 +0200 (Wed, 07 May 2008) New Revision: 1126 Modified: firmware/tuxcore/trunk/parser.c Log: * bug: LED_PULSE_CMD disappeared in the merge. Modified: firmware/tuxcore/trunk/parser.c =================================================================== --- firmware/tuxcore/trunk/parser.c 2008-05-07 10:09:23 UTC (rev 1125) +++ firmware/tuxcore/trunk/parser.c 2008-05-07 10:43:08 UTC (rev 1126) @@ -148,8 +148,11 @@ { motors_run(cmd[1], cmd[2], cmd[3]); } + else if (cmd[0] == LED_PULSE_CMD) + { + led_pulse(cmd[1], cmd[2], cmd[3]); + } - /* Deprecated functions, though they can be kept for the standalone as * they're simpler than the other LED functions. */ else if (cmd[0] == LED_ON_CMD) |