aboutsummaryrefslogtreecommitdiffstats
path: root/readme
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-25 12:44:35 +0200
committerTectu <joel@unormal.org>2012-06-25 12:44:35 +0200
commitccf2780be97616371395c974f1f59d1f664e32af (patch)
treebc30a8b574012029f17dfca1fadd569c82f6aad4 /readme
parent9e5cd3140a56c3097b62029994cc33216e823c36 (diff)
downloaduGFX-ccf2780be97616371395c974f1f59d1f664e32af.tar.gz
uGFX-ccf2780be97616371395c974f1f59d1f664e32af.tar.bz2
uGFX-ccf2780be97616371395c974f1f59d1f664e32af.zip
lld GPIO lsb/msb order fix
Diffstat (limited to 'readme')
-rw-r--r--readme8
1 files changed, 4 insertions, 4 deletions
diff --git a/readme b/readme
index 03c5a9f6..132fc19c 100644
--- a/readme
+++ b/readme
@@ -14,10 +14,10 @@ add the following to your board.h file, matching to your pinconfig:
#define LCD_DATA_PORT_2 GPIOB
#define LCD_DATA_PORT_3 GPIOC
#define LCD_DATA_PORT_4 GPIOE
- #define LCD_DATA_PORT_1_BASE 12
- #define LCD_DATA_PORT_2_BASE 8
- #define LCD_DATA_PORT_3_BASE 4
- #define LCD_DATA_PORT_4_BASE 0
+ #define LCD_DATA_PORT_1_BASE 0
+ #define LCD_DATA_PORT_2_BASE 4
+ #define LCD_DATA_PORT_3_BASE 8
+ #define LCD_DATA_PORT_4_BASE 12
#define LCD_CMD_PORT GPIOD
#define LCD_CS 12
#define LCD_RS 13