summaryrefslogtreecommitdiffstats
path: root/nuttx/configs/stm3240g-eval/src
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-27 18:29:04 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-27 18:29:04 +0000
commit81713da5035b62d96a4516c391476e13e0568ee5 (patch)
tree53266b0ceb89f5706fd21c7d83c824a329b0a002 /nuttx/configs/stm3240g-eval/src
parent6e24d9d599714ad6ceb2124fe5aba536e6c8ee2b (diff)
More STM3240G-EVAL LCD updates
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4665 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/configs/stm3240g-eval/src')
-rw-r--r--nuttx/configs/stm3240g-eval/src/up_lcd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/configs/stm3240g-eval/src/up_lcd.c b/nuttx/configs/stm3240g-eval/src/up_lcd.c
index c77af6ac0c..4ab5c02585 100644
--- a/nuttx/configs/stm3240g-eval/src/up_lcd.c
+++ b/nuttx/configs/stm3240g-eval/src/up_lcd.c
@@ -914,7 +914,7 @@ static inline void stm3240g_lcdinitialize(void)
{
uint16_t id;
- /* Check if the LCD is xxx Controller (or the compatible) */
+ /* Check LCD ID */
id = stm3240g_readreg(LCD_REG_0);
lcddbg("LCD ID: %04x\n", id);
@@ -1197,6 +1197,6 @@ void stm3240g_lcdclear(uint16_t color)
for (i = 0; i < STM3240G_XRES * STM3240G_YRES; i++)
{
LCD->value = color;
- }
+ }
}