How to use this FreeRTOS library in PlatformIO #710
-
I tried to add the FreeRTOS library to the PlatformIO project, but it didn't work, what should I do to make it run,thanks |
Beta Was this translation helpful? Give feedback.
Answered by
earlephilhower
Jul 24, 2022
Replies: 1 comment 2 replies
-
You can't use an external FreeRTOS library, you need to use the one included in the repo. With that, you should be able to just |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
earlephilhower
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can't use an external FreeRTOS library, you need to use the one included in the repo. With that, you should be able to just
#include <FreeRTOS.h>
to enable it automatically, just like the example here.