]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/Common/Minimal/EventGroupsDemo.c
Ensure demo app files are using FreeRTOS V8 names - a few were missed previously.
[freertos] / FreeRTOS / Demo / Common / Minimal / EventGroupsDemo.c
index b731655451583cde4dd11373afc1b9c65b61ed97..0574f185700c8f0871a11a2ae6379e7bee7b994a 100644 (file)
@@ -188,7 +188,7 @@ static void prvSelectiveBitsTestSlaveFunction( void );
 \r
 /* Variables that are incremented by the tasks on each cycle provided no errors\r
 have been found.  Used to detect an error or stall in the test cycling. */\r
-static volatile unsigned long ulTestMasterCycles = 0, ulTestSlaveCycles = 0, ulISRCycles = 0;\r
+static volatile uint32_t ulTestMasterCycles = 0, ulTestSlaveCycles = 0, ulISRCycles = 0;\r
 \r
 /* The event group used by all the task based tests. */\r
 static EventGroupHandle_t xEventGroup = NULL;\r
@@ -1045,7 +1045,7 @@ BaseType_t xMessagePosted;
 /* This is called to check that all the created tasks are still running. */\r
 BaseType_t xAreEventGroupTasksStillRunning( void )\r
 {\r
-static unsigned long ulPreviousWaitBitCycles = 0, ulPreviousSetBitCycles = 0, ulPreviousISRCycles = 0;\r
+static uint32_t ulPreviousWaitBitCycles = 0, ulPreviousSetBitCycles = 0, ulPreviousISRCycles = 0;\r
 BaseType_t xStatus = pdPASS;\r
 \r
        /* Check the tasks are still cycling without finding any errors. */\r