summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/CORTEX_LM3Sxxxx_IAR_Keil/webserver/emac.c
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Demo/CORTEX_LM3Sxxxx_IAR_Keil/webserver/emac.c')
-rw-r--r--FreeRTOS/Demo/CORTEX_LM3Sxxxx_IAR_Keil/webserver/emac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/FreeRTOS/Demo/CORTEX_LM3Sxxxx_IAR_Keil/webserver/emac.c b/FreeRTOS/Demo/CORTEX_LM3Sxxxx_IAR_Keil/webserver/emac.c
index 145efdbb7..ec34b9240 100644
--- a/FreeRTOS/Demo/CORTEX_LM3Sxxxx_IAR_Keil/webserver/emac.c
+++ b/FreeRTOS/Demo/CORTEX_LM3Sxxxx_IAR_Keil/webserver/emac.c
@@ -96,12 +96,12 @@ void vMACHandleTask( void *pvParameters );
/*-----------------------------------------------------------*/
/* The semaphore used to wake the uIP task when data arrives. */
-xSemaphoreHandle xEMACSemaphore = NULL;
+SemaphoreHandle_t xEMACSemaphore = NULL;
/* The semaphore used to wake the interrupt handler task. The peripheral
is processed at the task level to prevent the need to read the entire FIFO from
within the ISR itself. */
-xSemaphoreHandle xMACInterruptSemaphore = NULL;
+SemaphoreHandle_t xMACInterruptSemaphore = NULL;
/* The buffer used by the uIP stack. In this case the pointer is used to
point to one of the Rx buffers. */