Programming a Raspberry Pi Pico with C or C++

  Переглядів 102,553

Gary Explains

Gary Explains

3 роки тому

In my previous video I showed you how to use the Raspberry Pi Pico with MicroPython. In this video I take a took at using C or C++ and cover how to run code on the second Cortex-M0+ core.
Full instructions and code examples: github.com/garyexplains/examp...
Open GUI apps on Windows Subsystem for Linux (and on Raspberry Pi: • Open GUI apps on Windo...
Introduction to Android app development: www.dgitacademy.com
Let Me Explain T-shirt: teespring.com/gary-explains-l...
Twitter: / garyexplains
Instagram: / garyexplains
#garyexplains

КОМЕНТАРІ: 154
@g0hjq
@g0hjq 3 роки тому
Thank you for a great tutorial. Very useful. As an experiment I wrote C++ and MicroPython programs to toggle an IO pin without any delays. Python managed about 60KHz will lots of jitter, C++ ran at 37MHz without jitter - over 500x faster.
@yash1152
@yash1152 2 роки тому
i think you mistakenely switch K and M.... did you wanted to say 60MHz and 37kHz ??
@g0hjq
@g0hjq 2 роки тому
@@yash1152 Unfortunately not. C++ was much faster than Python, probably because C/C++ is compiled to machine code, whereas Python is interpreted at runtime.
@yash1152
@yash1152 2 роки тому
@@g0hjq ohwww, ohkayy...... I missed reading the "toggle an IO pin" part, and assumed it was the chip spec on which they were running.
@sorova
@sorova Рік тому
How did you measure jitter? Were you monitoring it on a scope?
@g0hjq
@g0hjq Рік тому
@@sorova Yes, it was very easy to see.
@piiumlkj6497
@piiumlkj6497 3 роки тому
Extremely interesting stuff , I mean one of the limitations of arduino is that it was single core , so if you had to handle an event you had to use an interrupt which needed to be kept short , but with this one ; one core could do the communication and monitor the pins while the other is making computationally intensive tasks .
@mytechnotalent
@mytechnotalent 3 роки тому
This is brilliant Gary thank you for doing this. This really shows the power of what is possible here! Taking full advantage of the dual cores is a very much needed gem of a video thank you!
@HariWiguna
@HariWiguna 3 роки тому
Gary, this is fantastic! So much knowledge in 20 minutes! I've tried setting up C++ before and failed (I did not use WSL and got errors on cmake), hopefully will succeed with your help.
@andyjary
@andyjary 3 роки тому
Thanks for the demos and detailed information. Really informative videos and inspiring. Mine's on order now!
@ruprecht9997
@ruprecht9997 5 місяців тому
Thanks for useful tutorial. Got up and running on Linux in half an hour. Was getting tired of Arduino and its extremely low RAM. Two cores is pure luxury for a microcontroller, and as your example shows, they are easily utilized. Great!
@MattBaker1965
@MattBaker1965 2 роки тому
Thanks Gary, the Pico project gen' was the thing I missed trying to get the USB serial data. Great work keep it up :)
@antoniodelcogliano2182
@antoniodelcogliano2182 3 роки тому
Great video, I did this onArchlinux and everything worked just fine. I used this video to really get in to c developing for pico, thanks you very much. One question for the people out there, someone has found a way to control an i2c oled in c using Pico? I only found tutorials on how to do it with micropython or circuit python
@32_bits
@32_bits 3 роки тому
Another excellent video, wonder how long before VC + Platform IO has native Pico support allowing for easier C programming on a PC and other platforms.
@freeelectron8261
@freeelectron8261 2 роки тому
Very interesting. Thanks Gary!
@bertblankenstein3738
@bertblankenstein3738 Рік тому
Going to give the Pico a try when they arrive. Should be a fun mcu, and fun to program in C.
@chairmakerPete
@chairmakerPete 3 роки тому
I am suitably chastened by this brilliant video. Any thoughts I might code in C on a Pico are thoroughly debunked, and I shall very reluctantly pick up the Python handbook and learn another total mess of a programming language instead!! 😂 Kudos to Gary. That's what a proper coder can do. I'm going to tell my boss that the Pico must have been lost in the mail, and hopefully he'll forget about the whole thing 😉
@bertblankenstein3738
@bertblankenstein3738 Рік тому
Thank you for doing this video. I found some instructions on the web, but they were incomplete. I needed the project generator, and the python-tk (tkinger). That it came together. Easy as Pi. Ok, it is a bit more involved... I don't have the picos yet, but I have the development environment set up and can build a uf2 file.
@tetraquark2402
@tetraquark2402 2 роки тому
Very nice. This is something I want to try when I get my own laptop rather than use my works laptop
@deathscyth76
@deathscyth76 2 роки тому
Cool guide, Gary! Thanks!
@GaryExplains
@GaryExplains 2 роки тому
Glad it was helpful!
@letrainavapeur
@letrainavapeur 3 роки тому
Interesting as usual Gary, thank goodness for Thonny and micropython though
@LLlblKAPHO
@LLlblKAPHO Рік тому
Было полезно, смотрел с переводом, плата пико уже заказана и едет, жду не дождусь когда смогу начать экспериментировать с ней
@aliemad9455
@aliemad9455 6 місяців тому
Very very helpful. Thank you❤
@GaryExplains
@GaryExplains 6 місяців тому
You’re welcome 😊
@JerWare
@JerWare 3 роки тому
The final example of push/pop between cores should have synced both LEDs to be on and off at the same time (per the coded example) but it looks like the same video from previous build was shown with LEDs blinking opposite from each other.
@GaryExplains
@GaryExplains 3 роки тому
Probably.
@yahmk3978
@yahmk3978 3 роки тому
Thank you!
@bertieblob3387
@bertieblob3387 3 роки тому
It might be helpful to specify which version of WSL you are using. How you might set this up could vary between versions. E.g., I believe that on WSL 2, it’s better to use the ‘internal’ Linux file system as WSL2 is VM based. There are/were also issues around serial ports in WSL2. Probably best to stick to WSL1 for this kind of stuff ATM. Great video. Thank you. 👍🏼
@dgloverau
@dgloverau 3 роки тому
Yes you are correct. This is for other readers as I guess you know this already. Wsl2 recommended, Wsl2 better to keep files inside wsl file system. To view files in Explorer then from ubuntu cli then type Explorer.exe. That is a dot following exe to open current directory then copy file to pico
@parsishashank
@parsishashank 3 роки тому
Perfect 👌👌
@GaryExplains
@GaryExplains 3 роки тому
Thanks 😊
@kenbrand1843
@kenbrand1843 3 роки тому
Very interesting Gary! Can you run Julia on it?
@Bhatt_ji4300
@Bhatt_ji4300 3 роки тому
Thank sir
@EricWAtchesVideos
@EricWAtchesVideos 9 місяців тому
VS Code has a serial monitor as well.
@eFeXuy
@eFeXuy 3 роки тому
I can't get the serial monitor working, inside Arduino IDE the port option is greyed out and trying to open the terminal errors to "board on null not available"
@RobertLeather
@RobertLeather 3 роки тому
Hi Gary, long time no see. You ever go back to the University of Portsmouth? Seems like a decent little device.
@barchilsaid3001
@barchilsaid3001 2 роки тому
Many many Thanks.
@GaryExplains
@GaryExplains 2 роки тому
You are most welcome
@mr1enrollment
@mr1enrollment 2 роки тому
Can you explain how to write C for core 2 and Python for core 1?
@DAVIDGREGORYKERR
@DAVIDGREGORYKERR 2 роки тому
What about the latest version of Code::Blocks IDE Cross Compiler and gcc-arm-eabi
@andrewtelford7436
@andrewtelford7436 3 роки тому
Great explanation! Looking forward to the rust edition :-)
@bissonFamily
@bissonFamily 3 роки тому
+1 for the Rust version! Love Rust!
@elshiftos
@elshiftos 3 роки тому
Great video as usual, but why run under WSL on a windows machine instead just following the setup instructions for running under windows 10? I had a go at setting up Visual Studio Code on a PC running Ubuntu by following the instructions for RPi, but encountered too many hurdles and had to give up!
@markderlo212
@markderlo212 Рік тому
So did you manage to program rpi pico in C under win10? Because this is what I am looking for...
@franklinrosales8603
@franklinrosales8603 2 роки тому
I wonder if both cores share the same memory or even context within the code. Like if for example I had the pico constantly polling a couple gpio pins with one core and processing and sending their data through serial with the other core, if I saved the state of the gpio on different variables, would I be able to access their values from the second core?
@GaryExplains
@GaryExplains 2 роки тому
There is lots of good documentation about this on the Raspberry Pi website. The recommended method is to use the FIFOs supplied by the SDK.
@adisharr
@adisharr 3 роки тому
Good lord Linux is about a cryptic as it comes.
@anunez20
@anunez20 10 місяців тому
There are several tools to monitor the Serial Port, for instance: minicom, cutecom, screen ....
@avejst
@avejst 3 роки тому
Isn't Arduino on the way, with support for the processor too? Thanks for sharing your experience with all of us👍😀
@GaryExplains
@GaryExplains 3 роки тому
Yes, it is
@nigelgunn322
@nigelgunn322 Рік тому
You can also use Forth and BASIC.
@paulbarton4395
@paulbarton4395 Рік тому
Hi, I have a question about what is happening at 6:40. When I installed wsl, it created a username and directory that I cannot find in C\Users or anywhere in my file explorer, but I got everything installed up to this point, in a directory called pico, etc. Command 'pwd' shows that a linux 'home' directory was created but I cant find any of this on my system through windows explorer. Not sure how to do the PATH, /mnt/ stuff now. Again, when I installed wsl it just handed me a username (maybe based on my Windows ID, not my pc 'name') without asking me and created some secret directory somewhere; I'm not sure how to proceed. Do I really need the windowing system in general or is it just for the demos?
@spotterinc.engineering5207
@spotterinc.engineering5207 3 роки тому
Hi - Late to the channel - but love your videos. However - one thing I noticed may be an editing error - at 14:36 when you show the two leds on 2 cores using messaging, the video of the blinking is incorrect - it shows the leds blinking alternately with equal duration, while the code was asynchronous with one led twice as fast as the other! Sorry to be nit-picky, but things like that could confuse beginners. Keep up the great work.
@GaryExplains
@GaryExplains 3 роки тому
Yes, it was a footage mix up,it has been mentioned in the comments elsewhere.
@thanhtranngoc7920
@thanhtranngoc7920 2 роки тому
thanks alots
@quaziz
@quaziz Рік тому
Thanks for a great tutorial. Sadly I couldn't continue from where you were explaining X11 monitor stuffs. I don't have a raspberry pi to run on. How can I proceed without an other raspberry pi or other machine at all? Thanks a lot!
@quaziz
@quaziz Рік тому
Okay, so I checked the docs right after I wrote. Letting others with the same problem know and hopefully also get som help on my next problem. So it seems like I don't have to use any GUI, so I instead used the terminal and wrote: "./pico_project.py -usb blinky" which should give me a generated. but that gives me "Unable to locate the Raspberry Pi Pico SDK, PICO_SDK_PATH is not set" which I actually set when watching the tutorial. Any reason known why this is happening?
@quaziz
@quaziz Рік тому
I can also see that it is set by "echo $PICO_SDK_PATH"
@quaziz
@quaziz Рік тому
For those who has the same problem, just edit your /etc/environment file and add the ENV variable
@pgriggs2112
@pgriggs2112 Рік тому
Wait, after you build Cmake with gcc, shouldn’t you then rebuild Cmake with Cmake?
@svenbauerle7277
@svenbauerle7277 3 роки тому
Thank you very much! Very usefull. May I ask you to make a tutorial with a rotary encoder connected via 1 or/and 2 irqs to the pico? I am struggeling with this, because there is no Encoder library.
@eduflyer
@eduflyer Рік тому
I see that you also have "#include "pico/stdlib.h"" underlined like I do. I can not run step by step on vscode I get an error that says pico/stdlib.h: No such file or directory Is it possible to step through the code and set up breakpoints in vscode using this method? Is so how? Please help! Thank you so much! Great Video!
@pranjalbaishya1878
@pranjalbaishya1878 Рік тому
Did u got any solution? If you got any solution please help. I am also in the same situation.
@cmdlp4178
@cmdlp4178 3 роки тому
Where is a link to the installation of the x server?
@GaryExplains
@GaryExplains 3 роки тому
Sorry, I forgot to include it in the description, however it was in the README file in my GitHub. I will fix the description. The link is ukposts.info/have/v-deo/sZ2Ha6BnZ2l2tXU.html
@antoniojohnson7693
@antoniojohnson7693 3 роки тому
I have been unable to get this to work. I installed X-Server, but when ti run the ./pico_project.py --gui command, I get an error saying _tkinter.TclError: couldn't connect to display "127.0.0.1"
@PauloSilva-ll4vs
@PauloSilva-ll4vs 3 роки тому
Me too, the same error...
@cdgal
@cdgal 2 роки тому
export DISPLAY=$(awk '/nameserver / {print $2; exit}' /etc/resolv.conf 2>/dev/null):0 export LIBGL_ALWAYS_INDIRECT=1 see: wiki.ubuntu.com/WSL#Running_Graphical_Applications
@johnellerington2676
@johnellerington2676 2 роки тому
You must start X-Windows - run Xterm, you should see the icon on the bottom right of your taskbar
@lincolnwallace8561
@lincolnwallace8561 2 роки тому
@@cdgal You just have saved my day! Really Really Really thanks! ^^
@buildlover9959
@buildlover9959 3 місяці тому
Just to add some, I did [ ukposts.info/have/v-deo/oXuZe6ShbW-J24U.html ] and worked
@dillondriskill6403
@dillondriskill6403 2 роки тому
Great stuff here, however, I am running into an issue where even if I do the "export PICO_SDK_PATH" command correctly, pico_project.py will pop up and tell me it is unable to locate the pico sdk path. I am very frustrated and have tried everything.
@dillondriskill6403
@dillondriskill6403 2 роки тому
a workaround i have found was to edit pico_project.py and during the check for the sdk path, i simply set sdkPath equal to my pico sdk path. Not ideal, but it works
@naveenvaid4318
@naveenvaid4318 3 роки тому
hlo sir i don't know about python i know about c for arduino can i use pi pico
@jonasfelipe777
@jonasfelipe777 Рік тому
I'm not finding anywhere in the internet how to program the raspberry pi Pico registers in c. Do you know how?
@GaryExplains
@GaryExplains Рік тому
Yes, look at my videos about Piccolo OS, there is lots of register programming involved in that.
@Graham1904
@Graham1904 2 місяці тому
Why are the two includes showing error?
@jumhig
@jumhig 3 роки тому
What a pain to set up. I'm going to wait for a better Pico IDE.
@zeke7237
@zeke7237 3 роки тому
vs.code together with a second pico set up as a picoprobe connected to the SWD pins make a pretty decent dev environment
@jumhig
@jumhig 3 роки тому
Apparently someone has now got the Arduino IDE working with the Pico.
@OpenLogicEFI
@OpenLogicEFI Рік тому
Been 2 years and I'm still having issues getting the SDK to work properly on VS code
@wickeddubz
@wickeddubz 3 роки тому
Using putty for serial connection will be more convenient i guess. Opening the whole IDE just for serial monitor is kinda overkill
@GaryExplains
@GaryExplains 3 роки тому
I think that putty has a problem in that it can't leave the connection open when the board of rebooted. I found it much more difficult to use than the Arduino serial monitor.
@wickeddubz
@wickeddubz 3 роки тому
@@GaryExplains good point, but still weird that you need two IDE to and debug the code. If connection is dropped, right click on the top left corner of putty and select Restart Session. C/C++ is super powerful, but most of people would prefer easy ways of setting up their programming tools. Are there any lightweight IDEs that support C/C++ and can keep serial connection open?
@wayland7150
@wayland7150 Рік тому
Ah, I remember the C development cycle. Edit, save, make, upload, boot, test then repeat. I've got PicoMite MMBASIC on mine and this same thing is Edit, Run then repeat. A much faster development cycle.
@wlcrutch
@wlcrutch 2 місяці тому
Gary you are the man. What is your profession?
@GaryExplains
@GaryExplains 2 місяці тому
UKpostsr? 🤔
@jonathangerard745
@jonathangerard745 3 роки тому
Can it be programmed with Rust?
@ramonedrozojr.768
@ramonedrozojr.768 2 місяці тому
Would be okay if you showed us from scratch, I don't know how you opened that terminal from the start.
@Woodiii
@Woodiii 3 роки тому
I get the error: couldn't connect to display "127.0.0.1:0" what should I do?
@johnellerington2676
@johnellerington2676 2 роки тому
You must start X-Windows - run Xterm, you should see the icon on the bottom right of your taskbar
@johnellerington2676
@johnellerington2676 2 роки тому
Trying this with Ubuntu 21.04 and latest Cmake v3.21.0 and the make process fails, "CMake Error at CMakeLists.txt:107 (message): The C++ compiler does not support C++11 (e.g. std::unique_ptr)". Re-tried with the same versions of Ubuntu and Cmake as you use in the video, same error.
@johnellerington2676
@johnellerington2676 2 роки тому
Problem solved - you must use WSL v1, not WSL v2
@supreetyadav5021
@supreetyadav5021 3 роки тому
Can't we use the other core in micropython?
@GaryExplains
@GaryExplains 3 роки тому
Sure, of course. See github.com/raspberrypi/pico-micropython-examples/blob/master/multicore/multicore.py
@supreetyadav5021
@supreetyadav5021 3 роки тому
@@GaryExplains thank you xD
@sddndsiduae4b-688
@sddndsiduae4b-688 3 роки тому
@@supreetyadav5021 important to note here muticore fifo implementation on pi pico is mostly hardware, so in case of c++ program can work even faster than on latest intel cpu.
@gedtoon6451
@gedtoon6451 Рік тому
Do Raspberry Pi Ltd have an ARM licence, or did they use a third party to design and manufacture the RP2040?
@GaryExplains
@GaryExplains Рік тому
It likely has an entry level license to use the Cortex-M0+. Arm has quite a few "quick start" schemes for its Cortex-M range.
@ayush.kumar.13907
@ayush.kumar.13907 3 роки тому
Boku no Pico Best Anime
@BrianG61UK
@BrianG61UK Місяць тому
The multicore example showed code to flash one LED at double the rate of the other, yet that didn't happen. Did you just use the wrong clip in the video?
@GaryExplains
@GaryExplains Місяць тому
Yes, I used the wrong clip. Sorry.
@BrianG61UK
@BrianG61UK Місяць тому
@@GaryExplains That's good. It means I did understand what was happening.
@pristojankanal1954
@pristojankanal1954 2 роки тому
my is keep crashing.Win version 20H2 Build 19042.1237
@sergeybrutspark
@sergeybrutspark 2 роки тому
I am the 1K liker
@ke4est
@ke4est 3 роки тому
Gary keep getting this error: E: Unable to locate package tkinter
@GaryExplains
@GaryExplains 3 роки тому
Sorry, that is a mistake in the instructions, I will fix it soon. Just leave that out of the command.
@checkpoint.
@checkpoint. 3 роки тому
use this command instead "sudo apt install gcc-arm-none-eabi libnewlib-arm-none-eabi build-essential libssl-dev tk python3-tk"
@RickMcMichael
@RickMcMichael 2 роки тому
Anyone out there one a purely Raspberry Pi Pico C/C++ Visual Studio video? Tired of all the Cmakes/Gits... Just want to build from scratch...
@InboundG
@InboundG Рік тому
Getting through running all those commands was a nightmare, spent 4 hours just solving random errors. Why does it never just work 🤣
@BR-hi6yt
@BR-hi6yt 2 роки тому
This puts me off ever attempting it.
@harelib11
@harelib11 2 роки тому
It just doesn't work for me.... The xhost + fails, and same goes for the cmake .. and make commands..... Idk what you did but it just doesn't work for me
@acrodrigues1
@acrodrigues1 3 роки тому
What an heresy using arduino to monitor rpi pico! 😂😂😂
@1MarkKeller
@1MarkKeller 3 роки тому
*GARY!!!* *Good Evening Professor!* *Good Evening Fellow Classmates!* Stay Safe Out There Everyone!
@GaryExplains
@GaryExplains 3 роки тому
MARK!
@amalirfan
@amalirfan 3 роки тому
I find C tutorials entertaining, is that normal?
@paulturner5769
@paulturner5769 3 роки тому
So, at 14:34, why wasn't LED_PIN14 flashing twice as fast as LED_PIN25? I smell a rat! LED_PIN14 delays are set to 500ms whilst LED_PIN25 delays are set to 1000ms
@GaryExplains
@GaryExplains 3 роки тому
Ah, I see what you mean now (following your edit of your comment). Yeah, that means I mixed up the footage when I edited the video. Sorry about that.
@sorova
@sorova Рік тому
I bet it runs about 20 times faster too than Python.
@d.j.peters
@d.j.peters 3 роки тому
installing GB for programing a 32bit micro controller to blink an LED WTF we are in 2021 not 1990 :-)
@PauloSilva-ll4vs
@PauloSilva-ll4vs 3 роки тому
Problems found: 1-unable to connect to display 127.0.0.1:0 To solve just install VcXsrv to windows... 2-pico-project-generator claims about CMAKE_CXX_COMPILER not defined To solve in the same terminal you run pico-project-generator do this exports: export CC=arm-none-eabi-gcc export CXX=arm-none-eabi-g++ 3- Now I am strungling with: /build/newlib-CVVEyx/newlib-3.3.0/build/arm-none-eabi/newlib/libc/stdlib/../../../../../newlib/libc/stdlib/exit.c:64: undefined reference to `_exit' I have no ideia how to solve it yet... 4 - Item #3 was solved starting from scratch and following the Gary instructions from github.com/garyexplains/examples/tree/master/Raspberry%20Pi%20Pico/C in readme.md, and not instructions from video.
@TheDutchisGaming
@TheDutchisGaming Рік тому
I remember solving the 1st one somehow but now I am stuck with it again even though I got everything on. Edit: Found it in my history: export DISPLAY=$(ip route list default | awk '{print $3}'):0
@meneerjansen00
@meneerjansen00 Рік тому
Thank you for this video on C on the Pico instead of that _dreaded_ Python shite. I hate Python with a passion because: 1. Python code is not backward compatible. Yep, that's right: all you hard work for a Python ver. 2 script won't do you any good in Python 3. Bye, bye hard work. C has been around since the 1980's and your code'll work forever. 2. It's a scripting language that needs the Python executable. It's not a programming language: you can *not* make actual programs with Python. 3. Python code ain't backward compatible. 4. Python code ain't backward compatible. It's utter and utter shite.
@chillipaste2183
@chillipaste2183 2 роки тому
So frustrating! Been searching for a month now how to get started with this snake language. But NOWHERE is there any explanation of how to open the terminal window or WHERE to download it from. I think I should better stay with arduino?
@GaryExplains
@GaryExplains 2 роки тому
I am assuming you are taking about the Windows Subsystem for Linux (WSL)? If so, I have several videos about how to set it up, here on this channel.
@chillipaste2183
@chillipaste2183 2 роки тому
Many thanks for your reply. I'm on windows 7. Been looking for a tutorial on how to get started from the point of not having a clue what the very first step is. (Just bought a pico). All turorials say "open terminal window".... sure... WHERE or WHAT icon do I click to open the terminal window? LOL oh... and then they type some weird stuff in there at lightning speed. I have a good understanding of C++ but this snake (python) language scares me. Nany thanks for your videos and for sharing your kowlege. I'll dig deeper into your previous videos.
@GaryExplains
@GaryExplains 2 роки тому
Just as a first pointer, you need Windows 10 for WSL.
@chillipaste2183
@chillipaste2183 2 роки тому
Oh dear! Many thanks for the heads up. I guess that'll be the end of my quest getting into anything rasberry or pie things. I cannot afford win 10.
@justinberdell7517
@justinberdell7517 Рік тому
Where did you learn how to make a project? This is not it the Getting Started C/C++ doc. Also, just my 2 cents, I'm an electrical engineer with an advanced degree and this workflow is kind of ridiculous for a hobbyist product. Oh, it's way off in chapter 8 lol I should have looked more closely. Man nothing in my setup matches the documentation. Honestly, just programming a real microcontroller in Code Composer and Flashing with a J-Link is easier than this. I've never been impressed with Raspberry Pi products
@bruceblosser2040
@bruceblosser2040 3 роки тому
This has turned out to be more reasons why I am glad I don't use C!!!
@adisharr
@adisharr 3 роки тому
Tell me about it - 6 pages of crap just to use C.
@zRedPlays
@zRedPlays Рік тому
0 progress. couldn't download most of the packages and execute many commands, I'm on windows 10 and he's just showing ubuntu linux commands
@GaryExplains
@GaryExplains Рік тому
There is plenty of documentation on the Raspberry Pi website about how to install the tools on native Windows. But just to clarify, I am using Windows 10, but I am using WSL, the Windows Subsystem for Linux.
@zRedPlays
@zRedPlays Рік тому
@@GaryExplains Eventually i found a way to make it work, your video did help me in knowing what packages i had to install, I'm sorry if i offended you in any way, didn't mean to show any kind of hate! Keep it up!
@levmatta
@levmatta 3 роки тому
First
@markderlo212
@markderlo212 Рік тому
I like your vids a lot but you talk too fast !!! Why rush ?
@trevthea5781
@trevthea5781 3 роки тому
Jeeeez... there's nothing new or special about this pi. It's 20 year old tech. Why don't they innovate? Here's an idea... build a 5ghz wifi radio, on an ARM cpu for $2.
@trevthea5781
@trevthea5781 3 роки тому
BTW Gary, I love your videos. Keep them coming. My rant is targeted at the PI foundation.
@trevthea5781
@trevthea5781 3 роки тому
@@cronchcrunch the ESP32 is a more powerful CPU that has WiFi 2.4 ghz so it can connect to the internet. Why didn't the PI foundation innovate something like that? These PI arm chips are all hype unfortunately. If you know anything about the ARM ecosystem, you'll agree.
@trevthea5781
@trevthea5781 3 роки тому
@@cronchcrunch I agree. More powerful, in terms of speed, isn't needed. I suggested that more innovation is needed, not power. Hope that clarifies.
@trevthea5781
@trevthea5781 3 роки тому
@@cronchcrunch learn to read. OP is 5ghz wifi, not 5ghz ARM cpu.
@sddndsiduae4b-688
@sddndsiduae4b-688 3 роки тому
and which other cpu do have multicore hardware fifo implementation?
@mba2ceo
@mba2ceo Рік тому
Needs to be made simpler - some write a GUI like Code Blocks for the pi
Arduino vs Pico - Which is the Best Microcontroller For You?
20:38
Gary Explains
Переглядів 276 тис.
In-depth: Raspberry Pi Pico's PIO - programmable I/O!
17:19
stacksmashing
Переглядів 126 тис.
Повістки у Києві: «Яке право вони мають забирати всіх мужиків?» #війна #мобілізація #військові
00:41
Слідство.Інфо | Розслідування, репортажі, викриття
Переглядів 761 тис.
Use BOTH Cores  |  Dual Core Programming on the Raspberry Pi Pico
7:49
Low Level Learning
Переглядів 37 тис.
#372 How to use the two Cores of the Pi Pico? And how fast are Interrupts?
14:25
Easy Raspberry Pi Projects for 2023!
10:03
Crosstalk Solutions
Переглядів 791 тис.
Turning a Raspberry Pi Pico into a GPU!
16:42
element14 presents
Переглядів 96 тис.
How to Setup a Raspberry Pi Pico and Code with Thonny
7:27
Core Electronics
Переглядів 118 тис.
Why Some Designs Are Impossible to Improve: Quintessence
33:03
Design Theory
Переглядів 39 тис.
Raspberry Pi Pico - Review and Getting Started
18:32
Gary Explains
Переглядів 73 тис.
The Humble PC
24:07
Linus Tech Tips
Переглядів 1,1 млн
The Cheapest Microcontroller? Getting started with the 10 cent Puya PY32.
21:36
Zach of All Trades
Переглядів 13 тис.
Повістки у Києві: «Яке право вони мають забирати всіх мужиків?» #війна #мобілізація #військові
00:41
Слідство.Інфо | Розслідування, репортажі, викриття
Переглядів 761 тис.