Add the event group interrupt tests to the Win32 demo projects.

pull/1/head
Richard Barry 11 years ago
parent 8ae3d489fe
commit 3705435417

@ -137,7 +137,7 @@ to exclude the API function. */
#define INCLUDE_pcTaskGetTaskName 1 #define INCLUDE_pcTaskGetTaskName 1
#define INCLUDE_eTaskGetState 1 #define INCLUDE_eTaskGetState 1
#define INCLUDE_xSemaphoreGetMutexHolder 1 #define INCLUDE_xSemaphoreGetMutexHolder 1
#define INCLUDE_xTimerPendCallbackFromISR 1 #define INCLUDE_xTimerPendFunctionCallFromISR 1
/* Standard assert semantics. */ /* Standard assert semantics. */
extern void vAssertCalled( unsigned long ulLine, const char * const pcFileName ); extern void vAssertCalled( unsigned long ulLine, const char * const pcFileName );

@ -402,6 +402,9 @@ void vFullDemoTickHookFunction( void )
/* Write to a queue that is in use as part of the queue set demo to /* Write to a queue that is in use as part of the queue set demo to
demonstrate using queue sets from an ISR. */ demonstrate using queue sets from an ISR. */
vQueueSetAccessQueueSetFromISR(); vQueueSetAccessQueueSetFromISR();
/* Exercise event groups from interrupts. */
vPeriodicEventGroupsProcessing();
} }
/*-----------------------------------------------------------*/ /*-----------------------------------------------------------*/

@ -134,7 +134,7 @@ to exclude the API function. */
#define INCLUDE_pcTaskGetTaskName 1 #define INCLUDE_pcTaskGetTaskName 1
#define INCLUDE_eTaskGetState 1 #define INCLUDE_eTaskGetState 1
#define INCLUDE_xSemaphoreGetMutexHolder 1 #define INCLUDE_xSemaphoreGetMutexHolder 1
#define INCLUDE_xTimerPendCallbackFromISR 1 #define INCLUDE_xTimerPendFunctionCallFromISR 1
/* Standard assert semantics. */ /* Standard assert semantics. */
extern void vAssertCalled( unsigned long ulLine, const char * const pcFileName ); extern void vAssertCalled( unsigned long ulLine, const char * const pcFileName );

Loading…
Cancel
Save