STM32L-Discovery LCD driver is code compele but untested

This commit is contained in:
Gregory Nutt
2013-05-23 15:23:29 -06:00
parent c1f6d50093
commit abf8c8a13a
11 changed files with 1088 additions and 213 deletions
+2 -2
View File
@@ -150,8 +150,8 @@
#define ASCII_LBRACKET 0x5b /* Left bracket ([) */
#define ASCII_BACKSLASH 0x5c /* Back slash (\) */
#define ASCII_RBRACKET 0x5d /* Right bracket (]) */
#define ASCII_CARET 0x5c /* Caret (^) */
#define ASCII_CIRCUMFLEX 0x5c /* Circumflex (^) */
#define ASCII_CARET 0x5e /* Caret (^) */
#define ASCII_CIRCUMFLEX 0x5e /* Circumflex (^) */
#define ASCII_UNDERSCORE 0x5f /* Underscore (_) */
#define ASCII_RSQUOT 0x60 /* Closing single quote */
+2 -2
View File
@@ -66,8 +66,8 @@ enum slcdcode_e
* ASCII BKSP and DEL values.
*/
SLCDCODE_FWDDEL, /* DELete (forward delete) N characters moving cursor */
SLCDCODE_BACKDEL, /* Backspace (backward delete) N characters */
SLCDCODE_FWDDEL, /* DELete (forward delete) N characters moving text */
SLCDCODE_BACKDEL, /* Backspace (backward delete) N characters moving cursor */
SLCDCODE_ERASE, /* Erase N characters from the cursor position */
SLCDCODE_ERASEEOL, /* Erase from the cursor position to the end of line */
SLCDCODE_CLEAR, /* Home the cursor and erase the entire display */