Remove casting from definition of configMAX_PRIORITIES to allow its use in pre-processor defined conditional compilation.

This commit is contained in:
Richard Barry 2013-12-30 08:02:11 +00:00
parent e4965ca03c
commit f9072e7bac
120 changed files with 135 additions and 135 deletions

View file

@ -84,7 +84,7 @@
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 250 )
#define configCPU_CLOCK_HZ ( ( unsigned long ) 200000000 ) /* 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) (80 * 1024) )
#define configMAX_TASK_NAME_LEN ( 20 )
#define configUSE_16_BIT_TICKS 0