An Operating System on a $4 Board? | Getting Started with FreeRTOS on the Raspberry Pi Pico

Sdílet
Vložit
  • čas přidán 27. 07. 2024
  • In this video, we talk about the basic concepts of a Real Time Operating System, or RTOS. Also, we go into how to setup a CMake project for the Raspberry Pi Pico to get FreeRTOS on the device. Finally, we discuss how to setup two tasks to blink LED's at different intervals.
    Without an operating system on your Raspberry Pi Pico RP2040, making programs that execute multiple functions at the same time is extremely difficult. By using an RTOS, you're able to write code in terms of "tasks" that a scheduler runs based on their priority. FreeRTOS is an open source RTOS that allows you to make your Pi Pico projects more powerful.
    🏫 COURSES 🏫
    www.lowlevel.academy/courses/
    LLL Merch: linktr.ee/lowlevellearning
    Buy the RP2040: amzn.to/3uISUGn
    Join me on Discord!: / discord
    FreeRTOS Kernel code: github.com/FreeRTOS/FreeRTOS-...
    Code on Github: github.com/lowlevellearning/r...
    Chapters:
    0:00 Intro
    0:33 FreeRTOS
    2:05 Coding
    6:30 Demo
    6:45 Multitasking
    7:20 Outro

Komentáře • 124

  • @LowLevelLearning
    @LowLevelLearning  Před 3 lety +100

    GUYS! I FIXED MY PICO AND THE EXAMPLE!
    Inside the task code, I forgot to put the tasks in an infinite loop. Because of this, the blink only executes once, and the board appears as though its crashing. I made both of those tasks infinite loops and the board came back to life (was never dead xd) and behaved as expected.
    Thanks to @max from Discord for finding this bug

    • @RamjetX
      @RamjetX Před 3 lety +9

      Ahhh the ol' forgot to put it in a loop trick hey

    • @lighthunt
      @lighthunt Před 3 lety +5

      Found it the hard way, that if the task finish (without deleting itself), it crashes the whole system (i.e. I imagine the scheduler never gets the execution back) ;-)

    • @LowLevelLearning
      @LowLevelLearning  Před 3 lety +4

      @@lighthunt yeah im just an idiot XD

    • @lighthunt
      @lighthunt Před 3 lety +8

      @@LowLevelLearning haha, I meant, "I found it the hard way" too .... But OK, it's better if smart people say they are idiots, than when idiots think they are geniuses .. ;-)

    • @PoiSonSonic
      @PoiSonSonic Před 2 lety

      I have found myself out of the loop thing using a debugger and googled the error message.

  • @cprogrck
    @cprogrck Před 2 lety +70

    The rp2040 on the pi pico has PIO's that can do this. They're like independent cores that manage gpio pins for you. Using the PIO assembly code you can implement just about any protocol. In this case one PIO to blink the LEDs in sync with the clock, maybe add an interupt for the button. Then one PIO for the serial bus. Any pin can go with any PIO (kinda). You can then do what you need to inside of your main program loop and not worry about timing. The rp2040 is neat.

    • @BrightBlueJim
      @BrightBlueJim Před 2 lety +19

      That's not the point. The point is that there are tasks you may want to run concurrently, that the PIOs CAN'T do. This was a blinking LED EXAMPLE. And don't tell me that the RP4020 has two cores, because then what do you do when you have THREE things to run simultaneously?

    • @justadude8716
      @justadude8716 Před rokem +10

      I'd just buy a second pico so then I have 4 cores.

    • @kenwood_9474
      @kenwood_9474 Před rokem +1

      I read about this too! But i always wondered like, how would this fit into a development scenario? like how/where would i use these features? if I'm trying to stick to a reasonable, modifiable codebase.. where on earth am i going to find it appropriate to write assembly in my c++ and make it all seamless and portable with a larger project?
      Like it always seems so easy to throw the asm example in and go "oh that's neat!" but how do people juggle all that when they have a whole system to think about :

    • @zachbrown7272
      @zachbrown7272 Před rokem

      @@kenwood_9474 how about implementing CANbus on PIO so you don't need an external chip to do it? or VGA, LED 1-Wire, etc. That's what I've used the PIO for so far.

    • @kenwood_9474
      @kenwood_9474 Před rokem

      @@zachbrown7272 Yeah but i mean like implementation wise in a larger project, not like "x feature" where do you put assembly code in your project?! XD What framework would you use? can you even use a framework when you require such low level access? Thats what i mean by implementation.

  • @raresharktooth
    @raresharktooth Před 3 lety +21

    i've done a bit of RTOS on older PICs. Now returning to the concept for some robotics. I hope you will cover what might be possible with FreeRTOS on one core and more linear C code on the other core of the pico. Also, i am really liking the OpenOCD/swd/GDB setup with rpi pico, pretty much the best debug capabilities i've ever had. However, i remember having very difficult time debugging RTOS code in earlier days. Hope you can cover some practical RTOS debugging with GDB and dual core. Thanks for video!!

  • @liquid2499
    @liquid2499 Před 3 lety +8

    Great stuff, I’m super interested in freeRTOS and love all the pico videos, thanks!

  • @junaidpv
    @junaidpv Před 3 lety +12

    Frying a dev board is one of most hated experiences for me in the electronics field! Thanks for the tutorial.

    • @jochen_schueller
      @jochen_schueller Před 2 lety +1

      What really sucks (even worse than completely frying it to death) is if only a single subsystem on the chip gets damaged but everything else still works fine, so you do not notice that but get funny bugs :)

    • @RunTheTape
      @RunTheTape Před 2 lety

      always buy in bulk

    • @BrightBlueJim
      @BrightBlueJim Před rokem +1

      As it seems happened with the maker of the video, I usually find that I didn't really fry the microcontroller; I just put it into a state that the USB or serial port method of programming isn't able to deal with, which is solved by hooking it up to a proper programmer. In almost all cases, using an SPI or JTAG based programmer (which can be made out of yet another cheap dev board) clears things up.

  • @052d6
    @052d6 Před 2 lety

    Great! Exactly what I was looking for!

  • @akashpatil9983
    @akashpatil9983 Před 2 lety +6

    Man, your vids are really great and helpful! Please just don't stop uploading!!!

  • @m1geo
    @m1geo Před rokem

    Super useful intro. Thanks!

  • @marcombo01
    @marcombo01 Před 2 lety

    my new favourite programming channel.

  • @fred.chapman
    @fred.chapman Před 2 lety +2

    Thanks for the FreeRTOS tutorial! Can you please post a follow-up video showing the results on the Pico? We need closure. 😁

  • @ahmedmoustafa6829
    @ahmedmoustafa6829 Před rokem

    Many thanks. it helped alot.

  • @PATRIK67KALLBACK
    @PATRIK67KALLBACK Před 2 lety +1

    Great video!

  • @Cptnbond
    @Cptnbond Před 3 lety +3

    Nice, a short and sweet tutorial -- will take some time to absorb ;-)

  • @yahmk3978
    @yahmk3978 Před 2 lety

    Thank you very much!

  • @lighthunt
    @lighthunt Před 3 lety +13

    @Low Level Learning, Awesome tutorials!!!!! Thank you.
    A suggestion: Allegedly, there is now Symmetric Multiprocessing Branch of FreeRTOS available for RP2040 (=RTOS on both cores), would be nice to show how to enable it ...

    • @LowLevelLearning
      @LowLevelLearning  Před 3 lety +4

      Thanks for the tip!

    • @lighthunt
      @lighthunt Před 3 lety +5

      @@LowLevelLearning yep, that would be nice... I didn't have patience with it. But I managed to run 1 RTOS on each core simultaneously (just some simple blinking), surprisingly it worked, but 1) it's not the same thing and 2) probably asking for troubles (race conditions) since they share memory etc and don't know when it breaks

    • @Stopinvadingmyhardware
      @Stopinvadingmyhardware Před 2 lety +1

      @@lighthunt why are my finances the business of theirs

    • @lighthunt
      @lighthunt Před 2 lety

      @@Stopinvadingmyhardware I have no idea about your fiance. In other words, WHAT?

    • @alexandrsoldiernetizen162
      @alexandrsoldiernetizen162 Před 2 lety

      @@lighthunt The Pico SDK has constructs for SMP; mutex and critical section calls, etc.

  • @rahulkushwaha9500
    @rahulkushwaha9500 Před 2 měsíci

    nice intro, please bring more tutorials on freeRTOS.

  • @heel57
    @heel57 Před 4 měsíci

    great video. Do you know if the two tasks run on separate cores and how to enforce this?

  • @Frisky0563
    @Frisky0563 Před 2 lety

    Hi this is awesome where can I find more information on FRTOS? I'm new to RPi Pico. Thank you Don

  • @LowLevelLearning
    @LowLevelLearning  Před 3 lety +2

    Any cool projects using FreeRTOS? Do tell ;)

    • @jochen_schueller
      @jochen_schueller Před 2 lety +2

      I use it to run my customized firmware on my pacemaker xD

    • @rick_er2481
      @rick_er2481 Před 2 lety

      LwIP MQTT and FreeRTOS? :)

    • @RunTheTape
      @RunTheTape Před rokem

      @@jochen_schueller balls of steel.

  • @IntenseGrid
    @IntenseGrid Před 2 lety +5

    A simpler solution than using an RTOS is to use a Parallax Propeller or P2 which each have 8 cores and programmable pins (any pin can be serial, spi, i2c, audio, custom, etc). In other words, it's like having an RTOS built into hardware. Also, the determinism required for signal generation and receipt (including custom signals) can be rock solid because of programming without interrupts and a system clock register that is common across all cores.

    • @Henry-sv3wv
      @Henry-sv3wv Před 2 lety +3

      That's lazy, just get an FPGA and include as many cores as you have LEDs to blink!

    • @alexandrsoldiernetizen162
      @alexandrsoldiernetizen162 Před 2 lety

      Pico has 2 PIO blocks, each with 4 state machines, for a total of 8 little cores.

  • @DevvratYadav7
    @DevvratYadav7 Před 2 lety +1

    Can we make Gateway using RPi Pico, FreeRTOS, Node-Red ?

  • @kramer3d
    @kramer3d Před 2 lety

    can you add to this tutorial by making a part 2 covering uart?

  • @olafschermann1592
    @olafschermann1592 Před rokem

    Does free RTOS utilize both rp2040 cores?

  • @paul300
    @paul300 Před 7 měsíci

    Could you make a video about working with MicroPython in VS Code with the Raspberry Pi Pico?

  • @bondjovi4595
    @bondjovi4595 Před rokem

    Neat

  • @markday3145
    @markday3145 Před 3 lety +3

    I didn't see any configuration changes to indicate multiple cores (which may also need some RP2040-specific code for communicating between cores). I'm guessing this is all running on a single core.

    • @LowLevelLearning
      @LowLevelLearning  Před 3 lety +1

      Yup! This all runs in one core. You probably could get it multicore ready, you'd just need to implement some synchronization mechanisms to keep it safe.

    • @subbuaccu2075
      @subbuaccu2075 Před 2 lety

      I think, all the scheduling done by processor for user programs if not specified , so same goes for this program as well, if not specified it will be run on multiple processors without asking along with memory management, unless you want to do your own scheduling.
      *I'm a noob* *Plz forgive my foolishness if i am wrong.*

    • @alexandrsoldiernetizen162
      @alexandrsoldiernetizen162 Před 2 lety

      @@LowLevelLearning Pico SDK has all the multicore calls.

  • @unknown8088928
    @unknown8088928 Před 2 lety

    CZcams needs more stuff like this over bullshit Windows based IDEs that are 2Gb+

    • @BrightBlueJim
      @BrightBlueJim Před rokem

      An IDE is only just that - an Integrated Development Environment. It is not the IDE's fault if your code is inefficient. You can use a horrible resource hog of an IDE to create beautiful code, because that code does not need to run under the IDE, and does not need to load all of the libraries that the IDE requires. You are barking up the wrong tree.

  • @yubrajbhoi1986
    @yubrajbhoi1986 Před 3 lety +2

    How are you rebooting the pico into programing mode? It doesn't look like you are pulling out the plug every time. Are you using a reset button?

    • @LowLevelLearning
      @LowLevelLearning  Před 3 lety

      I'm disconnecting the USB cable at my computer and holding the BOOTSEL button when I plug it back in. This is my ONLY complaint about the Pi Pico: the lack of a RESET button D:

    • @yubrajbhoi1986
      @yubrajbhoi1986 Před 3 lety +1

      @@LowLevelLearning Oh, I thought you had found a better hack that I don't know about. If you are not aware of it you can connect a button to the ground pin and the 3v run pin to make a reset button.

    • @LowLevelLearning
      @LowLevelLearning  Před 3 lety +1

      I've been meaning to do that.... I've just been too lazy to order the button :D

    • @wuichiakuo
      @wuichiakuo Před 2 lety

      @@LowLevelLearning May be using USB hub that built-in with individual on/off switch can reduce the frequency of unplug/plug back for each reset ...

    • @nUrnxvmhTEuU
      @nUrnxvmhTEuU Před 2 měsíci

      If you use TinyUSB (included in the SDK, and enabled if you enable TTY over USB) you can just "picotool load -f" and it automatically reboots the Pico to bootsel and flashes it.

  • @AlexShynkarenko
    @AlexShynkarenko Před 2 lety +1

    any way to have a raspberry pi to act as a storage device and run a program?

  • @hobbes6832
    @hobbes6832 Před rokem +1

    2:25 shouldn't this be the smp branch that we need to clone.. as per the docs it's the smp branch which is intended for pico

  • @andyonions7864
    @andyonions7864 Před 2 lety +1

    Shouldn't the LED tasks be implemented as infinite loops?

    • @Henry-sv3wv
      @Henry-sv3wv Před 2 lety

      Tasks must not attempt to return from their implementing
      function or otherwise exit

  • @chrisalexthomas
    @chrisalexthomas Před rokem

    @Low Level Learning, so you didn't actually brick your raspberry by putting the LED in the wrong way? i was wondering if that was actually possible? I'm just starting out with this stuff and this seems exactly like the sort of thing I would do :D

    • @LowLevelLearning
      @LowLevelLearning  Před rokem +1

      I didn't, I was just an idiot and forgot to put the task into a loop -_- LOL

    • @chrisalexthomas
      @chrisalexthomas Před rokem

      @@LowLevelLearning phew, I was thinking, I need to buy a couple of extra units, just in case I start bricking things :D haha, although I am quite interested to try FreeRTOS and connect multiple boards together and see if I can use I2C to transmit information between them, using each individual board to do different kinds of processing and use I2C to send the results between the cpu's. If you know what I mean? That sounds an interesting project.

  • @iliasalaur
    @iliasalaur Před rokem +1

    What if i tell you, that freertos runs even on atmega328p ? 1$ chip (hehe)

  • @jyvben1520
    @jyvben1520 Před 3 lety +2

    fried board makes a nice pendant ? or 2 for earrings ...

  • @RicardoAlbertoM
    @RicardoAlbertoM Před 2 lety

    you should check if the board is really burned, and redo the video, it is not a recommended practice since you notice a beginner's error in electronics

  • @stefanp4258
    @stefanp4258 Před 2 lety +1

    Not forget to use 330 Ohm resistor with LED.

  • @user-mr3mf8lo7y
    @user-mr3mf8lo7y Před 5 měsíci

    Common misconception and a typo; real-time OS does not necessarily mean executing tasks concurrently. Only, scheduled-based, and guarenteed execution (and, finishing ..) in a pre-determined time range).

  • @TheTurnipKing
    @TheTurnipKing Před 2 lety +1

    More than one Microcomputer used BASIC as it's OS, and you already have the Micropython interpreter that should easily be at least as fully functional.

    • @stove.d
      @stove.d Před 2 lety

      What is the point here?

    • @markjohnson6343
      @markjohnson6343 Před rokem +1

      BASIC is a language. Micropython is a language. FreeRTOS is an operating system which is intended to simplify the design of more complicated systems. Blinking LEDs doesn't really show off its strengths.

  • @corsairegg
    @corsairegg Před rokem

    Hello, else it's not big deal to make your own scheduler with setjmp longjmp

    • @BrightBlueJim
      @BrightBlueJim Před rokem

      You can say that, but if someone has already made an efficient scheduler, why would you insist on writing your own?

  • @nil0bject
    @nil0bject Před rokem

    i'd write a web service on a real computer to assist the pico. it's the easiest solution

  • @triularity
    @triularity Před 2 lety

    @7:27 - I guess this will be known as "The Great $4 Disaster of 2021" =)

  • @30p87
    @30p87 Před rokem

    Still better than windows

  • @SparkyLabs
    @SparkyLabs Před rokem

    You did not brick your Pi Pico, you just blew it up. It seems that the definition of software people is those who overuse terminology to sound cool.

  • @critical_always
    @critical_always Před rokem

    Interesting. It makes programing easier but what about the overhead?
    I had to laugh that you only had one pico lying around despite spending so much time on it.
    Especially these days I order a lot more if it's a universal part. I needed one pico but ordered 10.

  • @Smael64
    @Smael64 Před 2 lety

    Pretty anticlimatic at the end. Still good video.

  • @neural75
    @neural75 Před 2 lety

    You made fun of the old man boomer and that back fired on you 🤣

  • @kale.online
    @kale.online Před rokem

    cmake 🤥🤥

  • @der.Schtefan
    @der.Schtefan Před rokem

    On no planet, setting a pin, then sleeping, then setting it again is acceptable blinking behaviour. Delays, etc will cause this to desync on any OS

    • @BrightBlueJim
      @BrightBlueJim Před rokem

      You are making assumptions on how the sleep function works. Most time libraries use a central time count that keeps a count of microseconds, or hundreds of microseconds, or some other constant unit of time, and has retriggerable sleep functions. That is, rather than just calling a function that goes to sleep for 1 second from now, you keep resetting an alarm for so many system clock ticks from the last alarm. So if you start a 1-second loop counter at system clock 123000 milliseconds, then when your thread gets that alarm event, you reset the alarm to 124000 milliseconds, then 125000, and so on. It's really up to the programmer - you can either let the blinks free run, if you really don't care, or you set it up so they can stay in sync, if that's important to you. Or to put it another way, just because you can't imagine a planet where blinking out of sync is acceptable, does not mean that such a planet does not exist.

  • @buddysnackit1758
    @buddysnackit1758 Před 3 lety +3

    Thumbs down because of burnt out board. Just get a new board and finish the video....

  • @marcosdominguez4759
    @marcosdominguez4759 Před 3 lety

    I can not dowload the FreeRTOS_Config.h