From 01f03a54f14616c722feaddc77555b875de124ea Mon Sep 17 00:00:00 2001
From: Kaspar Schleiser <kaspar@schleiser.de>
Date: Fri, 14 Aug 2015 13:34:22 +0200
Subject: [PATCH] drivers: pcd8544: use xtimer

---
 Makefile.dep              | 8 ++++++++
 drivers/pcd8544/pcd8544.c | 4 ++--
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/Makefile.dep b/Makefile.dep
index b17ed8e60b..7a39984d2b 100644
--- a/Makefile.dep
+++ b/Makefile.dep
@@ -358,3 +358,11 @@ endif
 ifneq (,$(filter sht11,$(USEMODULE)))
     USEMODULE += xtimer
 endif
+
+ifneq (,$(filter srf02,$(USEMODULE)))
+    USEMODULE += xtimer
+endif
+
+ifneq (,$(filter pcd8544,$(USEMODULE)))
+    USEMODULE += xtimer
+endif
diff --git a/drivers/pcd8544/pcd8544.c b/drivers/pcd8544/pcd8544.c
index 054cabd87b..65f7ef97f3 100644
--- a/drivers/pcd8544/pcd8544.c
+++ b/drivers/pcd8544/pcd8544.c
@@ -19,7 +19,7 @@
 #include <stdint.h>
 #include <stdio.h>
 
-#include "hwtimer.h"
+#include "xtimer.h"
 #include "periph/spi.h"
 #include "periph/gpio.h"
 #include "pcd8544.h"
@@ -243,7 +243,7 @@ int pcd8544_init(pcd8544_t *dev, spi_t spi, gpio_t cs, gpio_t reset, gpio_t mode
     DEBUG("done initializing SPI master\n");
     /* reset display */
     gpio_clear(reset);
-    hwtimer_wait(RESET_DELAY);
+    xtimer_usleep(RESET_DELAY);
     gpio_set(reset);
 
     /* clear display memory */
-- 
GitLab