diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-10-21 01:47:11 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-10-21 01:47:11 +0200 |
commit | 7b277edc592f0acc9971cf45e882a59dffe7a1ad (patch) | |
tree | 6c6d9e15f572ee6c743a60ce7a8edefc220b193a /drivers/gdisp/S6D1121 | |
parent | 06b9e3c1cd1f091da01835b1a98c4006c93c86a4 (diff) | |
download | uGFX-7b277edc592f0acc9971cf45e882a59dffe7a1ad.tar.gz uGFX-7b277edc592f0acc9971cf45e882a59dffe7a1ad.tar.bz2 uGFX-7b277edc592f0acc9971cf45e882a59dffe7a1ad.zip |
renamed macros
Diffstat (limited to 'drivers/gdisp/S6D1121')
-rw-r--r-- | drivers/gdisp/S6D1121/gdisp_lld.c | 4 | ||||
-rw-r--r-- | drivers/gdisp/S6D1121/gdisp_lld_config.h | 4 | ||||
-rw-r--r-- | drivers/gdisp/S6D1121/readme.txt | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/drivers/gdisp/S6D1121/gdisp_lld.c b/drivers/gdisp/S6D1121/gdisp_lld.c index 0972f260..bf2e60f5 100644 --- a/drivers/gdisp/S6D1121/gdisp_lld.c +++ b/drivers/gdisp/S6D1121/gdisp_lld.c @@ -30,7 +30,7 @@ #include "hal.h"
#include "gdisp.h"
-#if HAL_USE_GDISP || defined(__DOXYGEN__)
+#if GFX_USE_GDISP || defined(__DOXYGEN__)
/* Include the emulation code for things we don't support */
#include "gdisp_emulation.c"
@@ -499,5 +499,5 @@ void GDISP_LLD(drawpixel)(coord_t x, coord_t y, color_t color) { }
#endif
-#endif /* HAL_USE_GDISP */
+#endif /* GFX_USE_GDISP */
/** @} */
diff --git a/drivers/gdisp/S6D1121/gdisp_lld_config.h b/drivers/gdisp/S6D1121/gdisp_lld_config.h index 4f8047bd..8135871e 100644 --- a/drivers/gdisp/S6D1121/gdisp_lld_config.h +++ b/drivers/gdisp/S6D1121/gdisp_lld_config.h @@ -29,7 +29,7 @@ #ifndef _GDISP_LLD_CONFIG_H
#define _GDISP_LLD_CONFIG_H
-#if HAL_USE_GDISP
+#if GFX_USE_GDISP
/*===========================================================================*/
/* Driver hardware support. */
@@ -47,7 +47,7 @@ #define GDISP_PIXELFORMAT GDISP_PIXELFORMAT_RGB565
-#endif /* HAL_USE_GDISP */
+#endif /* GFX_USE_GDISP */
#endif /* _GDISP_LLD_CONFIG_H */
/** @} */
diff --git a/drivers/gdisp/S6D1121/readme.txt b/drivers/gdisp/S6D1121/readme.txt index e60a0e29..1ca9a6f0 100644 --- a/drivers/gdisp/S6D1121/readme.txt +++ b/drivers/gdisp/S6D1121/readme.txt @@ -1,7 +1,7 @@ To use this driver:
1. Add in your halconf.h:
- a) #define HAL_USE_GDISP TRUE
+ a) #define GFX_USE_GDISP TRUE
b) Any optional high level driver defines (see gdisp.h) eg: GDISP_NEED_MULTITHREAD
c) One (only) of:
#define GDISP_USE_GPIO
|