mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 16:57:41 -04:00
Set configMAX_SYSCALL_INTERRUPT_PRIORITY to 4 for QEMU demos (#986)
* Update FreeRTOSConfig.h * Update FreeRTOSConfig.h * Update FreeRTOSConfig.h
This commit is contained in:
parent
afb776cc39
commit
03db1e8e49
3 changed files with 3 additions and 3 deletions
|
@ -93,7 +93,7 @@ FreeRTOS/Source/tasks.c for limitations. */
|
||||||
#define configKERNEL_INTERRUPT_PRIORITY ( 255 ) /* All eight bits as QEMU doesn't model the priority bits. */
|
#define configKERNEL_INTERRUPT_PRIORITY ( 255 ) /* All eight bits as QEMU doesn't model the priority bits. */
|
||||||
/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
|
/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
|
||||||
See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
|
See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
|
||||||
#define configMAX_SYSCALL_INTERRUPT_PRIORITY ( 5 )
|
#define configMAX_SYSCALL_INTERRUPT_PRIORITY ( 4 )
|
||||||
|
|
||||||
/* Use the Cortex-M3 optimised task selection rather than the generic C code
|
/* Use the Cortex-M3 optimised task selection rather than the generic C code
|
||||||
version. */
|
version. */
|
||||||
|
|
|
@ -121,7 +121,7 @@ unsigned long ulGetRunTimeCounterValue( void ); /* Prototype of function that re
|
||||||
|
|
||||||
/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
|
/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
|
||||||
* See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
|
* See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
|
||||||
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 191 /* equivalent to 0xa0, or priority 5. */
|
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
|
||||||
#define configMAC_INTERRUPT_PRIORITY 5
|
#define configMAC_INTERRUPT_PRIORITY 5
|
||||||
|
|
||||||
/* Prototype for the function used to print out. In this case it prints to the
|
/* Prototype for the function used to print out. In this case it prints to the
|
||||||
|
|
|
@ -106,7 +106,7 @@ unsigned long ulGetRunTimeCounterValue( void ); /* Prototype of function that re
|
||||||
|
|
||||||
/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
|
/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
|
||||||
* See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
|
* See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
|
||||||
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 191 /* equivalent to 0xa0, or priority 5. */
|
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
|
||||||
#define configMAC_INTERRUPT_PRIORITY 5
|
#define configMAC_INTERRUPT_PRIORITY 5
|
||||||
|
|
||||||
#define configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY ( 1 )
|
#define configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY ( 1 )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue