FreeCalypso > hg > fc-tourmaline
diff src/cs/drivers/drv_app/r2d/r2d_task.c @ 216:777698cf6583
r2d_task.c: rm trailing white space
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 24 Apr 2021 19:58:49 +0000 |
parents | 4e78acac3d88 |
children | 6541e43f88e5 |
line wrap: on
line diff
--- a/src/cs/drivers/drv_app/r2d/r2d_task.c Sat Apr 24 19:21:06 2021 +0000 +++ b/src/cs/drivers/drv_app/r2d/r2d_task.c Sat Apr 24 19:58:49 2021 +0000 @@ -1,23 +1,23 @@ /** - + @file: r2d_task.c - - @author Christophe Favergeon - - @version 0.5 + + @author Christophe Favergeon + + @version 0.5 Purpose: Refresh task for R2D. It is calling the LCD dependent refresh subroutine - + */ /* - - Date Modification - ------------------------------------ - 06/02/2001 Create + + Date Modification + ------------------------------------ + 06/02/2001 Create 10/18/2001 Version 0.5 for first integration with Riviera database - - + + (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved */ @@ -45,7 +45,7 @@ ** Function r2d_core ** ** Description Core of the r2d task, which refresh the LCD -** +** *******************************************************************************/ T_RVM_RETURN r2d_core(void) { @@ -67,18 +67,18 @@ while (error_occured == FALSE) { UINT16 received_event; - //rvf_send_trace("WAIT EVENT",strlen("WAIT EVENT"), NULL_PARAM, + //rvf_send_trace("WAIT EVENT",strlen("WAIT EVENT"), NULL_PARAM, // RV_TRACE_LEVEL_DEBUG_HIGH, TRACE_XXX ); /* Wait for the necessary events (infinite wait for a msg in the mailbox 0). */ received_event = rvf_wait ( EVENT_MASK(RVF_APPL_EVT_0), 0); - //rvf_send_trace("EVENT RECEIVED",strlen("EVENT RECEIVED"), NULL_PARAM, + //rvf_send_trace("EVENT RECEIVED",strlen("EVENT RECEIVED"), NULL_PARAM, // RV_TRACE_LEVEL_DEBUG_HIGH, TRACE_XXX ); - + /* If an event related to mailbox 0 is received, then */ - if (received_event & EVENT_MASK(RVF_APPL_EVT_0) ) + if (received_event & EVENT_MASK(RVF_APPL_EVT_0) ) { - //rvf_send_trace("GOOD EVENT",strlen("GOOD EVENT"), NULL_PARAM, + //rvf_send_trace("GOOD EVENT",strlen("GOOD EVENT"), NULL_PARAM, // RV_TRACE_LEVEL_DEBUG_HIGH, TRACE_XXX ); r2d_g_event_was_sent=FALSE; @@ -88,6 +88,6 @@ } } - - return RVM_OK; + + return RVM_OK; }