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

  Переглядів 79,750

Low Level Learning

Low Level Learning

День тому

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

КОМЕНТАРІ: 122
@LowLevelLearning
@LowLevelLearning 2 роки тому
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 2 роки тому
Ahhh the ol' forgot to put it in a loop trick hey
@lighthunt
@lighthunt 2 роки тому
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 2 роки тому
@@lighthunt yeah im just an idiot XD
@lighthunt
@lighthunt 2 роки тому
@@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 2 роки тому
I have found myself out of the loop thing using a debugger and googled the error message.
@liquid2499
@liquid2499 2 роки тому
Great stuff, I’m super interested in freeRTOS and love all the pico videos, thanks!
@raresharktooth
@raresharktooth 2 роки тому
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!!
@cprogrck
@cprogrck 2 роки тому
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 2 роки тому
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 Рік тому
I'd just buy a second pico so then I have 4 cores.
@kenwood_9474
@kenwood_9474 Рік тому
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 Рік тому
@@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 Рік тому
@@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.
@fred.chapman
@fred.chapman 2 роки тому
Thanks for the FreeRTOS tutorial! Can you please post a follow-up video showing the results on the Pico? We need closure. 😁
@junaidpv
@junaidpv 2 роки тому
Frying a dev board is one of most hated experiences for me in the electronics field! Thanks for the tutorial.
@jochen_schueller
@jochen_schueller 2 роки тому
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 2 роки тому
always buy in bulk
@BrightBlueJim
@BrightBlueJim 10 місяців тому
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.
@akashpatil9983
@akashpatil9983 2 роки тому
Man, your vids are really great and helpful! Please just don't stop uploading!!!
@LowLevelLearning
@LowLevelLearning 2 роки тому
Glad you like them!
@052d6
@052d6 2 роки тому
Great! Exactly what I was looking for!
@marcombo01
@marcombo01 2 роки тому
my new favourite programming channel.
@m1geo
@m1geo 9 місяців тому
Super useful intro. Thanks!
@ahmedmoustafa6829
@ahmedmoustafa6829 Рік тому
Many thanks. it helped alot.
@Cptnbond
@Cptnbond 2 роки тому
Nice, a short and sweet tutorial -- will take some time to absorb ;-)
@LowLevelLearning
@LowLevelLearning 2 роки тому
Enjoy!
@heel57
@heel57 Місяць тому
great video. Do you know if the two tasks run on separate cores and how to enforce this?
@lighthunt
@lighthunt 2 роки тому
@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 2 роки тому
Thanks for the tip!
@lighthunt
@lighthunt 2 роки тому
@@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 2 роки тому
@@lighthunt why are my finances the business of theirs
@lighthunt
@lighthunt 2 роки тому
@@Stopinvadingmyhardware I have no idea about your fiance. In other words, WHAT?
@alexandrsoldiernetizen162
@alexandrsoldiernetizen162 Рік тому
@@lighthunt The Pico SDK has constructs for SMP; mutex and critical section calls, etc.
@Frisky0563
@Frisky0563 Рік тому
Hi this is awesome where can I find more information on FRTOS? I'm new to RPi Pico. Thank you Don
@yahmk3978
@yahmk3978 2 роки тому
Thank you very much!
@LowLevelLearning
@LowLevelLearning 2 роки тому
You're welcome!
@PATRIK67KALLBACK
@PATRIK67KALLBACK 2 роки тому
Great video!
@LowLevelLearning
@LowLevelLearning 2 роки тому
Glad you enjoyed it
@kramer3d
@kramer3d 2 роки тому
can you add to this tutorial by making a part 2 covering uart?
@paul300
@paul300 4 місяці тому
Could you make a video about working with MicroPython in VS Code with the Raspberry Pi Pico?
@DevvratYadav7
@DevvratYadav7 2 роки тому
Can we make Gateway using RPi Pico, FreeRTOS, Node-Red ?
@IntenseGrid
@IntenseGrid 2 роки тому
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 2 роки тому
That's lazy, just get an FPGA and include as many cores as you have LEDs to blink!
@alexandrsoldiernetizen162
@alexandrsoldiernetizen162 Рік тому
Pico has 2 PIO blocks, each with 4 state machines, for a total of 8 little cores.
@olafschermann1592
@olafschermann1592 Рік тому
Does free RTOS utilize both rp2040 cores?
@markday3145
@markday3145 2 роки тому
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 2 роки тому
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 2 роки тому
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 Рік тому
@@LowLevelLearning Pico SDK has all the multicore calls.
@yubrajbhoi1986
@yubrajbhoi1986 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 2 роки тому
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 2 роки тому
@@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 2 роки тому
I've been meaning to do that.... I've just been too lazy to order the button :D
@wuichiakuo
@wuichiakuo 2 роки тому
@@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 ...
@bondjovi4595
@bondjovi4595 Рік тому
Neat
@chrisalexthomas
@chrisalexthomas Рік тому
@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 Рік тому
I didn't, I was just an idiot and forgot to put the task into a loop -_- LOL
@chrisalexthomas
@chrisalexthomas Рік тому
@@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.
@hobbes6832
@hobbes6832 10 місяців тому
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
@LowLevelLearning
@LowLevelLearning 2 роки тому
Any cool projects using FreeRTOS? Do tell ;)
@jochen_schueller
@jochen_schueller 2 роки тому
I use it to run my customized firmware on my pacemaker xD
@rick_er2481
@rick_er2481 Рік тому
LwIP MQTT and FreeRTOS? :)
@RunTheTape
@RunTheTape Рік тому
@@jochen_schueller balls of steel.
@andyonions7864
@andyonions7864 2 роки тому
Shouldn't the LED tasks be implemented as infinite loops?
@Henry-sv3wv
@Henry-sv3wv 2 роки тому
Tasks must not attempt to return from their implementing function or otherwise exit
@AlexShynkarenko
@AlexShynkarenko 2 роки тому
any way to have a raspberry pi to act as a storage device and run a program?
@LowLevelLearning
@LowLevelLearning 2 роки тому
What kind of program?
@unknown8088928
@unknown8088928 Рік тому
UKposts needs more stuff like this over bullshit Windows based IDEs that are 2Gb+
@BrightBlueJim
@BrightBlueJim 10 місяців тому
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.
@jyvben1520
@jyvben1520 2 роки тому
fried board makes a nice pendant ? or 2 for earrings ...
@LowLevelLearning
@LowLevelLearning 2 роки тому
A fine necklace! LOL
@johnblack6134
@johnblack6134 2 роки тому
My girlfriend has a lot of pendents.
@corsairegg
@corsairegg Рік тому
Hello, else it's not big deal to make your own scheduler with setjmp longjmp
@BrightBlueJim
@BrightBlueJim 10 місяців тому
You can say that, but if someone has already made an efficient scheduler, why would you insist on writing your own?
@stefanp4258
@stefanp4258 2 роки тому
Not forget to use 330 Ohm resistor with LED.
@LowLevelLearning
@LowLevelLearning 2 роки тому
The blue smoke came out of my LED now what
@jochen_schueller
@jochen_schueller 2 роки тому
@@LowLevelLearning Use a smaller resistor to compensate that xD
@RicardoAlbertoM
@RicardoAlbertoM 2 роки тому
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
@iliasalaur
@iliasalaur 10 місяців тому
What if i tell you, that freertos runs even on atmega328p ? 1$ chip (hehe)
@user-mr3mf8lo7y
@user-mr3mf8lo7y 2 місяці тому
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 2 роки тому
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 Рік тому
What is the point here?
@markjohnson6343
@markjohnson6343 Рік тому
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.
@nil0bject
@nil0bject Рік тому
i'd write a web service on a real computer to assist the pico. it's the easiest solution
@critical_always
@critical_always Рік тому
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.
@triularity
@triularity Рік тому
@7:27 - I guess this will be known as "The Great $4 Disaster of 2021" =)
@30p87
@30p87 Рік тому
Still better than windows
@Smael64
@Smael64 Рік тому
Pretty anticlimatic at the end. Still good video.
@SparkyLabs
@SparkyLabs Рік тому
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.
@neural75
@neural75 2 роки тому
You made fun of the old man boomer and that back fired on you 🤣
@der.Schtefan
@der.Schtefan Рік тому
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 10 місяців тому
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.
@kale.online
@kale.online Рік тому
cmake 🤥🤥
@buddysnackit1758
@buddysnackit1758 2 роки тому
Thumbs down because of burnt out board. Just get a new board and finish the video....
@marcosdominguez4759
@marcosdominguez4759 2 роки тому
I can not dowload the FreeRTOS_Config.h
rust runs on EVERYTHING (no operating system, just Rust)
14:29
Low Level Learning
Переглядів 203 тис.
Turning a Raspberry Pi Pico into a GPU!
16:42
element14 presents
Переглядів 98 тис.
Первая поломка Scirocco! Балацко попал на мотор.
1:13:12
0% Respect Moments 😥
00:27
LE FOOT EN VIDÉO
Переглядів 31 млн
In-depth: Raspberry Pi Pico's PIO - programmable I/O!
17:19
stacksmashing
Переглядів 126 тис.
Getting Started with the ESP32 Development Board  |  Programming an ESP32 in C/C++
15:23
Arduino vs Pico - Which is the Best Microcontroller For You?
20:38
Gary Explains
Переглядів 277 тис.
rust runs on EVERYTHING (no operating system, just Rust)
18:10
Low Level Learning
Переглядів 331 тис.
What is VGA and How to Use it With a Raspberry Pi Pico
18:28
Gary Explains
Переглядів 48 тис.
FreeRTOS on Raspberry Pi Pico
21:30
Slador
Переглядів 11 тис.
i changed my mind about this language
9:34
Low Level Learning
Переглядів 110 тис.
RP2040 KiCad 6 Hardware Design - Part 1 - Schematic
36:20
MicroType Engineering
Переглядів 21 тис.
Program the Raspberry Pi Pico using BASIC - Introducing PiccoloBASIC
14:26