jlorek
Hi,
im using Nerves in a project where i do some UART communication to control an old plotter. Control over the plotter is provided via a Phoenix frontend.
My question is where to call start_link from Nerves.UART and initialize the communication.
Nerves.UART.start_link(name: Plotter)
Nerves.UART.open(Plotter, “ttyAMA0”, speed: 9600, active: false)
I get that UART is a GenServer, but i have no idea how to wrap this up in a module so that i can simply call it like this from my Phoenix controllers
Module.Write(“Plotter_Commands_Here”)
Is it valid to just use a name (Plotter) for start_link so i don’t have to store and use the pid for all subsequent calls?
I guess this is a more general Elixir question, but im really stuck on this.
Thanks!
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
ConnorRigby
I don’t know your exact requirements, but when working with
Nerves.UARTi usually do something along the following:since it seems like you are using Phoenix, you will then likely want to do something like this in your
application.exfile.then you can make a controller like:
Folo
Hi @ConnorRigby,
I’m still a little confused about where to call
Nerves.UART.start_link()(orCircuits.UART.start_link()as it is now known).I use
Nerves.UARTin active mode, this way I can receive a continuous stream of data from the serial port without polling. The way I’ve done this in the past is similar to yourPlotter.UARTHandlerexample: wrapping the call toNerves.UART.start_link()in theinit()callback of aGenServer, then implementing thehandle_info()callback to capture the resulting active mode messages.However, every
Nerves.UARTprocess is aGenServer, and isn’t the proper thing withGenServers to start them as part of aSupervisor? Unfortunately, startingNerves.UARTin aSupervisorwould cause all of the active mode messages to go to it.What’s the right thing to do here?
It would be nice to be able to specify a pid that receives messages from a
Nerves.UARTprocess in active mode that was different from the pid that calledNerves.UART.start_link(). Or specify a callback for aNerves.UARTprocess to call when new data comes in, especially since sometimes the only reason I’m callingNerves.UART.start_link()from theinit()of aGenServeris to be able to catch messages in theGenServer’shandle_info()callback.One solution might be to invoke
Nerves.UART.start_link()in theinit()of a module that implemented theParent.Genserverbehaviour from parent, by @sasajuric. That way, messages would be caught by the wrappingGenServer’shandle_info(), whileNerves.UARTremained supervised.Any suggestions would be much appreciated.
ConnorRigby
This isn’t always true. In this case you don’t want it to be supervised by some other supervisor, since it is specific to the module handling it’s messages. Calling
start_linkshould link the UART process to the calling process, which will cause the calling process to crash if it crashes. Because the GenServer wrapping the UART GenServer should be supervised, it will also be restarted essentially making it supervised.For example you can just make a sample test worker:
In observer you can see:
Now if you
killtheCircuits.UARTGenServer (<0.269.0>),you will see that the
UartTest.Workeris also killed, and restarted byUartTest.Supervisor.You will see
Starting UART GenServeragain.It works both ways. If you’d have killed the
UartTest.WorkerGenServer (<0.268.0>)the
Circuits.UART(<0.269.0>) would have been killed also.Side note: I’ve been using Nerves.UART in production for a few years, and have never had the UART GenServer crash.
Folo
Ah, that makes perfect sense. Thanks a lot for explaining.
It would be more useful to have a hybrid
GenServer/Supervisorlike in parent if one needed to combine supervising multipleGenServers with managing some state common to all of them/receiving messages from all of them.