diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-10-11 01:41:18 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-10-11 01:41:18 +0200 |
commit | cf1a759ad6bcd51066036e40e91c617b91f1beba (patch) | |
tree | 31a403b38c0c5eba3664967d0f055c33339ec5e2 /docs | |
parent | b9de7e6ce3f7e3b3344d1893c0516114a91277ae (diff) | |
download | uGFX-cf1a759ad6bcd51066036e40e91c617b91f1beba.tar.gz uGFX-cf1a759ad6bcd51066036e40e91c617b91f1beba.tar.bz2 uGFX-cf1a759ad6bcd51066036e40e91c617b91f1beba.zip |
SCREEN_WIDTH and SCREEN_HEIGHT renamed to GDISP_SCREEN_WIDTH and GDISP_SCREEN_HEIGHT
Diffstat (limited to 'docs')
-rw-r--r-- | docs/releases.txt | 2 | ||||
-rw-r--r-- | docs/usage.txt | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/releases.txt b/docs/releases.txt index 08808d0d..91f0db0a 100644 --- a/docs/releases.txt +++ b/docs/releases.txt @@ -8,6 +8,8 @@ current stable: 1.1 FIX: orientation macros changed
FIX: huge internal bugfix in orientation stuff (big thanks to Abhishek)
FEATURE: added TOUCHPAD_XY_INVERTED macro
+FIX: struct cal renamed to struct cal_t
+FIX: SCREEN_WIDTH and SCREEN_HEIGHT renamed to GDISP_SCREEN_WIDTH and GDISP_SCREEN_HEIGHT
*** changes after 1.0 ***
FIX: removed gdisp and touchpad prefix of driver directories
diff --git a/docs/usage.txt b/docs/usage.txt index 4971ec01..968a1280 100644 --- a/docs/usage.txt +++ b/docs/usage.txt @@ -18,8 +18,8 @@ To include any of these functions/drivers in your project... #define HAL_USE_TOUCHPAD TRUE
#define GDISP_USE_GPIO TRUE
- #define GDISP_SCREEN_WIDTH 240
- #define GDISP_SCREEN_HEIGHT 320
+ #define GDISP_GDISP_SCREEN_WIDTH 240
+ #define GDISP_GDISP_SCREEN_HEIGHT 320
#define GDISP_NEED_CONTROL TRUE
#define TOUCHPAD_NEED_MULTITHREAD TRUE
|