From: richardbarry Date: Thu, 14 Apr 2011 12:46:27 +0000 (+0000) Subject: Corrected a comment in the STM32 FreeRTOSConfig.h file. X-Git-Tag: V7.0.1~65 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=48b8e66a74cb1d8ceb777c12701a6ac60ecc2b47;p=freertos Corrected a comment in the STM32 FreeRTOSConfig.h file. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1359 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/CORTEX_STM32F100_Atollic/Simple_Demo_Source/FreeRTOSConfig.h b/Demo/CORTEX_STM32F100_Atollic/Simple_Demo_Source/FreeRTOSConfig.h index cfc01c59b..2f6cbef9b 100644 --- a/Demo/CORTEX_STM32F100_Atollic/Simple_Demo_Source/FreeRTOSConfig.h +++ b/Demo/CORTEX_STM32F100_Atollic/Simple_Demo_Source/FreeRTOSConfig.h @@ -128,7 +128,7 @@ to exclude the API function. */ /* The lowest priority. */ #define configKERNEL_INTERRUPT_PRIORITY ( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) -/* Priority 5, or 160 as only the top three bits are implemented. */ +/* Priority 5, or 95 as only the top four bits are implemented. */ #define configMAX_SYSCALL_INTERRUPT_PRIORITY ( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) #define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); }