aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-05-29 02:10:11 +0200
committerTectu <joel@unormal.org>2012-05-29 02:10:11 +0200
commit1fcb2ba9c26ba2209f882309b5d8019cf3eb642c (patch)
tree8de60657fe2beb221d9d8f9d9a3ced156a9f17ee
parentd4825766560e27594abee4b3a00dff7fd4260826 (diff)
downloaduGFX-1fcb2ba9c26ba2209f882309b5d8019cf3eb642c.tar.gz
uGFX-1fcb2ba9c26ba2209f882309b5d8019cf3eb642c.tar.bz2
uGFX-1fcb2ba9c26ba2209f882309b5d8019cf3eb642c.zip
added static heigh and width variables for supporting different modes
-rwxr-xr-xglcd.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/glcd.c b/glcd.c
index 5effa0eb..d62b54e0 100755
--- a/glcd.c
+++ b/glcd.c
@@ -3,7 +3,7 @@
#include <math.h>
static uint8_t orientation;
-static uint16_t DeviceCode, temp;
+static uint16_t DeviceCode, lcd_height, lcd_width;
static __inline void lcdWriteIndex(uint16_t index) {
Clr_RS;
@@ -106,18 +106,26 @@ void lcdSetOrientation(uint8_t newOrientation) {
case portrait:
lcdWriteReg(0x0001, 0x2B3F);
lcdWriteReg(0x0011, 0x6070);
+ lcd_height = SCREEN_HEIGHT;
+ lcd_width = SCREEN_WIDTH;
break;
case landscape:
lcdWriteReg(0x0001, 0x293F);
lcdWriteReg(0x0011, 0x6078);
+ lcd_height = SCREEN_WIDTH;
+ lcd_width = SCREEN_HEIGHT;
break;
case portraitInv:
lcdWriteReg(0x0001, 0x693F);
lcdWriteReg(0x0011, 0x6040);
+ lcd_height = SCREEN_HEIGHT;
+ lcd_width = SCREEN_WIDTH;
break;
case landscapeInv:
lcdWriteReg(0x0001, 0x6B3F);
lcdWriteReg(0x0011, 0x6048);
+ lcd_height = SCREEN_WIDTH;
+ lcd_width = SCREEN_HEIGHT;
break;
}
}
@@ -370,8 +378,8 @@ void lcdTest(void) {
uint8_t y;
uint8_t r,g,b;
- for(y = 0; y < SCREEN_HEIGHT; y++) {
- for(x = 0; x < SCREEN_WIDTH; x++) {
+ for(y = 0; y < lcd_height; y++) {
+ for(x = 0; x < lcd_width; x++) {
r = x + y;
g = x - y;
b = y - x;