diff options
Diffstat (limited to 'boards/OLIMEX_LPC_P2148/buzzer.c')
-rw-r--r-- | boards/OLIMEX_LPC_P2148/buzzer.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/boards/OLIMEX_LPC_P2148/buzzer.c b/boards/OLIMEX_LPC_P2148/buzzer.c index d87a8ddb7..9d55c0ad5 100644 --- a/boards/OLIMEX_LPC_P2148/buzzer.c +++ b/boards/OLIMEX_LPC_P2148/buzzer.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -36,7 +36,7 @@ EventSource BuzzerSilentEventSource; #define StopCounter(t) ((t)->TC_EMR = 0, (t)->TC_TCR = 2)
/**
- * @brief Buzzer driver initialization. + * @brief Buzzer driver initialization.
*/
void buzzInit(void) {
@@ -62,8 +62,8 @@ void buzzInit(void) { /**
* @brief Stops the sound.
- * - * @param[in] p pointer to the timer + *
+ * @param[in] p pointer to the timer
*/
static void stop(void *p) {
@@ -73,9 +73,9 @@ static void stop(void *p) { /**
* @brief Plays a tone asynchronously.
- * - * @param[in] freq approximated tone frequency - * @param[in] duration tone duration in systicks + *
+ * @param[in] freq approximated tone frequency
+ * @param[in] duration tone duration in systicks
*/
void buzzPlay(uint32_t freq, systime_t duration) {
static VirtualTimer bvt;
|