summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/CORTEX_STM32F103_Keil
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2012-08-12 16:49:43 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2012-08-12 16:49:43 +0000
commit66d832e1757554c8cf4d7087a58998fb6f35e14a (patch)
tree0e3f345b85cf4e11083ebafda7c063102326f03d /FreeRTOS/Demo/CORTEX_STM32F103_Keil
parent738cb8545ea11a2c90a5fe1146504e66b533a34f (diff)
downloadfreertos-66d832e1757554c8cf4d7087a58998fb6f35e14a.tar.gz
Add warning in Cortex-M3 and Cortex-M4 FreeRTOSConfig.h header files that configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to 0.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@1769 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Demo/CORTEX_STM32F103_Keil')
-rw-r--r--FreeRTOS/Demo/CORTEX_STM32F103_Keil/FreeRTOSConfig.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/FreeRTOS/Demo/CORTEX_STM32F103_Keil/FreeRTOSConfig.h b/FreeRTOS/Demo/CORTEX_STM32F103_Keil/FreeRTOSConfig.h
index 53c690c4b..181e2a1fa 100644
--- a/FreeRTOS/Demo/CORTEX_STM32F103_Keil/FreeRTOSConfig.h
+++ b/FreeRTOS/Demo/CORTEX_STM32F103_Keil/FreeRTOSConfig.h
@@ -110,6 +110,8 @@ to exclude the API function. */
/* This is the raw value as per the Cortex-M3 NVIC. Values can be 255
(lowest) to 0 (1?) (highest). */
#define configKERNEL_INTERRUPT_PRIORITY 255
+/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
+See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 191 /* equivalent to 0xb0, or priority 11. */