summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/CORTEX_MB9A310_IAR_Keil/main_blinky.c
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Demo/CORTEX_MB9A310_IAR_Keil/main_blinky.c')
-rw-r--r--FreeRTOS/Demo/CORTEX_MB9A310_IAR_Keil/main_blinky.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeRTOS/Demo/CORTEX_MB9A310_IAR_Keil/main_blinky.c b/FreeRTOS/Demo/CORTEX_MB9A310_IAR_Keil/main_blinky.c
index e9065497f..aaf9baa4e 100644
--- a/FreeRTOS/Demo/CORTEX_MB9A310_IAR_Keil/main_blinky.c
+++ b/FreeRTOS/Demo/CORTEX_MB9A310_IAR_Keil/main_blinky.c
@@ -153,7 +153,7 @@ int main(void)
this file. */
xLEDTimer = xTimerCreate( "LEDTimer", /* A text name, purely to help debugging. */
( 5000 / portTICK_PERIOD_MS ), /* The timer period, in this case 5000ms (5s). */
- pdFALSE, /* This is a one shot timer, so xAutoReload is set to pdFALSE. */
+ pdFALSE, /* This is a one-shot timer, so xAutoReload is set to pdFALSE. */
( void * ) 0, /* The ID is not used, so can be set to anything. */
vLEDTimerCallback /* The callback function that switches the LED off. */
);