Skip to content
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

Update FreeRTOS to v11 #40

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
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 library/FreeRTOS-Kernel
Submodule FreeRTOS-Kernel updated 830 files
13 changes: 8 additions & 5 deletions src/FreeRTOSConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,16 @@
#define configMAX_API_CALL_INTERRUPT_PRIORITY [dependent on processor and application]
*/

#if FREE_RTOS_KERNEL_SMP // set by the RP2040 SMP port of FreeRTOS
/* SMP port only */
#define configNUM_CORES 2
#define configTICK_CORE 0
/******************************************************************************/
/* SMP( Symmetric MultiProcessing ) Specific Configuration definitions. *******/
/******************************************************************************/
#define configNUMBER_OF_CORES 2
#define configNUM_CORES configNUMBER_OF_CORES // backward compatible with pick-sdk
#define configRUN_MULTIPLE_PRIORITIES 1
#define configUSE_CORE_AFFINITY 1
#endif
// #define configTASK_DEFAULT_CORE_AFFINITY tskNO_AFFINITY
// #define configTIMER_SERVICE_TASK_CORE_AFFINITY tskNO_AFFINITY
#define configUSE_PASSIVE_IDLE_HOOK 0

/* RP2040 specific */
#define configSUPPORT_PICO_SYNC_INTEROP 1
Expand Down
Loading