more oled fixes

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2677 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2010-05-15 23:03:17 +00:00
parent 19d41ed5ff
commit 9ccd158477
4 changed files with 8 additions and 4 deletions
+4
View File
@@ -97,6 +97,10 @@ OLED
- PC7: OLED display data/control select (D/Cn)
- PA3: OLED display chip select (CSn)
NOTE: Newer versions of the LM3S6965 Evaluation Kit has an OSAM 128x64x4 OLED
display. Some tweaks to drivers/lcd/p14201.c would be required to support that
LCD.
Development Environment
^^^^^^^^^^^^^^^^^^^^^^^
@@ -105,7 +105,7 @@
* - PA3: OLED display chip select (CSn)
*/
#define OLEDDC_GPIO (GPIO_FUNC_OUTPUT | GPIO_PADTYPE_STDWPU | GPIO_STRENGTH_4MA | \
#define OLEDDC_GPIO (GPIO_FUNC_OUTPUT | GPIO_PADTYPE_STD | GPIO_STRENGTH_8MA | \
GPIO_VALUE_ONE | GPIO_PORTC | 7)
#define OLEDCS_GPIO (GPIO_FUNC_OUTPUT | GPIO_PADTYPE_STDWPU | GPIO_STRENGTH_4MA | \
GPIO_VALUE_ONE | GPIO_PORTA | 3)