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

  Рет қаралды 87,553

Low Level

Low Level

Күн бұрын

Пікірлер: 127
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
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 3 жыл бұрын
Ahhh the ol' forgot to put it in a loop trick hey
@lighthunt
@lighthunt 3 жыл бұрын
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) ;-)
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
@@lighthunt yeah im just an idiot XD
@lighthunt
@lighthunt 3 жыл бұрын
@@LowLevel-TV 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.
@raresharktooth
@raresharktooth 3 жыл бұрын
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 3 жыл бұрын
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.
@junaidpv
@junaidpv 3 жыл бұрын
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 Жыл бұрын
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.
@lighthunt
@lighthunt 3 жыл бұрын
@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 ...
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
Thanks for the tip!
@lighthunt
@lighthunt 3 жыл бұрын
@@LowLevel-TV 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 2 жыл бұрын
@@lighthunt The Pico SDK has constructs for SMP; mutex and critical section calls, etc.
@liquid2499
@liquid2499 3 жыл бұрын
Great stuff, I’m super interested in freeRTOS and love all the pico videos, thanks!
@akashpatil9983
@akashpatil9983 3 жыл бұрын
Man, your vids are really great and helpful! Please just don't stop uploading!!!
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
Glad you like them!
@iliasalaur
@iliasalaur Жыл бұрын
What if i tell you, that freertos runs even on atmega328p ? 1$ chip (hehe)
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
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 2 жыл бұрын
LwIP MQTT and FreeRTOS? :)
@RunTheTape
@RunTheTape Жыл бұрын
@@jochen_schueller balls of steel.
@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. 😁
@m1geo
@m1geo Жыл бұрын
Super useful intro. Thanks!
@DevvratYadav7
@DevvratYadav7 2 жыл бұрын
Can we make Gateway using RPi Pico, FreeRTOS, Node-Red ?
@hobbes6832
@hobbes6832 Жыл бұрын
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
@user-mr3mf8lo7y
@user-mr3mf8lo7y 7 ай бұрын
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).
@Cptnbond
@Cptnbond 3 жыл бұрын
Nice, a short and sweet tutorial -- will take some time to absorb ;-)
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
Enjoy!
@ltlt6117
@ltlt6117 6 күн бұрын
Hi there is a big question in me about Freertos! Imaging if we have 3 functions and compiler needs to run every function in 1us so all functions needs 3us to run Can Freertos do all of these 3 functions just in 1us and same time?
@markday3145
@markday3145 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.
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
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 2 жыл бұрын
@@LowLevel-TV Pico SDK has all the multicore calls.
@transientaardvark6231
@transientaardvark6231 Ай бұрын
Answer to your opening question: I'd write a round-robin core that would do the job just as well without all the nightmares of pre-emption and the pretence that "everything would just work like magic" which unless you are very careful it won't, but in a way that is horrendous to debug. And the architecture would scale just fine. (also "operating system" in the title is disingenuous as it will typically be interpreted as something like linux - should say "RTOS")
@king_james_official
@king_james_official Ай бұрын
it's not misleading, it is an operating system, a system which operates. if someone can't grasp that concept that's their problem
@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 2 жыл бұрын
Pico has 2 PIO blocks, each with 4 state machines, for a total of 8 little cores.
@AlexShynkarenko
@AlexShynkarenko 2 жыл бұрын
any way to have a raspberry pi to act as a storage device and run a program?
@LowLevel-TV
@LowLevel-TV 2 жыл бұрын
What kind of program?
@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
@paul300
@paul300 9 ай бұрын
Could you make a video about working with MicroPython in VS Code with the Raspberry Pi Pico?
@jyvben1520
@jyvben1520 3 жыл бұрын
fried board makes a nice pendant ? or 2 for earrings ...
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
A fine necklace! LOL
@johnblack6134
@johnblack6134 3 жыл бұрын
My girlfriend has a lot of pendents.
@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.
@triularity
@triularity 2 жыл бұрын
@7:27 - I guess this will be known as "The Great $4 Disaster of 2021" =)
@Frisky0563
@Frisky0563 2 жыл бұрын
Hi this is awesome where can I find more information on FRTOS? I'm new to RPi Pico. Thank you Don
@yubrajbhoi1986
@yubrajbhoi1986 3 жыл бұрын
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?
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
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 3 жыл бұрын
@@LowLevel-TV 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.
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
I've been meaning to do that.... I've just been too lazy to order the button :D
@wuichiakuo
@wuichiakuo 2 жыл бұрын
@@LowLevel-TV 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 4 ай бұрын
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.
@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
@rahulkushwaha9500
@rahulkushwaha9500 4 ай бұрын
nice intro, please bring more tutorials on freeRTOS.
@olafschermann1592
@olafschermann1592 Жыл бұрын
Does free RTOS utilize both rp2040 cores?
@Smael64
@Smael64 2 жыл бұрын
Pretty anticlimatic at the end. Still good video.
@heel57
@heel57 6 ай бұрын
great video. Do you know if the two tasks run on separate cores and how to enforce this?
@nil0bject
@nil0bject 2 жыл бұрын
i'd write a web service on a real computer to assist the pico. it's the easiest solution
@neural75
@neural75 2 жыл бұрын
You made fun of the old man boomer and that back fired on you 🤣
@kramer3d
@kramer3d 3 жыл бұрын
can you add to this tutorial by making a part 2 covering uart?
@unknown8088928
@unknown8088928 2 жыл бұрын
KZbin needs more stuff like this over bullshit Windows based IDEs that are 2Gb+
@BrightBlueJim
@BrightBlueJim Жыл бұрын
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.
@corsairegg
@corsairegg Жыл бұрын
Hello, else it's not big deal to make your own scheduler with setjmp longjmp
@BrightBlueJim
@BrightBlueJim Жыл бұрын
You can say that, but if someone has already made an efficient scheduler, why would you insist on writing your own?
@kale.online
@kale.online Жыл бұрын
cmake 🤥🤥
@stefanp4258
@stefanp4258 3 жыл бұрын
Not forget to use 330 Ohm resistor with LED.
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
The blue smoke came out of my LED now what
@jochen_schueller
@jochen_schueller 2 жыл бұрын
@@LowLevel-TV Use a smaller resistor to compensate that xD
@30p87
@30p87 Жыл бұрын
Still better than windows
@marcombo01
@marcombo01 2 жыл бұрын
my new favourite programming channel.
@ahmedmoustafa6829
@ahmedmoustafa6829 Жыл бұрын
Many thanks. it helped alot.
@052d6
@052d6 3 жыл бұрын
Great! Exactly what I was looking for!
@chrisalexthomas
@chrisalexthomas 2 жыл бұрын
@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
@LowLevel-TV
@LowLevel-TV 2 жыл бұрын
I didn't, I was just an idiot and forgot to put the task into a loop -_- LOL
@chrisalexthomas
@chrisalexthomas 2 жыл бұрын
@@LowLevel-TV 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.
@PATRIK67KALLBACK
@PATRIK67KALLBACK 3 жыл бұрын
Great video!
@LowLevel-TV
@LowLevel-TV 3 жыл бұрын
Glad you enjoyed it
@bondjovi4595
@bondjovi4595 Жыл бұрын
Neat
@buddysnackit1758
@buddysnackit1758 3 жыл бұрын
Thumbs down because of burnt out board. Just get a new board and finish the video....
@yahmk3978
@yahmk3978 2 жыл бұрын
Thank you very much!
@LowLevel-TV
@LowLevel-TV 2 жыл бұрын
You're welcome!
@TheTurnipKing
@TheTurnipKing 3 жыл бұрын
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 2 жыл бұрын
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.
@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 Жыл бұрын
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.
@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.
@marcosdominguez4759
@marcosdominguez4759 3 жыл бұрын
I can not dowload the FreeRTOS_Config.h
rust runs on EVERYTHING (no operating system, just Rust)
14:29
Low Level
Рет қаралды 213 М.
小路飞嫁祸姐姐搞破坏 #路飞#海贼王
00:45
路飞与唐舞桐
Рет қаралды 5 МЛН
Как мы играем в игры 😂
00:20
МЯТНАЯ ФАНТА
Рет қаралды 3,2 МЛН
Миллионер | 1 - серия
34:31
Million Show
Рет қаралды 2,1 МЛН
From Small To Giant Pop Corn #katebrush #funny #shorts
00:17
Kate Brush
Рет қаралды 71 МЛН
In-depth: Raspberry Pi Pico's PIO - programmable I/O!
17:19
stacksmashing
Рет қаралды 135 М.
FreeRTOS SMP on the RP2040 Tutorial - Symmetric Multiprocessing with FreeRTOS!
15:47
i was right.
11:15
Low Level
Рет қаралды 944 М.
Getting Started with Multicore Programming on the Raspberry Pi Pico
11:14
Learn Embedded Systems
Рет қаралды 45 М.
FreeRTOS on the Raspberry Pi Pico (RP2040) Part 2: Tasks and Queues
13:45
Learn Embedded Systems
Рет қаралды 26 М.
Raspberry Pi  Pico PIO  - 8 Little Processors You Can Program
31:55
Gary Explains
Рет қаралды 92 М.
What is PIO | Programmable I/O on Raspberry Pi Pico
5:34
Raspberry Pi
Рет қаралды 79 М.
小路飞嫁祸姐姐搞破坏 #路飞#海贼王
00:45
路飞与唐舞桐
Рет қаралды 5 МЛН