summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/CORTEX_A2F200_SoftConsole/main-blinky.c
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Demo/CORTEX_A2F200_SoftConsole/main-blinky.c')
-rw-r--r--FreeRTOS/Demo/CORTEX_A2F200_SoftConsole/main-blinky.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeRTOS/Demo/CORTEX_A2F200_SoftConsole/main-blinky.c b/FreeRTOS/Demo/CORTEX_A2F200_SoftConsole/main-blinky.c
index 9eec2bcdc..5e4ca97f2 100644
--- a/FreeRTOS/Demo/CORTEX_A2F200_SoftConsole/main-blinky.c
+++ b/FreeRTOS/Demo/CORTEX_A2F200_SoftConsole/main-blinky.c
@@ -158,7 +158,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. */
);