FreeRTOS by Phillip Stevens not available in Libraries?

Microsoft Windows Version 22H2 (OS Build 22621.3958)
PlatformIO Core 6.1.15·Home 3.4.4

Hi, may I know how to import FreeRTOS by Phillip Stevens into PlatformIO’s project for Arduino UNO board, because this version of FreeRTOS is not available in the PlatformIO Libraries listing, but under Arduino IDE 1.8.19 is available as shown below.

Please advise.

The desired library seems to be available in platformio

You can find it here

1 Like

You can always add a library by specifying the source link (see Dependency Management — PlatformIO latest documentation and lib_deps — PlatformIO latest documentation) in your platformio.ini:

lib_deps = 
  https://github.com/feilipu/Arduino_FreeRTOS_Library

But the library you mentioned is available in the PlatformIO registry!
See PlatformIO Registry
All you have to add to your platformio.ini is

lib_deps = 
  feilipu/FreeRTOS

The latest version is 11.1.0-2. If you want to have the exact version (10.5.0-0) you have to use

lib_deps = 
  feilipu/FreeRTOS @ 10.5.0-0
1 Like

hi,

Thanks for the feedback, I installed FreeRTOS by Richard Barry instead and selected the version 10.5.0-0. By selecting the version 10.5.0-0 does it means that version is created by Phillip Stevens ?

That depends on what you wrote in your platformio.ini. Unfortunately my glass orb is on vacations :wink:, and it’s hard to guess what you wrote. It would be really helpful if you could post the content of your platformio.ini making it much easier to give you the right advices.

If you mean this library it is the same:

If you follow the documentation link, you’ll find:

Author: Richard Barry

Maintainer: Phillip Steven

Otherwise please post a link to the library you mean so we do do not have to guess. :smirk:

1 Like

ok, thanks for the feedback. I am cleared now.