X-Git-Url: https://git.sur5r.net/?p=freertos;a=blobdiff_plain;f=FreeRTOS%2FDemo%2FCORTEX_MB9B500_IAR_Keil%2Fmain_blinky.c;fp=FreeRTOS%2FDemo%2FCORTEX_MB9B500_IAR_Keil%2Fmain_blinky.c;h=28b737760ef71281aaf78a59f79f2f0245797993;hp=4401c541897627681f2a2c209a4a0deb71816e4c;hb=61a5601b461eea61201ee14fc20615ddecf8c259;hpb=03e994cd3c20d0c4cb101923e06c4dcd7376b132 diff --git a/FreeRTOS/Demo/CORTEX_MB9B500_IAR_Keil/main_blinky.c b/FreeRTOS/Demo/CORTEX_MB9B500_IAR_Keil/main_blinky.c index 4401c5418..28b737760 100644 --- a/FreeRTOS/Demo/CORTEX_MB9B500_IAR_Keil/main_blinky.c +++ b/FreeRTOS/Demo/CORTEX_MB9B500_IAR_Keil/main_blinky.c @@ -154,7 +154,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. */ );