fix(build): Fix cmake warning about freertos component dependency#77
Merged
peter-marcisovsky merged 1 commit intorelease/v0.20from Apr 13, 2026
Merged
Conversation
0e40d37 to
880685f
Compare
This was referenced Apr 9, 2026
880685f to
3d5c3da
Compare
c7fba22 to
3d5c3da
Compare
tore-espressif
approved these changes
Apr 13, 2026
Collaborator
tore-espressif
left a comment
There was a problem hiding this comment.
I think the original code allowed us to include FreeRTOS headers with simple #include "queue.h" but esp-idf used #include "freertos/queue.h".
But now it is all fixed in TinyUSB upstream code, so this fix should work OK
eg. https://github.com/hathach/tinyusb/blob/3cfe7a0ed1c8c0ca7b1ad747cfce502a5312bf1c/examples/device/hid_composite_freertos/src/main.c#L34-L50
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Removing CMake warning:
ORIG_INCLUDE_PATHinstead of declaring a component dependency.CFG_TUSB_OS_INC_PATH_DEFAULToffreertos/, so freertos/FreeRTOS.h resolves through the freertos component's public INCLUDE_DIRS.Related