Use cfg instead appconfig in bertos modules. Reformat. Remove CVS logs.
[bertos.git] / bertos / drv / buzzerled.c
index afc819028a8666cada29f415a09f8d1a13573a8e..9648ef67c976b4a58cc0c90aa5e4e92a50018a05 100644 (file)
  */
 
 #include "buzzerled.h"
-#include "timer.h"
 
-static struct Timer timers[NUM_BLDS];
-static bool timer_go[NUM_BLDS];
+#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[CONFIG_NUM_BLDS];
+static bool timer_go[CONFIG_NUM_BLDS];
 
 INLINE enum BLD_DEVICE hook_parm_to_device(void* parm)
 {
@@ -95,4 +100,5 @@ void bld_beep_and_wait(enum BLD_DEVICE device, uint16_t duration)
        timer_delay(duration);
        bld_set(device, false);
 }
+#endif