From: richardbarry Date: Sun, 28 Mar 2010 17:46:57 +0000 (+0000) Subject: Rename the portRESTORE_CONTEXT_REDUCED macro to portRESTORE_CONTEXT. X-Git-Tag: V6.0.5~11 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=27a5e3ef1c473ec2bc001f5c2d4091c9f501d064;p=freertos Rename the portRESTORE_CONTEXT_REDUCED macro to portRESTORE_CONTEXT. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1007 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/CORTUS_APS3_GCC/Demo/serial.c b/Demo/CORTUS_APS3_GCC/Demo/serial.c index 08f752452..90cf9528a 100644 --- a/Demo/CORTUS_APS3_GCC/Demo/serial.c +++ b/Demo/CORTUS_APS3_GCC/Demo/serial.c @@ -167,7 +167,7 @@ void interrupt_handler( IRQ_UART1_TX ) static signed char cChar; static portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE; - portSAVE_CONTEXT_REDUCED(); + portSAVE_CONTEXT(); /* The interrupt was caused by the transmit fifo having space for at least one character. Are there any more characters to transmit? */ @@ -190,7 +190,7 @@ static portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE; { portYIELD_FROM_ISR(); } - portRESTORE_CONTEXT_REDUCED(); + portRESTORE_CONTEXT(); } /*-----------------------------------------------------------*/ @@ -199,7 +199,7 @@ void interrupt_handler( IRQ_UART1_RX ) static signed char cChar; static portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE; - portSAVE_CONTEXT_REDUCED(); + portSAVE_CONTEXT(); /* The interrupt was caused by the receiver getting data. */ cChar = uart1->rx_data; @@ -215,7 +215,7 @@ static portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE; portYIELD_FROM_ISR(); } - portRESTORE_CONTEXT_REDUCED(); + portRESTORE_CONTEXT(); } /*-----------------------------------------------------------*/