summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-12-29 09:59:46 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-12-29 09:59:46 -0600
commit064703c28579a283f23d7d58e75f3ca2166ae4f4 (patch)
tree3a8b152721cd150732260a9f3de00e3a1f70dc2e /apps
parent7c98e5cc9443f6d97d5c9d99e40723ce6b2e5cd7 (diff)
downloadnuttx-064703c28579a283f23d7d58e75f3ca2166ae4f4.tar.gz
nuttx-064703c28579a283f23d7d58e75f3ca2166ae4f4.tar.bz2
nuttx-064703c28579a283f23d7d58e75f3ca2166ae4f4.zip
stm32: update description and code documentation. Also fixes a few code formattings.
Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/ltdc/ltdc_main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/examples/ltdc/ltdc_main.c b/apps/examples/ltdc/ltdc_main.c
index 629a1da3e..3f2aafca3 100644
--- a/apps/examples/ltdc/ltdc_main.c
+++ b/apps/examples/ltdc/ltdc_main.c
@@ -685,7 +685,7 @@ static void ltdc_color_test(void)
sur->layer->setarea(sur->layer, &area, area.xpos, area.ypos);
- dbg("Update the layer, should be black outside the white rectangle\n");
+ dbg("Update the layer, should be black outside the colorful rectangle\n");
sur->layer->update(sur->layer, LTDC_SYNC_VBLANK|LTDC_SYNC_WAIT);
@@ -693,7 +693,7 @@ static void ltdc_color_test(void)
/* Default Color red */
- dbg("Update the layer, should be red outside the white rectangle\n");
+ dbg("Update the layer, should be red outside the colorful rectangle\n");
sur->layer->setcolor(sur->layer, 0xffff0000);
@@ -705,7 +705,7 @@ static void ltdc_color_test(void)
/* Default Color green */
- dbg("Update the layer, should be green outside the white rectangle\n");
+ dbg("Update the layer, should be green outside the colorful rectangle\n");
sur->layer->setcolor(sur->layer, 0xff00ff00);
@@ -717,7 +717,7 @@ static void ltdc_color_test(void)
/* Default Color blue */
- dbg("Update the layer, should be blue outside the white rectangle\n");
+ dbg("Update the layer, should be blue outside the colorful rectangle\n");
sur->layer->setcolor(sur->layer, 0xff0000ff);