Then use them instead of bitching about something else that does not have it and costs more.
Re: Is the raspberry foundation flipping blue?
Additionally one wonders exactly how long it will be before someone releases their own RP2040 board which does have wifi / buetooth / LoRa / AJE (a Jet Engine)
Maybe they should get to grips with the chip features now, to get a headstart for the eventual board of their dreams.
Or reject it out of hand, thats what the cool kids do.
Doug.
Building Management Systems Engineer.
Building Management Systems Engineer.
-
- Posts: 123
- Joined: Sat Jan 23, 2021 4:20 pm
Re: Is the raspberry foundation flipping blue?
apparently the Arduino lot have a board with WiFi coming.
personally there are situations where wifi/bluetooth etc are specifically *not* wanted, e.g. situations where cyber security matters or where certification of such systems will be a lot harder for EMC type reasons or because you are working on safety critical systems.
I know I would find it a lot easier to get a device with one of these Pico boards used where I work that say an ESP8266 based board with WiFi on it
personally there are situations where wifi/bluetooth etc are specifically *not* wanted, e.g. situations where cyber security matters or where certification of such systems will be a lot harder for EMC type reasons or because you are working on safety critical systems.
I know I would find it a lot easier to get a device with one of these Pico boards used where I work that say an ESP8266 based board with WiFi on it
Re: Is the raspberry foundation flipping blue?
The vast majority of industrial use cases do not need Wifi. It's only the IoT stuff and similar that might need it really. And yes, Arduino will ahve something very soon.
Please remember this is our FIRST silicon product, we need to start somewhere, and this is where we have started. We believe the market is big enough to want this device as is, it has some USP's that some people will find very useful.
Please remember this is our FIRST silicon product, we need to start somewhere, and this is where we have started. We believe the market is big enough to want this device as is, it has some USP's that some people will find very useful.
Principal Software Engineer at Raspberry Pi (Trading) Ltd.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
-
- Posts: 123
- Joined: Sat Jan 23, 2021 4:20 pm
Re: Is the raspberry foundation flipping blue?
t be honest I find product #1 being what amounts to a bare bones breakout board is perfect, and as for the Internet of Insecure Things... as noted before simply having that ability on board presents a risk in many situations that will make adoption harder - especially when such is not hard to add to a device with this many pins, and likely easier to add such that it gets a better antenna as welljamesh wrote: ↑Sun Jan 24, 2021 9:31 pmThe vast majority of industrial use cases do not need Wifi. It's only the IoT stuff and similar that might need it really. And yes, Arduino will ahve something very soon.
Please remember this is our FIRST silicon product, we need to start somewhere, and this is where we have started. We believe the market is big enough to want this device as is, it has some USP's that some people will find very useful.
-
- Posts: 14415
- Joined: Fri Mar 09, 2012 7:36 pm
- Location: Vallejo, CA (US)
Re: Is the raspberry foundation flipping blue?
Possibly worth pointing out that it took until the Pi3B before "main line" Pis had WiFi, and that the first iteration of Pi0 didn't have it, either.jamesh wrote: ↑Sun Jan 24, 2021 9:31 pmThe vast majority of industrial use cases do not need Wifi. It's only the IoT stuff and similar that might need it really. And yes, Arduino will ahve something very soon.
Please remember this is our FIRST silicon product, we need to start somewhere, and this is where we have started. We believe the market is big enough to want this device as is, it has some USP's that some people will find very useful.
-
- Posts: 2901
- Joined: Sat Aug 18, 2012 2:33 pm
Re: Is the raspberry foundation flipping blue?
i'm thinking that was mostly just a choice on the pricing frontW. H. Heydt wrote: ↑Sun Jan 24, 2021 10:22 pmPossibly worth pointing out that it took until the Pi3B before "main line" Pis had WiFi, and that the first iteration of Pi0 didn't have it, either.
the roku2 was a bcm2835 (pi0/pi1) chip, with wifi, an IR receiver, the same usb ethernet, and onboard nand flash
and it had come out before the pi1 did, so it was definitely known how to do it
Re: Is the raspberry foundation flipping blue?
Don't panic.
Broad market consumer IOT devices might be insecure, since millions of them are in the wild running a well known standard program.
What yo may tinker in your corner and possibly even be copied a hundred times is a complete different picture, far from being an interesting target for hackers.
And since you are the guy who programmed them, you can overwrite them as well.
Re: Is the raspberry foundation flipping blue?
"Hackers" is the key word in this entire conversation. The very bunch that took cheap non-wifi systems and hacked it all together with cheap wifi systems.rin67630 wrote: ↑Sun Jan 24, 2021 11:09 pmDon't panic.
Broad market consumer IOT devices might be insecure, since millions of them are in the wild running a well known standard program.
What yo may tinker in your corner and possibly even be copied a hundred times is a complete different picture, far from being an interesting target for hackers.
And since you are the guy who programmed them, you can overwrite them as well.
The pico is a cheap breakout board with the new mcu. Stick that together with a wireless comm of your choosing and you have a cheap solution for either industrial or personal uses. In fact you don't even need to use the pico board at all if what you want is the MCUs functionality.
Re: Is the raspberry foundation flipping blue?
runs on 128k of RAM: http://retrobsd.org/wiki/doku.php/start
i'm curious if it would run uclinux https://elinux.org/System_Size#uClinux though it might be slow running in emulation mode without Cortex M4 architectur
for low power, could one add FRAM via SPI and CBRAM for storage ?
i'm curious if it would run uclinux https://elinux.org/System_Size#uClinux though it might be slow running in emulation mode without Cortex M4 architectur
for low power, could one add FRAM via SPI and CBRAM for storage ?
Re: Is the raspberry foundation flipping blue?
This could be interesting to run on a Pico with USB keyboard input and a display driven via PIO. Compiling software on an MCU sounds fun.LimboMan wrote: ↑Sun Jan 24, 2021 11:45 pmruns on 128k of RAM: http://retrobsd.org/wiki/doku.php/start
If you are low on RAM, make sure to use zram! 
I found & use this zram setup script: https://github.com/novaspirit/rpi_zram
A post about zram: t=207304
Make sure to disable dphys-swapfile and mount the tmp folders in RAM. Also learn about SysRq!

