Add software timer to the Win32 blinky demo.

This commit is contained in:
Richard Barry 2019-11-18 17:35:40 +00:00
parent 07622ed3ee
commit d1fb8907ab
3 changed files with 4 additions and 2 deletions

View file

@ -160,6 +160,8 @@ const TickType_t xTimerPeriod = mainTIMER_SEND_FREQUENCY_MS;
NULL, /* The timer's ID is not used. */
prvQueueSendTimerCallback );/* The function executed when the timer expires. */
xTimerStart( xTimer, 0 ); /* The scheduler has not started so use a block time of 0. */
/* Start the tasks and timer running. */
vTaskStartScheduler();
}