/*\r
- FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd. \r
+ FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
All rights reserved\r
\r
VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
\r
/* This demo makes use of one or more example stats formatting functions. These\r
format the raw data provided by the uxTaskGetSystemState() function in to human\r
-readable ASCII form. See the notes in the implementation of vTaskList() within \r
+readable ASCII form. See the notes in the implementation of vTaskList() within\r
FreeRTOS/Source/tasks.c for limitations. */\r
#define configUSE_STATS_FORMATTING_FUNCTIONS 1\r
\r
#define INCLUDE_pcTaskGetTaskName 1\r
#define INCLUDE_eTaskGetState 1\r
#define INCLUDE_xSemaphoreGetMutexHolder 1\r
-#define INCLUDE_xTimerPendCallbackFromISR 1\r
+#define INCLUDE_xTimerPendFunctionCallFromISR 1\r
\r
/* Standard assert semantics. */\r
extern void vAssertCalled( unsigned long ulLine, const char * const pcFileName );\r
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled( __LINE__, __FILE__ )\r
\r
-/* configUSE_PORT_OPTIMISED_TASK_SELECTION is only available in the MSVC \r
+/* configUSE_PORT_OPTIMISED_TASK_SELECTION is only available in the MSVC\r
version of the Win32 simulator projects. It will be ignored in the GCC\r
version. */\r
#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1\r
/* Write to a queue that is in use as part of the queue set demo to\r
demonstrate using queue sets from an ISR. */\r
vQueueSetAccessQueueSetFromISR();\r
+\r
+ /* Exercise event groups from interrupts. */\r
+ vPeriodicEventGroupsProcessing();\r
}\r
/*-----------------------------------------------------------*/\r
\r
/*\r
- FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd. \r
+ FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
All rights reserved\r
\r
VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
#define INCLUDE_pcTaskGetTaskName 1\r
#define INCLUDE_eTaskGetState 1\r
#define INCLUDE_xSemaphoreGetMutexHolder 1\r
-#define INCLUDE_xTimerPendCallbackFromISR 1\r
+#define INCLUDE_xTimerPendFunctionCallFromISR 1\r
\r
/* Standard assert semantics. */\r
extern void vAssertCalled( unsigned long ulLine, const char * const pcFileName );\r
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled( __LINE__, __FILE__ )\r
\r
-/* configUSE_PORT_OPTIMISED_TASK_SELECTION is only available in the MSVC \r
+/* configUSE_PORT_OPTIMISED_TASK_SELECTION is only available in the MSVC\r
version of the Win32 simulator projects. It will be ignored in the GCC\r
version. */\r
#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1\r