From: aleph Date: Mon, 7 Jun 2004 15:54:23 +0000 (+0000) Subject: Update to new event.h naming X-Git-Tag: 1.0.0~1209 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=78c1a39d57fa54df9798e8b9783fdf149f105412;p=bertos.git Update to new event.h naming git-svn-id: https://src.develer.com/svnoss/bertos/trunk@32 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/drv/buzzer.c b/drv/buzzer.c index d0df8fc1..372647fd 100755 --- a/drv/buzzer.c +++ b/drv/buzzer.c @@ -15,6 +15,9 @@ /* * $Log$ + * Revision 1.5 2004/06/07 15:54:23 aleph + * Update to new event.h naming + * * Revision 1.4 2004/06/06 16:09:22 bernie * Reformat (from project_ks). * @@ -194,5 +197,5 @@ void buz_init(void) /* Inizializza software interrupt */ buz_timer = timer_new(); ASSERT(buz_timer != NULL); - INITEVENT_INT(&buz_timer->expire, (Hook)buz_softint, 0); + event_initSoftInt(&buz_timer->expire, (Hook)buz_softint, 0); }