aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/configure.txt4
-rw-r--r--docs/usage.txt4
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/configure.txt b/docs/configure.txt
index 15380e16..17540062 100644
--- a/docs/configure.txt
+++ b/docs/configure.txt
@@ -3,7 +3,7 @@ There are serval macros available to configure the behaviour of the GFX-Library.
HAL macros:
#define HAL_USE_GFX // enables the GDISP sub system. This is essentially needed to use the display
- #define HAL_USE_TOUCHPAD // enables the TouchPad sub system. This is essentially needed to use the touchpad
+ #define GFX_USE_TOUCHPAD // enables the TouchPad sub system. This is essentially needed to use the touchpad
@@ -27,7 +27,7 @@ GDISP macors:
#define GDISP_NEED_SCROLL // is scrolling is needed (pixel shift)
#define GDISP_NEED_QUERY // to make certain queries to the LCD controller
- #define GDISP_NEED_CONSOLE // for the console abstraction
+ #define GFX_USE_CONSOLE // for the console abstraction
TouchPad macros:
diff --git a/docs/usage.txt b/docs/usage.txt
index 968a1280..a68c618a 100644
--- a/docs/usage.txt
+++ b/docs/usage.txt
@@ -14,8 +14,8 @@ To include any of these functions/drivers in your project...
5/ In your project halconf.h turn on the support you want. Please take a look to
docs/configure.txt for a list and description of all available macros. For example:
- #define HAL_USE_GDISP TRUE
- #define HAL_USE_TOUCHPAD TRUE
+ #define GFX_USE_GDISP TRUE
+ #define GFX_USE_TOUCHPAD TRUE
#define GDISP_USE_GPIO TRUE
#define GDISP_GDISP_SCREEN_WIDTH 240