From d8db6bd8dc1496db7f50e480b81793a990f0b1df Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 20 Dec 2009 13:15:00 +0000 Subject: Added sounds to the FatFS demo. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1447 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/ARM7-LPC214x-FatFS-GCC/main.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'demos') diff --git a/demos/ARM7-LPC214x-FatFS-GCC/main.c b/demos/ARM7-LPC214x-FatFS-GCC/main.c index 8da531413..70d1605bf 100644 --- a/demos/ARM7-LPC214x-FatFS-GCC/main.c +++ b/demos/ARM7-LPC214x-FatFS-GCC/main.c @@ -24,6 +24,7 @@ #include "hal.h" #include "test.h" #include "evtimer.h" +#include "buzzer.h" #include "ff.h" @@ -172,6 +173,7 @@ static void TimerHandler(eventid_t id) { Thread *tp = chThdCreateStatic(waTestThread, sizeof(waTestThread), NORMALPRIO, TestThread, &SD1); chThdWait(tp); + buzzPlay(500, MS2ST(100)); } } @@ -182,6 +184,8 @@ static void InsertHandler(eventid_t id) { FRESULT err; (void)id; + buzzPlayWait(1000, MS2ST(100)); + buzzPlayWait(2000, MS2ST(100)); iprintf("MMC: inserted\r\n"); /* * On insertion MMC initialization and FS mount. @@ -201,6 +205,7 @@ static void InsertHandler(eventid_t id) { } fs_ready = TRUE; iprintf("ok\r\n"); + buzzPlay(440, MS2ST(200)); } /* @@ -211,6 +216,8 @@ static void RemoveHandler(eventid_t id) { (void)id; iprintf("MMC: removed\r\n"); fs_ready = FALSE; + buzzPlayWait(2000, MS2ST(100)); + buzzPlayWait(1000, MS2ST(100)); } /* @@ -234,6 +241,11 @@ int main(int argc, char **argv) { */ sdStart(&SD1, NULL); + /* + * Buzzer driver initialization. + */ + buzzInit(); + /* * Initializes the MMC driver to work with SPI2. */ -- cgit v1.2.3