From: bernie Date: Wed, 8 Dec 2004 09:43:41 +0000 (+0000) Subject: Add a todo item. X-Git-Tag: 1.0.0~929 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=39cef8dc094eea562d14095556951e1d8c32f067;p=bertos.git Add a todo item. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@312 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/drv/buzzerled.c b/drv/buzzerled.c index 9945cb4e..bd853629 100755 --- a/drv/buzzerled.c +++ b/drv/buzzerled.c @@ -27,6 +27,9 @@ /*#* *#* $Log$ + *#* Revision 1.5 2004/12/08 09:43:41 bernie + *#* Add a todo item. + *#* *#* Revision 1.4 2004/08/25 14:12:08 rasky *#* Aggiornato il comment block dei log RCS *#* @@ -71,7 +74,8 @@ void bld_init(void) void bld_beep(enum BLD_DEVICE device, uint16_t duration) { - struct Timer* t = &timers[device]; + // \todo This is not reentrant for the same device. FIXME! + struct Timer *t = &timers[device]; timer_set_delay(t, duration); timer_set_event_softint(t, hook_turn_off, t); timer_add(t);