Rich_Morin
Using a RasPi pico with Nerves
The Raspberry Pi pico seems like a very nifty platform for the sorts of IoT projects I’d like to play with. However, it doesn’t run Linux, so it doesn’t seem like a Nerves port is in the cards.
That said, I wonder if it might be possible to support a lightweight version of Nerves and the Erlang VM on the pico. This might let folks take advantage of the Nerves tool chain and the Actor approach to programming distributed systems. It might even encourage some pico users to look into using Nerves. Comments? (ducks).
-r
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project.
My initial shotgu...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
Just a general thread to post chat/news/info relating to AI/ML stuff that may be relevant for Nx now or in the future. Got anything to sh...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
We want to introduce a new native datatype to Erlang: native records. Although replacing all tuple records with native records is not our...
New
Latest Nerves Threads
Chat & Discussions>Discussions
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 7 of 7 Posts
fhunleth
The Nerves core team is focused on microprocessor-based embedded devices, so supporting a Cortex-M0 device is not something that we’d take on. That’s not to say that what you propose wouldn’t be interesting.
The two routes I know that might support the Pico are:
Sebb
The RPi Pico is based on the RP2040-Microcontroller, which is a Cortex-M0+. While its the biggest M0 I know of (lots of RAM, Flash, MHz) its still a very limited design, most notably: it has no FPU.
The most lightweight option AtomVM offers is a STM32F4 which is a Cortex-M4 with FPU.
https://github.com/bettio/AtomVM/blob/master/README.STM32.Md
Maybe they can go smaller? But M0 - doubtful!? If its possible this would be indeed a great opportunity and I’m sure the AtomVM-team will take it.
see here for a comparison (Table “ARM Cortex-M instruction variations”)
You should have a look at https://www.grisp.org/ if you are interested in BEAM on smaller platforms.
EDIT: Just found this: https://community.arm.com/developer/ip-products/processors/b/processors-ip-blog/posts/is-cortex-m4-the-strongest
Rich_Morin
PJUllrich
Hey folks, sorry to resurrect this thread, but it appears that AtomVM now supports the Raspberry Pi Pico: Getting Started Guide — AtomVM 0.7.0-dev+git.f42fb232 documentation
Does this mean that Nerves might support the the Pico as well?
lawik
No, it means you can run Elixir on the Pico via AtomVM. You might be able to pull some Nerves libraries in but if they rely on anything from Linux you are out of luck.
I haven’t looked but I would assume there isn’t a regular network stack in AtomVM.
I think we will explore shipping AtomVM builds to microcontrollers such as the Pi using NervesHub. But I would be very surprised if Nerves gets adapted to the point that it will run on the Pico.
D4no0
If you read what actually AtomVM does:
This implies that a lot of features of the VM we use and love might be not present or work differently, so I can bet that even native functionalities from OTP (like
:tcp) might not work at all.I would go ahead and safely assume that integration with nerves is impossible and it might be subject to undefined behavior as some core things we imply about the VM might not be true anymore.
LostKobrakai
Maybe it should be highlighted that even while we talk about nerves as an elixir project a lot of nerves is wrapping an elixir release in a linux system and making that a shippable unit + elixir libraries to help integrate with that linux OS. Remove the linux part and the question becomes what nerves is supposed to bring to the table in the first place. The atom vm would basically be the counterpart to both the linux os and the beam vm on a nerves system.
This is not to say that nerves as a whole might not hold desireable features like tooling over atom vm, but those things are not stuff that could be simply pulled over.