From: rtel Date: Wed, 7 Jan 2015 07:02:17 +0000 (+0000) Subject: Remove casting from configMAX_PRIORITIES setting in FAT SL / CLI demo as it was preve... X-Git-Tag: V8.2.0~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=384a0a0dceb8a2a40cc823f14cde725a1fe08c51;p=freertos Remove casting from configMAX_PRIORITIES setting in FAT SL / CLI demo as it was preventing a clean build. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2322 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/ConfigurationFiles/FreeRTOSConfig.h b/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/ConfigurationFiles/FreeRTOSConfig.h index a11c43319..108e86caa 100644 --- a/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/ConfigurationFiles/FreeRTOSConfig.h +++ b/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/ConfigurationFiles/FreeRTOSConfig.h @@ -112,7 +112,7 @@ *----------------------------------------------------------*/ #define configUSE_PREEMPTION 1 -#define configMAX_PRIORITIES ( ( UBaseType_t ) 7 ) +#define configMAX_PRIORITIES ( 7 ) #define configTICK_RATE_HZ ( 1000 ) /* In this non-real time simulated environment the tick frequency has to be at least a multiple of the Win32 tick frequency, and therefore very slow. */ #define configMINIMAL_STACK_SIZE ( ( unsigned short ) 60 ) /* In this simulated case, the stack only has to hold one small structure as the real stack is part of the Win32 thread. */ #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 32U * 1024U ) ) diff --git a/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/WIN32.vcxproj b/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/WIN32.vcxproj index 6257eb79f..675239a53 100644 --- a/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/WIN32.vcxproj +++ b/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/WIN32.vcxproj @@ -169,7 +169,6 @@ - @@ -177,6 +176,7 @@ + diff --git a/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/WIN32.vcxproj.filters b/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/WIN32.vcxproj.filters index 72966a428..512ffba71 100644 --- a/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/WIN32.vcxproj.filters +++ b/FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/WIN32.vcxproj.filters @@ -119,9 +119,6 @@ - - Configuration Files - FreeRTOS+\FreeRTOS+CLI\include @@ -176,5 +173,8 @@ Configuration Files + + Configuration Files + \ No newline at end of file