]> git.sur5r.net Git - freertos/commitdiff
Correct comment error that was replicated on many different main_full.c files.
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 4 Apr 2016 14:53:04 +0000 (14:53 +0000)
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 4 Apr 2016 14:53:04 +0000 (14:53 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2438 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

28 files changed:
FreeRTOS/Demo/CORTEX_A53_64-bit_UltraScale_MPSoC/RTOSDemo_A53/src/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_A5_SAMA5D4x_EK_IAR/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_A9_Cyclone_V_SoC_DK/main_full.c
FreeRTOS/Demo/CORTEX_A9_RZ_R7S72100_IAR_DS-5/Source/Full-Demo/main_full.c
FreeRTOS/Demo/CORTEX_A9_Zynq_ZC702/RTOSDemo/src/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_EFM32_Giant_Gecko_Simplicity_Studio/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_EFM32_Giant_Gecko_Simplicity_Studio/ReadMe_Instructions.url [new file with mode: 0644]
FreeRTOS/Demo/CORTEX_EFM32_Pearl_Gecko_Simplicity_Studio/FreeRTOSConfig.h
FreeRTOS/Demo/CORTEX_EFM32_Pearl_Gecko_Simplicity_Studio/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_EFM32_Pearl_Gecko_Simplicity_Studio/ReadMe_Instructions.url [new file with mode: 0644]
FreeRTOS/Demo/CORTEX_M4F_CEC1302_Keil/peripheral_library/cfg.h [deleted file]
FreeRTOS/Demo/CORTEX_M4F_MSP432_LaunchPad_IAR_CCS_Keil/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_M7_SAME70_Xplained_AtmelStudio/src/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_AtmelStudio/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_IAR_Keil/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL_IAR_Keil/Full_Demo/main_full.c
FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/src/Full_Demo/main_full.c
FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/Full_Demo/main_full.c
FreeRTOS/Demo/RX100_RX113-RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/main_full.c
FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/main_full.c
FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Full_Demo/main_full.c
FreeRTOS/Demo/WIN32-MSVC/main_full.c

index 34ed90ff2b3bfa979a7ff12c7cc09dfde384e6a7..5a7bbceeabb537ddcbb2a5fb39f277bb517e77d6 100644 (file)
 #define mainCOM_TEST_TASK_PRIORITY                     ( tskIDLE_PRIORITY + ( UBaseType_t ) 2 )\r
 #define mainCHECK_TASK_PRIORITY                                ( configMAX_PRIORITIES - ( UBaseType_t ) 1 )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 0 )\r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( ( TickType_t ) 0 )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( ( TickType_t ) 5000 )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
 #define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( ( TickType_t ) ( 200 ) )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
@@ -392,7 +392,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -415,7 +415,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index 81524873f381539097cea74fed3b8d2012c3ad0f..bef7de92f136e5db52f5623dc79c0f0d21e3e43d 100644 (file)
 /* The initial priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 0 )\r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD         ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD            ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -427,7 +427,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -450,7 +450,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index 17c863c92282b2f5d2834cd412ee2cb644b5aa26..09b7032c6e08aade4cff0f1efd431e58acfd6197 100644 (file)
 /* The initial priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 0 )\r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD         ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD            ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -427,7 +427,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -450,7 +450,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index a599075a43e1caf923df6d1182d17608e6aacee5..036d670b3e3a9f694531fcd9d3d315c0672e095a 100644 (file)
 uses the Altera polling UART driver - so *must* run at the idle priority. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( tskIDLE_PRIORITY )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 0 )\r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD         ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD            ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -416,7 +416,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -439,7 +439,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index ffce5ab61a80d837a27fd0d82ba2930a59cfeaca..f45b8e4e6a4cfa03ca3e43354f2bf1941d223d30 100644 (file)
@@ -180,7 +180,7 @@ to be fitted to the UART port. */
 /* The priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 0 )\r
 \r
 /* A block time of zero simply means "don't block". */\r
@@ -191,15 +191,15 @@ the COM test tasks, so just set both to invalid values. */
 #define mainCOM_TEST_LED                                       ( 100 )\r
 #define mainBAUD_RATE                                          ( 0 )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD                 ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD    ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -487,7 +487,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -510,7 +510,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index c113594776f4000a7191ddaca39e1e8a0c85a5e2..91cbf6a9c79aafcd324fb07785e3a65a5d96cc26 100644 (file)
 /* The priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 0 )\r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD         ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD            ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -469,7 +469,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -492,7 +492,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index 7888273eda07a80ef0dd4414aba93ca835eeafe7..5f382cebe24d71b911a253e29d32f5556205cb4e 100644 (file)
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the portTICK_PERIOD_MS constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+portTICK_PERIOD_MS constant. */\r
 #define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
@@ -366,7 +366,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -384,7 +384,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
diff --git a/FreeRTOS/Demo/CORTEX_EFM32_Giant_Gecko_Simplicity_Studio/ReadMe_Instructions.url b/FreeRTOS/Demo/CORTEX_EFM32_Giant_Gecko_Simplicity_Studio/ReadMe_Instructions.url
new file mode 100644 (file)
index 0000000..7a7ec0e
--- /dev/null
@@ -0,0 +1,5 @@
+[{000214A0-0000-0000-C000-000000000046}]\r
+Prop3=19,2\r
+[InternetShortcut]\r
+URL=http://www.freertos.org/EFM32-Giant-Gecko-Pearl-Gecko-tickless-RTOS-demo.html\r
+IDList=\r
index 662b26aefe66256615818c8fe224de886f3e7aa6..dc8de7ee61ae00a5f6a710a46c1ca7c17ffb5b56 100644 (file)
@@ -98,7 +98,7 @@ extern "C" {
  *  See the comments at the top of main.c, main_full.c and main_low_power.c for\r
  *  more information.\r
  */\r
-#define configCREATE_LOW_POWER_DEMO            1\r
+#define configCREATE_LOW_POWER_DEMO            0\r
 \r
 /* Some configuration is dependent on the demo being built. */\r
 #if( configCREATE_LOW_POWER_DEMO == 0 )\r
index 7888273eda07a80ef0dd4414aba93ca835eeafe7..5f382cebe24d71b911a253e29d32f5556205cb4e 100644 (file)
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the portTICK_PERIOD_MS constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+portTICK_PERIOD_MS constant. */\r
 #define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
@@ -366,7 +366,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -384,7 +384,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
diff --git a/FreeRTOS/Demo/CORTEX_EFM32_Pearl_Gecko_Simplicity_Studio/ReadMe_Instructions.url b/FreeRTOS/Demo/CORTEX_EFM32_Pearl_Gecko_Simplicity_Studio/ReadMe_Instructions.url
new file mode 100644 (file)
index 0000000..7a7ec0e
--- /dev/null
@@ -0,0 +1,5 @@
+[{000214A0-0000-0000-C000-000000000046}]\r
+Prop3=19,2\r
+[InternetShortcut]\r
+URL=http://www.freertos.org/EFM32-Giant-Gecko-Pearl-Gecko-tickless-RTOS-demo.html\r
+IDList=\r
diff --git a/FreeRTOS/Demo/CORTEX_M4F_CEC1302_Keil/peripheral_library/cfg.h b/FreeRTOS/Demo/CORTEX_M4F_CEC1302_Keil/peripheral_library/cfg.h
deleted file mode 100644 (file)
index 9393aea..0000000
+++ /dev/null
@@ -1,327 +0,0 @@
-/****************************************************************************\r
-* Â© 2013 Microchip Technology Inc. and its subsidiaries.\r
-* You may use this software and any derivatives exclusively with\r
-* Microchip products.\r
-* THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS".\r
-* NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE,\r
-* INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY,\r
-* AND FITNESS FOR A PARTICULAR PURPOSE, OR ITS INTERACTION WITH MICROCHIP\r
-* PRODUCTS, COMBINATION WITH ANY OTHER PRODUCTS, OR USE IN ANY APPLICATION.\r
-* IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE,\r
-* INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND\r
-* WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS\r
-* BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE.\r
-* TO THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL\r
-* CLAIMS IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF\r
-* FEES, IF ANY, THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.\r
-* MICROCHIP PROVIDES THIS SOFTWARE CONDITIONALLY UPON YOUR ACCEPTANCE\r
-* OF THESE TERMS.\r
-*/\r
-\r
-/** @defgroup pwm pwm_c_wrapper\r
- *  @{\r
- */\r
-/** @file pwm_c_wrapper.cpp\r
- \brief the pwm component C wrapper   \r
- This program is designed to allow the other C programs to be able to use this component\r
-\r
- There are entry points for all C wrapper API implementation\r
-\r
-<b>Platform:</b> This is ARC-based component \r
-\r
-<b>Toolset:</b> Metaware IDE(8.5.1)\r
-<b>Reference:</b> smsc_reusable_fw_requirement.doc */\r
-\r
-/*******************************************************************************\r
- *  SMSC version control information (Perforce):\r
- *\r
- *  FILE:     $File: //depot_pcs/FWEng/Release/projects/CEC1302_CLIB/release2/Source/hw_blks/common/include/cfg.h $\r
- *  REVISION: $Revision: #1 $\r
- *  DATETIME: $DateTime: 2015/12/23 15:37:58 $\r
- *  AUTHOR:   $Author: akrishnan $\r
- *\r
- *  Revision history (latest first):\r
- *      #1 Branched from //depotAE/projects/Sensor_Fusion/maincodeline/sf01_evb\r
- *      #2 Updated tasks for smbus driver and smbus application\r
- *      #3 Added feature, algo and fusion task\r
- *      #4 Removed smbapp task\r
- ***********************************************************************************\r
- */\r
-\r
-#ifndef _CFG_H_\r
-#define _CFG_H_\r
-\r
-\r
-/*\r
- * TOOLSET  : defines the build tools used\r
- *          TOOLKEIL - For KEIL Toolset\r
- *          TOOLPC   - For PC Toolset, ex: MSVC++ 6.0,Borland C..etc.\r
- *\r
- */\r
-\r
-\r
-#define INTERACTIVE_UART 0\r
-\r
-/*\r
- * TASK_XX  : defines the Kernel Task Assignements to Different Application Specific Tasks\r
- *          : Always TASK_00 is High Priority\r
- *          : Ex1: To Assign timer task to TASK_00\r
- *          :     #define TASK_00   timer\r
- *          : Ex2: To Assign pwm task to TASK_03\r
- *          :     #define TASK_03   pwm\r
- *          : Each Task should have Following Function Definitions\r
- *          : (void) Tasxx_Init_task(void);\r
- *          : (void) Taskxx_Main_task(enum EVENT_TYPE event);\r
- *          : Please refer kernel.h for enum EVENT_TYPE\r
- *          : Ex: If Application needs "tach" task should be added to kernel,\r
- *          :     tach.c should contain following public calls:\r
- *          :     (void)tach_init_task(void);\r
- *          :     (void)tach_main_task(enum EVENT_TYPE event);\r
- *          :\r
- *          : Each Task's event ie. EVENT TASK & EVENT TIMEOUT could be assigned the \r
- *          : priority level. if it is assigned HIGH, then Task's event will belong to\r
- *          : HIGH priority group.\r
- *          : ex: define TASK_04 as pwm and pwm tasks event with following priority list\r
- *          : PRIORITY_TASK_04_EVENTTASK    LOW  - This means, the pwm task (which is TASK_04) Event Task will be assigned to low priority group\r
- *          : PRIORITY_TASK_04_EVENTTIMEOUT HIGH - This means, the pwm task Event Timeout will be assigned Hihg priority group\r
- *\r
- */\r
-#define LOW     0\r
-#define HIGH    !LOW\r
-\r
-#define INTR_ON     1\r
-#define INTR_OFF    0\r
-\r
-#define TASK_SCHED_LO   1\r
-#define TASK_SCHED_HI   2\r
-\r
-#define MAX_NUM_TASKS  31    // Bits 0 - 30\r
-\r
-// !!!! CRITICAL !!!\r
-// You MUST define the following values correctly\r
-//\r
-#define NUMBER_OF_TASKS 18                               /* Total No: of Enabled Tasks           */\r
-\r
-#define TASK_00                         timer            /* TASK_00=timer                        */\r
-#define PRIORITY_TASK_00_EVENTTASK      HIGH             /* Timer Event Task HIGH priority       */\r
-#define PRIORITY_TASK_00_EVENTTIMEOUT   HIGH             /* Timer Event Timeout HIGH priority    */\r
-#define ENABLE_TASK_00_EVENTINTR        1                /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_00_EVENTTASK        0\r
-#define ENABLE_TASK_00_EVENTTIMER       0\r
-\r
-#define TASK_01                         spi              /* Task_01=spi - for spi                */\r
-#define PRIORITY_TASK_01_EVENTTASK      LOW              /* Event Task HIGH priority             */\r
-#define PRIORITY_TASK_01_EVENTTIMEOUT   LOW              /* Event Timeout LOW priority              */\r
-#define ENABLE_TASK_01_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_01_EVENTTASK        0\r
-#define ENABLE_TASK_01_EVENTTIMER       1\r
-\r
-#define TASK_02                         smbus            /* Task_02=smbus                          */\r
-#define PRIORITY_TASK_02_EVENTTASK      HIGH             /* temp Event Task HIGH priority          */\r
-#define PRIORITY_TASK_02_EVENTTIMEOUT   HIGH             /* temp Event Timeout LOW priority        */\r
-#define ENABLE_TASK_02_EVENTINTR        1                /* Enable EventTypeInterrupt scheduling   */\r
-#define ENABLE_TASK_02_EVENTTASK        1\r
-#define ENABLE_TASK_02_EVENTTIMER       1\r
-\r
-#define TASK_03                         smbus_app        /* TASK_03=smbus_app                      */\r
-#define PRIORITY_TASK_03_EVENTTASK      HIGH             /* Event Task HIGH priority               */\r
-#define PRIORITY_TASK_03_EVENTTIMEOUT   HIGH             /* Event Timeout HIGH priority            */\r
-#define ENABLE_TASK_03_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling   */\r
-#define ENABLE_TASK_03_EVENTTASK        1\r
-#define ENABLE_TASK_03_EVENTTIMER       1\r
-\r
-#define TASK_04                         pwm              /* Task_04=pwm                         */\r
-#define PRIORITY_TASK_04_EVENTTASK      LOW              /* Event Task LOW priority         */\r
-#define PRIORITY_TASK_04_EVENTTIMEOUT   LOW              /* Event Timeout LOW priority      */\r
-#define ENABLE_TASK_04_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_04_EVENTTASK        0\r
-#define ENABLE_TASK_04_EVENTTIMER       1\r
-\r
-#define TASK_05                         adc             /* TASK_05=adc                         */\r
-#define PRIORITY_TASK_05_EVENTTASK      LOW             /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_05_EVENTTIMEOUT   LOW             /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_05_EVENTINTR        0               /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_05_EVENTTASK        0            \r
-#define ENABLE_TASK_05_EVENTTIMER       1            \r
-\r
-#define TASK_06                         gpio            /* TASK_06=gpio                        */\r
-#define PRIORITY_TASK_06_EVENTTASK      LOW             /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_06_EVENTTIMEOUT   HIGH             /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_06_EVENTINTR        0               /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_06_EVENTTASK        0               \r
-#define ENABLE_TASK_06_EVENTTIMER       1               \r
-\r
-#define TASK_07                         btimer         /* Task_07=btimer                       */\r
-#define PRIORITY_TASK_07_EVENTTASK      LOW            /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_07_EVENTTIMEOUT   LOW            /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_07_EVENTINTR        0              /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_07_EVENTTASK        0\r
-#define ENABLE_TASK_07_EVENTTIMER       1\r
-\r
-#define TASK_08                         led            /* Task_08=led                         */\r
-#define PRIORITY_TASK_08_EVENTTASK      LOW             /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_08_EVENTTIMEOUT   LOW             /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_08_EVENTINTR        0               /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_08_EVENTTASK        0\r
-#define ENABLE_TASK_08_EVENTTIMER       1\r
-\r
-#define TASK_09                         wdt             /* Task_09=wdt                         */\r
-#define PRIORITY_TASK_09_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_09_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_09_EVENTINTR        1                /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_09_EVENTTASK        1\r
-#define ENABLE_TASK_09_EVENTTIMER       1\r
-\r
-#define TASK_10                         aes            /* Task_10=aes                           */\r
-#define PRIORITY_TASK_10_EVENTTASK      LOW            /* phot Event Task LOW priority          */\r
-#define PRIORITY_TASK_10_EVENTTIMEOUT   LOW            /* phot Event Timeout LOW priority       */\r
-#define ENABLE_TASK_10_EVENTINTR        0              /* Enable EventTypeInterrupt scheduling  */\r
-#define ENABLE_TASK_10_EVENTTASK        0              \r
-#define ENABLE_TASK_10_EVENTTIMER       1\r
-                                        \r
-#define TASK_11                         rnd            /* Task_11=rnd                         */\r
-#define PRIORITY_TASK_11_EVENTTASK      LOW            /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_11_EVENTTIMEOUT   LOW            /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_11_EVENTINTR        0              /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_11_EVENTTASK        0\r
-#define ENABLE_TASK_11_EVENTTIMER       1\r
-                                        \r
-#define TASK_12                         sha            /* Task_12=sha                         */\r
-#define PRIORITY_TASK_12_EVENTTASK      LOW            /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_12_EVENTTIMEOUT   LOW            /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_12_EVENTINTR        0              /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_12_EVENTTASK        0\r
-#define ENABLE_TASK_12_EVENTTIMER       1\r
-                                        \r
-#define TASK_13                         pke            /* Task_13=pke                         */\r
-#define PRIORITY_TASK_13_EVENTTASK      LOW            /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_13_EVENTTIMEOUT   LOW            /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_13_EVENTINTR        0              /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_13_EVENTTASK        0\r
-#define ENABLE_TASK_13_EVENTTIMER       1\r
-\r
-#define TASK_14                         tach          /* Task_14=tach                         */\r
-#define PRIORITY_TASK_14_EVENTTASK      LOW           /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_14_EVENTTIMEOUT   LOW           /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_14_EVENTINTR        0             /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_14_EVENTTASK        0\r
-#define ENABLE_TASK_14_EVENTTIMER       1\r
-\r
-#define TASK_15                         rtc           /* Task_15=rtc                         */\r
-#define PRIORITY_TASK_15_EVENTTASK      LOW           /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_15_EVENTTIMEOUT   LOW           /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_15_EVENTINTR        1             /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_15_EVENTTASK        0\r
-#define ENABLE_TASK_15_EVENTTIMER       1\r
-\r
-#define TASK_16                         htimer            /* TASK_06=htimer                       */\r
-#define PRIORITY_TASK_16_EVENTTASK      LOW               /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_16_EVENTTIMEOUT   LOW               /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_16_EVENTINTR        0                 /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_16_EVENTTASK        0            \r
-#define ENABLE_TASK_16_EVENTTIMER       1     \r
-\r
-#define TASK_17                         uart             /* Task_17=uart                          */\r
-#define PRIORITY_TASK_17_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-#define PRIORITY_TASK_17_EVENTTIMEOUT   HIGH              /* Dflt Event Timeout LOW priority      */\r
-#define ENABLE_TASK_17_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-#define ENABLE_TASK_17_EVENTTASK        0           \r
-#define ENABLE_TASK_17_EVENTTIMER       1 \r
-\r
-#define TASK_18                         dflt         /* Task_18=dflt                          */\r
-#define PRIORITY_TASK_18_EVENTTASK      LOW          /* Dflt Event Task LOW priority          */\r
-#define PRIORITY_TASK_18_EVENTTIMEOUT   LOW          /* Dflt Event Timeout LOW priority       */\r
-#define ENABLE_TASK_18_EVENTINTR        1            /* Enable EventTypeInterrupt scheduling  */\r
-#define ENABLE_TASK_18_EVENTTASK        1\r
-#define ENABLE_TASK_18_EVENTTIMER       1\r
-\r
-//#define TASK_19                         dflt       /* Task_19=dflt                          */\r
-//#define PRIORITY_TASK_19_EVENTTASK      LOW        /* Dflt Event Task LOW priority          */\r
-//#define PRIORITY_TASK_19_EVENTTIMEOUT   LOW        /* Dflt Event Timeout LOW priority       */\r
-//#define ENABLE_TASK_19_EVENTINTR        0          /* Enable EventTypeInterrupt scheduling  */\r
-//#define ENABLE_TASK_19_EVENTTASK        0\r
-//#define ENABLE_TASK_19_EVENTTIMER       0\r
-\r
-//#define TASK_20                         dflt             /* Task_20=dflt                         */\r
-//#define PRIORITY_TASK_20_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_20_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_20_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_20_EVENTTASK        0\r
-//#define ENABLE_TASK_20_EVENTTIMER       0\r
-\r
-//#define TASK_21                         dflt             /* Task_21=dflt                         */\r
-//#define PRIORITY_TASK_21_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_21_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_21_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_21_EVENTTASK        0\r
-//#define ENABLE_TASK_21_EVENTTIMER       0\r
-\r
-//#define TASK_22                         dflt             /* Task_22=dflt                         */\r
-//#define PRIORITY_TASK_22_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_22_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_22_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_22_EVENTTASK        0\r
-//#define ENABLE_TASK_22_EVENTTIMER       0\r
-\r
-//#define TASK_23                         dflt             /* Task_23=dflt                         */\r
-//#define PRIORITY_TASK_23_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_23_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_23_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_23_EVENTTASK        0\r
-//#define ENABLE_TASK_23_EVENTTIMER       0\r
-\r
-//#define TASK_24                         dflt             /* Task_24=dflt                         */\r
-//#define PRIORITY_TASK_24_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_24_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_24_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_24_EVENTTASK        0\r
-//#define ENABLE_TASK_24_EVENTTIMER       0\r
-\r
-//#define TASK_25                         dflt             /* Task_25=dflt                         */\r
-//#define PRIORITY_TASK_25_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_25_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_25_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_25_EVENTTASK        0\r
-//#define ENABLE_TASK_25_EVENTTIMER       0\r
-\r
-//#define TASK_26                         dflt             /* Task_26=dflt                         */\r
-//#define PRIORITY_TASK_26_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_26_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_26_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_26_EVENTTASK        0\r
-//#define ENABLE_TASK_26_EVENTTIMER       0\r
-\r
-//#define TASK_27                         dflt             /* Task_27=dflt                         */\r
-//#define PRIORITY_TASK_27_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_27_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_27_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_27_EVENTTASK        0\r
-//#define ENABLE_TASK_27_EVENTTIMER       0\r
-\r
-//#define TASK_28                         dflt             /* Task_28=dflt                         */\r
-//#define PRIORITY_TASK_28_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_28_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_28_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_28_EVENTTASK        0\r
-//#define ENABLE_TASK_28_EVENTTIMER       0\r
-\r
-//#define TASK_29                         dflt             /* Task_29=dflt                         */\r
-//#define PRIORITY_TASK_29_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_29_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_29_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_29_EVENTTASK        0\r
-//#define ENABLE_TASK_29_EVENTTIMER       0\r
-\r
-//#define TASK_30                         dflt             /* Task_30=dflt                         */\r
-//#define PRIORITY_TASK_30_EVENTTASK      LOW              /* Dflt Event Task LOW priority         */\r
-//#define PRIORITY_TASK_30_EVENTTIMEOUT   LOW              /* Dflt Event Timeout LOW priority      */\r
-//#define ENABLE_TASK_30_EVENTINTR        0                /* Enable EventTypeInterrupt scheduling */\r
-//#define ENABLE_TASK_30_EVENTTASK        0\r
-//#define ENABLE_TASK_30_EVENTTIMER       0\r
-\r
-\r
-#endif /*_CFG_H_*/\r
-\r
-/**   @}\r
- */\r
-\r
index 6a032e0b24ef9ea09deeb50b4baed8345b07c315..dec16d522d09a0f764275c73378c08e40ca6fec6 100644 (file)
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         ( pdMS_TO_TICKS( 3000UL ) )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
 #define mainERROR_CHECK_TASK_PERIOD            ( pdMS_TO_TICKS( 200UL ) )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
@@ -412,7 +412,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -430,7 +430,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index 653d98f50940ffc1134d5814abf8a243592cb0a7..0f358f1f50e56075dcdccb9126d9092346875715 100644 (file)
 #define mainCHECK_TASK_PRIORITY                                ( configMAX_PRIORITIES - 1 )\r
 #define mainQUEUE_OVERWRITE_PRIORITY           ( tskIDLE_PRIORITY )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD         ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD            ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -396,7 +396,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -414,7 +414,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index 7d56771bdef05c1a0f0cf756c8e917b09fa7cf4b..00cfd9fc1f2e5c9f69fb11e40eb3ee5f06e214a8 100644 (file)
 /* The initial priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 0 )\r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD         ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD            ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -399,7 +399,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -417,7 +417,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index 7d56771bdef05c1a0f0cf756c8e917b09fa7cf4b..00cfd9fc1f2e5c9f69fb11e40eb3ee5f06e214a8 100644 (file)
 /* The initial priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 0 )\r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD         ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD            ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -399,7 +399,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -417,7 +417,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index b265a294c22c82f92ccd8afdfd22e373d4f8a684..88818a69308a3939454b3ad8b10221f2b6e2dbb7 100644 (file)
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD         ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD            ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -411,7 +411,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -429,7 +429,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index bd848b0a042f4d50fe99c57f931f4e09ed0d7054..20a6da1a4d3e0ce2b66351047b44795300287657 100644 (file)
 /* The priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the portTICK_PERIOD_MS constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+portTICK_PERIOD_MS constant. */\r
 #define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
@@ -442,7 +442,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -465,7 +465,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index d866023a71434fffee6dd9bc56868036531b3af7..1b06ef2442f43ddd8d00811c467e6cfef2665184 100644 (file)
 /* The priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 7 )\r
 \r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         ( pdMS_TO_TICKS( 3000UL ) )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
 #define mainERROR_CHECK_TASK_PERIOD            ( pdMS_TO_TICKS( 200UL ) )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
@@ -413,7 +413,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -431,7 +431,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index 71f025f57639266a649b98f16d019153026041b5..0239a86de6c8f00974f1d2f89688b33871b52140 100644 (file)
 /* The priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the portTICK_PERIOD_MS constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+portTICK_PERIOD_MS constant. */\r
 #define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
index 58c096dcb4d6278a3de679b9ef1dfc2c8c14fe69..ba50e8acf2d68a872e4a0803b070cdce0f171de9 100644 (file)
 /* The priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the portTICK_PERIOD_MS constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+portTICK_PERIOD_MS constant. */\r
 #define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
index f2343138031a046fb22fa0a27f9e9755b3651a6e..aa251475321d8f3aded90f83f99a634e87196d79 100644 (file)
 #define mainCHECK_TASK_PRIORITY                                ( configMAX_PRIORITIES - 1 )\r
 #define mainQUEUE_OVERWRITE_PRIORITY           ( tskIDLE_PRIORITY )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the portTICK_PERIOD_MS constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+portTICK_PERIOD_MS constant. */\r
 #define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
index 8b0bfee149fc8a6a91c9dd6daffe82ce12e2f355..d2ccb7c51d7875f670c032bfac01241a07abb121 100644 (file)
 #define mainCHECK_TASK_PRIORITY                                ( configMAX_PRIORITIES - 1 )\r
 #define mainQUEUE_OVERWRITE_PRIORITY           ( tskIDLE_PRIORITY )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the portTICK_PERIOD_MS constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+portTICK_PERIOD_MS constant. */\r
 #define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
index 2569fc00aec7ed99352d51722432547d3f2c09ed..8bbb5a28d743f139e25135e0558ce348b0327236 100644 (file)
 /* The priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 3 )\r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD         ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD            ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -409,7 +409,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -427,7 +427,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index b899e311bf4384a0d5f0789b8056497396880e62..7fe474f8eda18ec18e8f32501a5a957a86a051c0 100644 (file)
 /* The priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The LED used by the check timer. */\r
+/* The LED used by the check task. */\r
 #define mainCHECK_LED                                          ( 3 )\r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainNO_ERROR_CHECK_TASK_PERIOD         ( 3000UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the pdMS_TO_TICKS() macro constant. */\r
+#define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
-#define mainERROR_CHECK_TASK_PERIOD            ( 200UL / portTICK_PERIOD_MS )\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+pdMS_TO_TICKS() macro. */\r
+#define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
 purpose of ensuring parameters are passed into tasks correctly. */\r
@@ -409,7 +409,7 @@ static void prvRegTestTaskEntry1( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
@@ -427,7 +427,7 @@ static void prvRegTestTaskEntry2( void *pvParameters )
        }\r
 \r
        /* The following line will only execute if the task parameter is found to\r
-       be incorrect.  The check timer will detect that the regtest loop counter is\r
+       be incorrect.  The check task will detect that the regtest loop counter is\r
        not being incremented and flag an error. */\r
        vTaskDelete( NULL );\r
 }\r
index a2150c100186f797dd39183e76578fce83163cd2..394f6c97c7bf20ce704bc189a6d82bd4e1c5ff4a 100644 (file)
 /* The priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the portTICK_PERIOD_MS constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+portTICK_PERIOD_MS constant. */\r
 #define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
index 6c46b2033dd59ebf20b41c069e0629ede203d0f6..a5a19e710be4e7801eb37650c1883405242463f7 100644 (file)
 /* The priority used by the UART command console task. */\r
 #define mainUART_COMMAND_CONSOLE_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
 \r
-/* The period after which the check timer will expire, in ms, provided no errors\r
-have been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, provided no errors have been reported by\r
+any of the standard demo tasks.  ms are converted to the equivalent in ticks\r
+using the portTICK_PERIOD_MS constant. */\r
 #define mainNO_ERROR_CHECK_TASK_PERIOD         pdMS_TO_TICKS( 3000UL )\r
 \r
-/* The period at which the check timer will expire, in ms, if an error has been\r
-reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_PERIOD_MS constant. */\r
+/* The period of the check task, in ms, if an error has been reported in one of\r
+the standard demo tasks.  ms are converted to the equivalent in ticks using the\r
+portTICK_PERIOD_MS constant. */\r
 #define mainERROR_CHECK_TASK_PERIOD            pdMS_TO_TICKS( 200UL )\r
 \r
 /* Parameters that are passed into the register check tasks solely for the\r
index c8f694a2d04b66fe3b1fa82abccd26dcaa716797..efa214730fdcf5bc58110bcb318cbd3700a79d17 100644 (file)
@@ -309,10 +309,10 @@ const TickType_t xCycleFrequency = pdMS_TO_TICKS( 2500UL );
                {\r
                        pcStatusMessage = "Error: EventGroup";\r
                }\r
-           else if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
-           {\r
+               else if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
+               {\r
                        pcStatusMessage = "Error: IntMath";\r
-           }\r
+               }\r
                else if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
                {\r
                        pcStatusMessage = "Error: GenQueue";\r
@@ -325,20 +325,20 @@ const TickType_t xCycleFrequency = pdMS_TO_TICKS( 2500UL );
                {\r
                        pcStatusMessage = "Error: BlockQueue";\r
                }\r
-           else if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
-           {\r
+               else if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
+               {\r
                        pcStatusMessage = "Error: SemTest";\r
-           }\r
-           else if( xArePollingQueuesStillRunning() != pdTRUE )\r
-           {\r
+               }\r
+               else if( xArePollingQueuesStillRunning() != pdTRUE )\r
+               {\r
                        pcStatusMessage = "Error: PollQueue";\r
-           }\r
+               }\r
                else if( xAreMathsTaskStillRunning() != pdPASS )\r
                {\r
                        pcStatusMessage = "Error: Flop";\r
                }\r
-           else if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )\r
-           {\r
+               else if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )\r
+               {\r
                        pcStatusMessage = "Error: RecMutex";\r
                }\r
                else if( xAreCountingSemaphoreTasksStillRunning() != pdTRUE )\r