mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 16:57:41 -04:00
* Add test for timer start delayed past expiration This reverts commit53af0ec62e
, which itself reverted9c91199016
. * Add warning about vTimerDemoIncludeBacklogTests() * uncrustify for CI check * Remove unintentional changes to spacing in comments
This commit is contained in:
parent
3693b3e8c9
commit
2e772110e3
2 changed files with 63 additions and 4 deletions
|
@ -30,6 +30,14 @@
|
|||
void vStartTimerDemoTask( TickType_t xBaseFrequencyIn );
|
||||
BaseType_t xAreTimerDemoTasksStillRunning( TickType_t xCycleFrequency );
|
||||
void vTimerPeriodicISRTests( void );
|
||||
|
||||
/*
|
||||
* Test the behavior of backlogged timers. The backlog tests should not be
|
||||
* included while other demos are running concurrently with the timer demo. The
|
||||
* backlog tests utilize xTaskCatchUpTicks(), which is logically equivalent to
|
||||
* starving all tasks for some number of ticks. Under these conditions, other
|
||||
* demos may errantly detect test failures.
|
||||
*/
|
||||
void vTimerDemoIncludeBacklogTests( BaseType_t includeBacklogTests );
|
||||
|
||||
#endif /* TIMER_DEMO_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue