summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/MB96350_Softune_Dice_Kit/FreeRTOSConfig.h
diff options
context:
space:
mode:
authorRichard Barry <ribarry@amazon.com>2013-12-30 08:02:11 +0000
committerRichard Barry <ribarry@amazon.com>2013-12-30 08:02:11 +0000
commitf9072e7bac8c93915aa2dee45bb312b681342da2 (patch)
tree73eb5117c345166ac3624237cb66db3e8812b17d /FreeRTOS/Demo/MB96350_Softune_Dice_Kit/FreeRTOSConfig.h
parente4965ca03cdb6809aad10d02bdc83a694b82d8b5 (diff)
downloadfreertos-git-f9072e7bac8c93915aa2dee45bb312b681342da2.tar.gz
Remove casting from definition of configMAX_PRIORITIES to allow its use in pre-processor defined conditional compilation.
Diffstat (limited to 'FreeRTOS/Demo/MB96350_Softune_Dice_Kit/FreeRTOSConfig.h')
-rw-r--r--FreeRTOS/Demo/MB96350_Softune_Dice_Kit/FreeRTOSConfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeRTOS/Demo/MB96350_Softune_Dice_Kit/FreeRTOSConfig.h b/FreeRTOS/Demo/MB96350_Softune_Dice_Kit/FreeRTOSConfig.h
index 4cc9463ad..5dc655b5a 100644
--- a/FreeRTOS/Demo/MB96350_Softune_Dice_Kit/FreeRTOSConfig.h
+++ b/FreeRTOS/Demo/MB96350_Softune_Dice_Kit/FreeRTOSConfig.h
@@ -102,7 +102,7 @@ the ComTest tasks will be included in place of the trace task. */
#define configCPU_CLOCK_HZ ( ( unsigned long ) 56000000 ) /* Clock setup from start.asm in the demo application. */
#define configCLKP1_CLOCK_HZ ( ( unsigned long ) 56000000 ) /* Clock setup from start.asm in the demo application. */
#define configTICK_RATE_HZ ( (portTickType) 1000 )
-#define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 6 )
+#define configMAX_PRIORITIES ( 6 )
#define configTOTAL_HEAP_SIZE ( (size_t) (5000) )
#define configMAX_TASK_NAME_LEN ( 20 )
#define configUSE_16_BIT_TICKS 1