From 064703c28579a283f23d7d58e75f3ca2166ae4f4 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 29 Dec 2014 09:59:46 -0600 Subject: stm32: update description and code documentation. Also fixes a few code formattings. Signed-off-by: Marco Krahl --- apps/examples/ltdc/ltdc_main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/examples') 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); -- cgit v1.2.3