Update preset.
[bertos.git] / bertos / drv / buzzerled.c
index 9e82598f970f41186cff70aa17bd20f6270d2e69..5135cf00f29b0c2992792684ac280ecc73c91f67 100644 (file)
  *    many different ways (many different pins), so this part should describe
  *    which devices are present, and how they are connected.
  *
- * \version $Id$
  *
  * \author Giovanni Bajo <rasky@develer.com>
  */
 
 #include "buzzerled.h"
 
+#warning FIXME:This drive is obsolete, you must refactor it.
+
+#if 0
+#include "cfg/cfg_buzzerled.h"
 #include <drv/timer.h>
 
-static struct Timer timers[NUM_BLDS];
-static bool timer_go[NUM_BLDS];
+static struct Timer timers[CONFIG_NUM_BLDS];
+static bool timer_go[CONFIG_NUM_BLDS];
 
 INLINE enum BLD_DEVICE hook_parm_to_device(void* parm)
 {
@@ -96,4 +99,5 @@ void bld_beep_and_wait(enum BLD_DEVICE device, uint16_t duration)
        timer_delay(duration);
        bld_set(device, false);
 }
+#endif