]> git.sur5r.net Git - freertos/commitdiff
Correct #if( configMAX_PRIORITIES >= 32 ) check performed when configUSE_PORT_OPTIMIS...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 24 Sep 2012 12:10:08 +0000 (12:10 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 24 Sep 2012 12:10:08 +0000 (12:10 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1785 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS/Source/portable/GCC/ARM_CM3/portmacro.h
FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h
FreeRTOS/Source/portable/IAR/ARM_CM3/portmacro.h
FreeRTOS/Source/portable/IAR/ARM_CM4F/portmacro.h
FreeRTOS/Source/portable/MSVC-MingW/portmacro.h
FreeRTOS/Source/portable/RVDS/ARM_CM3/portmacro.h
FreeRTOS/Source/portable/RVDS/ARM_CM4F/portmacro.h

index 596c008df8ae98626ce625da96ccd71535608af9..c39501da412f7e1e60106621ceb53ecc8d4f1699 100644 (file)
@@ -177,7 +177,7 @@ extern void vPortExitCritical( void );
        }\r
 \r
        /* Check the configuration. */\r
-       #if( configMAX_PRIORITIES >= 32 )\r
+       #if( configMAX_PRIORITIES > 32 )\r
                #error configUSE_PORT_OPTIMISED_TASK_SELECTION can only be set to 1 when configMAX_PRIORITIES is less than or equal to 32.  It is very rare that a system requires more than 10 to 15 difference priorities as tasks that share a priority will time slice.\r
        #endif\r
 \r
index d745dd8c29fe4eaea4ba03eb040ab01ebced8e58..c0ca608017a3aa7b59c03b52a14ffa4e99138dd1 100644 (file)
@@ -182,7 +182,7 @@ portALIGNMENT_ASSERT_pxCurrentTCB() will trigger false positive asserts. */
        }\r
 \r
        /* Check the configuration. */\r
-       #if( configMAX_PRIORITIES >= 32 )\r
+       #if( configMAX_PRIORITIES > 32 )\r
                #error configUSE_PORT_OPTIMISED_TASK_SELECTION can only be set to 1 when configMAX_PRIORITIES is less than or equal to 32.  It is very rare that a system requires more than 10 to 15 difference priorities as tasks that share a priority will time slice.\r
        #endif\r
 \r
index 1536a5e53054d7c31e7c2372404e883dce120612..662451a61e4261e1460b6309ba3c2fcd72de8265 100644 (file)
@@ -118,7 +118,7 @@ extern void vPortYieldFromISR( void );
 #if configUSE_PORT_OPTIMISED_TASK_SELECTION == 1\r
 \r
        /* Check the configuration. */\r
-       #if( configMAX_PRIORITIES >= 32 )\r
+       #if( configMAX_PRIORITIES > 32 )\r
                #error configUSE_PORT_OPTIMISED_TASK_SELECTION can only be set to 1 when configMAX_PRIORITIES is less than or equal to 32.  It is very rare that a system requires more than 10 to 15 difference priorities as tasks that share a priority will time slice.\r
        #endif\r
 \r
index ed4fef18b658a488aedf7275979a537bcabab956..c218de87f0dd65df7b116e379f6344fc0d10fb46 100644 (file)
@@ -118,7 +118,7 @@ extern void vPortYieldFromISR( void );
 #if configUSE_PORT_OPTIMISED_TASK_SELECTION == 1\r
 \r
        /* Check the configuration. */\r
-       #if( configMAX_PRIORITIES >= 32 )\r
+       #if( configMAX_PRIORITIES > 32 )\r
                #error configUSE_PORT_OPTIMISED_TASK_SELECTION can only be set to 1 when configMAX_PRIORITIES is less than or equal to 32.  It is very rare that a system requires more than 10 to 15 difference priorities as tasks that share a priority will time slice.\r
        #endif\r
 \r
index 9a991ab6f57541af687803b5d6fc8780a0082cfa..f4cef62d928230051523152b704b78e4471008c1 100644 (file)
@@ -112,7 +112,7 @@ void vPortExitCritical( void );
        #if configUSE_PORT_OPTIMISED_TASK_SELECTION == 1\r
 \r
        /* Check the configuration. */\r
-       #if( configMAX_PRIORITIES >= 32 )\r
+       #if( configMAX_PRIORITIES > 32 )\r
                #error configUSE_PORT_OPTIMISED_TASK_SELECTION can only be set to 1 when configMAX_PRIORITIES is less than or equal to 32.  It is very rare that a system requires more than 10 to 15 difference priorities as tasks that share a priority will time slice.\r
        #endif\r
 \r
index 74fa2d89591a9ba9ef9542edc801663d0986a9d3..b252093cb5b305138b6440ecd027fb58557f561c 100644 (file)
@@ -145,7 +145,7 @@ http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html before disagreeing. */
 #if configUSE_PORT_OPTIMISED_TASK_SELECTION == 1\r
 \r
        /* Check the configuration. */\r
-       #if( configMAX_PRIORITIES >= 32 )\r
+       #if( configMAX_PRIORITIES > 32 )\r
                #error configUSE_PORT_OPTIMISED_TASK_SELECTION can only be set to 1 when configMAX_PRIORITIES is less than or equal to 32.  It is very rare that a system requires more than 10 to 15 difference priorities as tasks that share a priority will time slice.\r
        #endif\r
 \r
index e6ab53ca34a93c517ae42ee7275c9cdd1d955474..9301eddc1148848f6cc4cbf821749312d8bfb8a6 100644 (file)
@@ -149,7 +149,7 @@ portALIGNMENT_ASSERT_pxCurrentTCB() will trigger false positive asserts. */
 #if configUSE_PORT_OPTIMISED_TASK_SELECTION == 1\r
 \r
        /* Check the configuration. */\r
-       #if( configMAX_PRIORITIES >= 32 )\r
+       #if( configMAX_PRIORITIES > 32 )\r
                #error configUSE_PORT_OPTIMISED_TASK_SELECTION can only be set to 1 when configMAX_PRIORITIES is less than or equal to 32.  It is very rare that a system requires more than 10 to 15 difference priorities as tasks that share a priority will time slice.\r
        #endif\r
 \r