Skip to content

FIXED BUG configKERNEL_INTERRUPT_PRIORITY must be left shifted accord… #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/FreeRTOSConfig_Default.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ PRIORITY THAN THIS! (higher priorities are lower numeric values. */
/* Interrupt priorities used by the kernel port layer itself. These are generic
to all Cortex-M ports, and do not rely on any particular library functions. */
/* Warning in case of Ethernet, this prio (used by systick) should be higher (lower value) than ethernet Timer */
#define configKERNEL_INTERRUPT_PRIORITY 14
#define configKERNEL_INTERRUPT_PRIORITY ( 14 << (8 - configPRIO_BITS) )

/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
Expand Down