#include "buzzerled.h"
+#include <appconfig.h>
#include <drv/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
+static struct Timer timers[CONFIG_NUM_BLDS];
+static bool timer_go[CONFIG_NUM_BLDS];
INLINE enum BLD_DEVICE hook_parm_to_device(void* parm)
{
timer_delay(duration);
bld_set(device, false);
}
+#endif
#include <cpu/attr.h>
+#warning FIXME:This drive is obsolete, you must refactor it.
+
+#if 0
/** Include hw_buzzerled.h. We expect hw_buzzerled.h to define enum BLD_DEVICE, which must contain
* an enumarator for each device, plus a special symbol NUM_BLDS containing the
* number of devices.
*/
void bld_beep_and_wait(enum BLD_DEVICE device, uint16_t duration);
+#endif
+
#endif /* DRV_BUZZERLED_H */