diff options
-rw-r--r-- | halext/readme.txt | 2 | ||||
-rw-r--r-- | touchpad/touchpad.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/halext/readme.txt b/halext/readme.txt index cfd4da2d..98987d39 100644 --- a/halext/readme.txt +++ b/halext/readme.txt @@ -4,7 +4,7 @@ To include any of these functions/drivers in your project... 2/ In your project Makefile (amongst similiar lines but after the hal line) add the line...
include $(CHIBIOS)/os/halext/halext.mk
3/ In your project Makefile add the makefiles for any specific drivers you want e.g
- include $(CHIBIOS)/os/halext/drivers/gdispNokia6610/gdisp.mk
+ include $(CHIBIOS)/os/halext/drivers/gdispNokia6610/gdisp_lld.mk
4/ In your project halconf.h turn on the support you want eg.
/**
* @brief Enables the GDISP subsystem.
diff --git a/touchpad/touchpad.h b/touchpad/touchpad.h index c401415e..1f1ba6f3 100644 --- a/touchpad/touchpad.h +++ b/touchpad/touchpad.h @@ -4,6 +4,7 @@ #include "ch.h" #include "hal.h" #include "glcd.h" +#include "glcdconf.h" #include "ads7843_lld.h" #include "xpt2046_lld.h" |