I found & use this zram setup script: https://github.com/novaspirit/rpi_zram
A post about zram: t=207304
Make sure to disable dphys-swapfile and mount the tmp folders in RAM. Also learn about SysRq!
Re: Is the raspberry foundation flipping blue?
Yes, I am trying to do this with an ARM Cortex M4F https://ambiq.com/apollo4/ConfuSomu wrote: ↑Mon Jan 25, 2021 12:06 amThis could be interesting to run on a Pico with USB keyboard input and a display driven via PIO. Compiling software on an MCU sounds fun.LimboMan wrote: ↑Sun Jan 24, 2021 11:45 pmruns on 128k of RAM: http://retrobsd.org/wiki/doku.php/start
I'm also generally curious whether https://en.wikipedia.org/wiki/Kexec could be used to swap out software/OS in realtime without rebooting and temporally run different drivers/apps on a MCU since there is so little space.
Last edited by LimboMan on Mon Jan 25, 2021 12:44 am, edited 1 time in total.
Re: Is the raspberry foundation flipping blue?
A very cheap board and quite incredible for what it is. I would rather have a cheap board I can add WiFi, Bluetooth, whatever, to than a more expensive board with things I don't need.
In the fullness of time there might be a Pico+ board with more on it, but there may not be any need. There are plenty of others already offering that kind of thing and I guess that product range will expand.
Re: Is the raspberry foundation flipping blue?
https://en.wikipedia.org/wiki/6LoWPAN seems like a better fit for the Pico+ due to the power consumptioon, but internet over bluetooth could work too. 2mbps is fast enough for me. There are also low power wifi modules, like https://www.seeedstudio.com/blog/2020/0 ... -solution/hippy wrote: ↑Mon Jan 25, 2021 12:24 amA very cheap board and quite incredible for what it is. I would rather have a cheap board I can add WiFi, Bluetooth, whatever, to than a more expensive board with things I don't need.
In the fullness of time there might be a Pico+ board with more on it, but there may not be any need. There are plenty of others already offering that kind of thing and I guess that product range will expand.
Re: Is the raspberry foundation flipping blue?
LoRA has been seen working - Dave Akerman uses a Pico for that. I did buy a couple of modules so I could write some examples, but ran out of time.
Principal Software Engineer at Raspberry Pi (Trading) Ltd.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Re: Is the raspberry foundation flipping blue?
Wow, LoRA looks great. There is another thread that was recently made on the pico and wifi viewtopic.php?f=144&t=300153 - hard to keep track sometimes but nonetheless great info!