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 to FreeRTOS 11.1.0 #13

Merged
merged 3 commits into from
Oct 11, 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
4 changes: 2 additions & 2 deletions FreeRTOS-Cpp/include/FreeRTOS/Kernel.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ inline void suspendAll() { vTaskSuspendAll(); }
*/
inline bool resumeAll() { return (xTaskResumeAll() == pdTRUE); }

#if configUSE_TICKLESS_IDLE
#if (configUSE_TICKLESS_IDLE != 0)
/**
* Kernel.hpp
*
Expand All @@ -373,7 +373,7 @@ inline bool resumeAll() { return (xTaskResumeAll() == pdTRUE); }
inline void stepTick(const TickType_t ticksToJump) {
vTaskStepTick(ticksToJump);
}
#endif
#endif /* configUSE_TICKLESS_IDLE */

/**
* Kernel.hpp
Expand Down
4 changes: 3 additions & 1 deletion FreeRTOS-Cpp/include/FreeRTOS/Task.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,9 @@ class TaskBase {
inline UBaseType_t getStackHighWaterMark() const {
return uxTaskGetStackHighWaterMark(handle);
}
#endif /* INCLUDE_uxTaskGetStackHighWaterMark */

#if (INCLUDE_uxTaskGetStackHighWaterMark2 == 1)
/**
* Task.hpp
*
Expand All @@ -348,7 +350,7 @@ class TaskBase {
inline configSTACK_DEPTH_TYPE getStackHighWaterMark2() const {
return uxTaskGetStackHighWaterMark2(handle);
}
#endif /* INCLUDE_uxTaskGetStackHighWaterMark */
#endif /* INCLUDE_uxTaskGetStackHighWaterMark2 */

#if (INCLUDE_eTaskGetState == 1)
/**
Expand Down
2 changes: 1 addition & 1 deletion FreeRTOS-Kernel
Submodule FreeRTOS-Kernel updated 816 files
1 change: 1 addition & 0 deletions examples/config/FreeRTOSConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
#define configUSE_NEWLIB_REENTRANT 0
#define configENABLE_BACKWARD_COMPATIBILITY 1
#define configNUM_THREAD_LOCAL_STORAGE_POINTERS 5
#define configENABLE_MPU 0

/* Used memory allocation (heap_x.c) */
#define configFRTOS_MEMORY_SCHEME 4
Expand Down
Loading