summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/CORTEX_A2F200_SoftConsole/main-blinky.c
diff options
context:
space:
mode:
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2020-01-16 04:25:29 +0000
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2020-01-16 04:25:29 +0000
commit8381ddf110790d5adceeb630f3a4be13719ef301 (patch)
treee39853d44d4b91c26e5f0620b384b8e1dc74ac78 /FreeRTOS/Demo/CORTEX_A2F200_SoftConsole/main-blinky.c
parent63484f7af7c645c4d517ca7a87d131cb83758792 (diff)
downloadfreertos-8381ddf110790d5adceeb630f3a4be13719ef301.tar.gz
Ensure both one-shot and auto-reload are written consistently with a hyphen in comments.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@2805 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
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. */
);