aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2012-10-21 01:47:11 +0200
committerJoel Bodenmann <joel@unormal.org>2012-10-21 01:47:11 +0200
commit7b277edc592f0acc9971cf45e882a59dffe7a1ad (patch)
tree6c6d9e15f572ee6c743a60ce7a8edefc220b193a /docs
parent06b9e3c1cd1f091da01835b1a98c4006c93c86a4 (diff)
downloaduGFX-7b277edc592f0acc9971cf45e882a59dffe7a1ad.tar.gz
uGFX-7b277edc592f0acc9971cf45e882a59dffe7a1ad.tar.bz2
uGFX-7b277edc592f0acc9971cf45e882a59dffe7a1ad.zip
renamed macros
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