From 39cef8dc094eea562d14095556951e1d8c32f067 Mon Sep 17 00:00:00 2001 From: bernie Date: Wed, 8 Dec 2004 09:43:41 +0000 Subject: [PATCH] Add a todo item. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@312 38d2e660-2303-0410-9eaa-f027e97ec537 --- drv/buzzerled.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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); -- 2.25.1