Add event group code to the PIC32MZ demo.

This commit is contained in:
Richard Barry 2014-02-18 10:08:33 +00:00
parent 0f6b699eef
commit c3dd6f6593
10 changed files with 69 additions and 31 deletions

View file

@ -83,6 +83,7 @@
#include "partest.h"
#include "QueueOverwrite.h"
#include "QueueSet.h"
#include "EventGroupsDemo.h"
/* Hardware specific includes. */
#include "ConfigPerformance.h"
@ -222,6 +223,9 @@ void vApplicationTickHook( void )
/* Call the queue set ISR test function. */
vQueueSetAccessQueueSetFromISR();
/* Exercise event groups from interrupts. */
vPeriodicEventGroupsProcessing();
}
#endif
}