]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/CORTEX_CY8C5588_PSoC_Creator_RVDS/FreeRTOS_Demo.cydsn/main.c
***IMMINENT RELEASE NOTICE***
[freertos] / FreeRTOS / Demo / CORTEX_CY8C5588_PSoC_Creator_RVDS / FreeRTOS_Demo.cydsn / main.c
index 930f828f3e97b4f7f54d2ebb17ca48bc4bae9dfb..9e96f1cc1140245bb779e1e56710c918dbb880aa 100644 (file)
@@ -1,5 +1,6 @@
 /*\r
-    FreeRTOS V7.5.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
+    FreeRTOS V8.1.0 - Copyright (C) 2014 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
     the terms of the GNU General Public License (version 2) as published by the\r
     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
 \r
-    >>! NOTE: The modification to the GPL is included to allow you to distribute\r
-    >>! a combined work that includes FreeRTOS without being obliged to provide\r
-    >>! the source code for proprietary components outside of the FreeRTOS\r
-    >>! kernel.\r
+    >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
+    >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
+    >>!   obliged to provide the source code for proprietary components     !<<\r
+    >>!   outside of the FreeRTOS kernel.                                   !<<\r
 \r
     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
 \r
 /* The time between cycles of the 'check' functionality (defined within the\r
 tick hook. */\r
-#define mainCHECK_DELAY                                                ( ( portTickType ) 5000 / portTICK_RATE_MS )\r
+#define mainCHECK_DELAY                                                ( ( TickType_t ) 5000 / portTICK_PERIOD_MS )\r
 #define mainCOM_LED                                                    ( 3 )\r
 \r
 /* The number of nano seconds between each processor clock. */\r
-#define mainNS_PER_CLOCK ( ( unsigned portLONG ) ( ( 1.0 / ( double ) configCPU_CLOCK_HZ ) * 1000000000.0 ) )\r
+#define mainNS_PER_CLOCK ( ( unsigned long ) ( ( 1.0 / ( double ) configCPU_CLOCK_HZ ) * 1000000000.0 ) )\r
 \r
 /* Task priorities. */\r
 #define mainQUEUE_POLL_PRIORITY                                ( tskIDLE_PRIORITY + 2 )\r
@@ -121,7 +122,7 @@ extern void vSetupTimerTest( void );
 /*\r
  * The Check task periodical interrogates each of the running tests to\r
  * ensure that they are still executing correctly.\r
- * If all the tests pass, then the LCD is updated with Pass, the number of \r
+ * If all the tests pass, then the LCD is updated with Pass, the number of\r
  * iterations and the Jitter time calculated but the Fast Interrupt Test.\r
  * If any one of the tests fail, it is indicated with an error code printed on\r
  * the display. This indicator won't disappear until the device is reset.\r
@@ -156,7 +157,7 @@ void main( void )
        vStartInterruptQueueTasks();\r
 \r
        /* Start the error checking task. */\r
-       ( void ) xTaskCreate( vCheckTask, ( signed portCHAR * ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
+       ( void ) xTaskCreate( vCheckTask, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
 \r
        /* Configure the timers used by the fast interrupt timer test. */\r
        vSetupTimerTest();\r
@@ -203,14 +204,14 @@ extern cyisraddress CyRamVectors[];
 \r
        /* Start the UART. */\r
        UART_1_Start();\r
-       \r
+\r
        /* Initialise the LEDs. */\r
        vParTestInitialise();\r
-       \r
+\r
        /* Start the PWM modules that drive the IntQueue tests. */\r
        High_Frequency_PWM_0_Start();\r
        High_Frequency_PWM_1_Start();\r
-       \r
+\r
        /* Start the timers for the Jitter test. */\r
        Timer_20KHz_Start();\r
        Timer_48MHz_Start();\r
@@ -220,80 +221,80 @@ extern cyisraddress CyRamVectors[];
 void vCheckTask( void *pvParameters )\r
 {\r
 unsigned long ulRow = 0;\r
-portTickType xDelay = 0;\r
+TickType_t xDelay = 0;\r
 unsigned short usErrorCode = 0;\r
 unsigned long ulIteration = 0;\r
-extern unsigned portSHORT usMaxJitter;\r
+extern unsigned short usMaxJitter;\r
 \r
        /* Intialise the sleeper. */\r
        xDelay = xTaskGetTickCount();\r
-       \r
+\r
        for( ;; )\r
        {\r
                /* Perform this check every mainCHECK_DELAY milliseconds. */\r
                vTaskDelayUntil( &xDelay, mainCHECK_DELAY );\r
-               \r
+\r
                /* Check that all of the Demo tasks are still running. */\r
                if( pdTRUE != xAreBlockingQueuesStillRunning() )\r
                {\r
                        usErrorCode |= 0x1;\r
                }\r
-               \r
+\r
                if( pdTRUE != xAreBlockTimeTestTasksStillRunning() )\r
                {\r
                        usErrorCode |= 0x2;\r
                }\r
-               \r
+\r
                if( pdTRUE != xAreCountingSemaphoreTasksStillRunning() )\r
                {\r
                        usErrorCode |= 0x4;\r
                }\r
-               \r
+\r
                if( pdTRUE != xIsCreateTaskStillRunning() )\r
                {\r
                        usErrorCode |= 0x8;\r
                }\r
-               \r
+\r
                if( pdTRUE != xAreDynamicPriorityTasksStillRunning() )\r
                {\r
                        usErrorCode |= 0x10;\r
                }\r
-               \r
+\r
                if( pdTRUE != xAreMathsTaskStillRunning() )\r
                {\r
                        usErrorCode |= 0x20;\r
                }\r
-               \r
+\r
                if( pdTRUE != xAreGenericQueueTasksStillRunning() )\r
                {\r
                        usErrorCode |= 0x40;\r
                }\r
-               \r
+\r
                if( pdTRUE != xAreIntegerMathsTaskStillRunning() )\r
                {\r
                        usErrorCode |= 0x80;\r
                }\r
-               \r
+\r
                if( pdTRUE != xArePollingQueuesStillRunning() )\r
                {\r
                        usErrorCode |= 0x100;\r
                }\r
-               \r
+\r
                if( pdTRUE != xAreQueuePeekTasksStillRunning() )\r
                {\r
                        usErrorCode |= 0x200;\r
                }\r
-                               \r
+\r
                if( pdTRUE != xAreSemaphoreTasksStillRunning() )\r
                {\r
                        usErrorCode |= 0x400;\r
                }\r
-               \r
+\r
                if( pdTRUE != xAreComTestTasksStillRunning() )\r
                {\r
                        usErrorCode |= 0x800;\r
                }\r
-               \r
+\r
                if( pdTRUE != xAreIntQueueTasksStillRunning() )\r
                {\r
                        usErrorCode |= 0x1000;\r
@@ -324,7 +325,7 @@ extern unsigned portSHORT usMaxJitter;
 }\r
 /*---------------------------------------------------------------------------*/\r
 \r
-void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )\r
+void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )\r
 {\r
        /* The stack space has been execeeded for a task, considering allocating more. */\r
        taskDISABLE_INTERRUPTS();\r