0xFF540
Circuits.UART: cannot receive data after disconnect/reconnect
Hi,
I have a problem with Circuits.UART: I wrote a simple application which read from a specific Serial device (arduino). If disconnected, Elixir will wait for it but currently Elixir find the newly connected device, open port and seems to read data (led is flashing on arduino because of serial activity) but handle_info/2 do not catch any message. Sometimes the led is simply not flashing after arduino is detected.
I am an Elixir beginner, any idea about this problem and optimizations are welcomed !
The code:
application.ex
defmodule Serial.Application do
@moduledoc false
use Application
use Supervisor
require Logger
def init(_arg) do
#IO.puts "Serial.Core.init()"
end
def start(_type, _args) do
IO.puts "[#{__MODULE__}] started at #{inspect self()}"
IO.puts "[#{__MODULE__}] Booting subprocesses..."
children = [
{Serial.Listener, []}
]
opts = [strategy: :one_for_one, name: Serial.Supervisor]
Supervisor.start_link(children, opts)
end
end
listener.ex
defmodule Serial.Listener do
use GenServer
require Logger
def start_link(args) do
Logger.info "[#{__MODULE__}] started at #{inspect self()}"
state = %{
number: 3,
core_pid: Enum.at(args, 0),
serial_pid: nil,
device: %{manufacturer: "Arduino (www.arduino.cc)", product_id: 67, serial_number: "95433", vendor_id: 9025}
}
GenServer.start_link(__MODULE__, state, [name: :serial_listener])
end
def init(state) do
:observer.start
case Circuits.UART.start_link do
{:ok, pid} ->
Logger.info "[#{__MODULE__}] Circuits.UART started at: #{inspect(pid)}"
state = Map.put(state, :serial_pid, pid)
start_reader(pid, state)
{:ok, state}
{:error, reason} ->
Logger.error "[#{__MODULE__}] cannot start Circuits.UART: #{reason}"
{:error, reason}
end
end
def start_reader(_pid, state) do
Logger.info "STATE: #{inspect state}"
available_devices = Circuits.UART.enumerate
if map_size(available_devices) > 0 do
Enum.each available_devices, fn {device_path, property} ->
Logger.info "[#{__MODULE__}] device found #{device_path} --> #{inspect(property)}"
if property == state.device do
Logger.info "[#{__MODULE__}] selected device #{device_path} --> #{inspect(property)}"
Circuits.UART.configure(state.serial_pid, framing: {Circuits.UART.Framing.Line, separator: "\r\n"})
Circuits.UART.open(state.serial_pid, device_path, speed: 115200, active: true)
end
end
else
Logger.warn "[#{__MODULE__}] no device found"
device_watch(state)
end
{:ok, state}
end
def handle_info({:circuits_uart, _serial_port, data}, state) do
case data do
{:error, :eio} ->
Logger.warn "[#{__MODULE__}] device disconnected"
watcher_pid = spawn(fn -> device_watch(state) end )
Logger.info "[#{__MODULE__}] Watcher spawned at #{inspect watcher_pid}"
text ->
Logger.debug text
end
{:noreply, state}
end
def device_watch(state) do
available_devices = Circuits.UART.enumerate
if map_size(available_devices) > 0 do
Enum.each available_devices, fn {device_path, property} ->
if property == state.device do
Logger.info "[#{__MODULE__}] device back #{device_path} --> #{inspect(property)}"
#Circuits.UART.close(state.serial_pid)
#Circuits.UART.flush(state.serial_pid, :both)
start_reader(state.serial_pid, state)
end
end
else
Logger.info "[#{__MODULE__}] wait for device..."
Process.sleep(2000)
device_watch(state)
end
{:noreply, state}
end
end
Most Liked
NobbZ
Some Io related things can only be used from the owning process, perhaps it is related to that?
1
Popular in Questions
Okay, I'm having a heck of a time trying to figure out how to best handle the validation of belongs_to associations in Ecto. I'm sure I'...
New
I have a relationship of love and hate with Elixir. Lots of things are just absolutely right, but there are some things that are kind of ...
New
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
As the title describes, I’m trying to run Enum.map() over a list of key/value pairs, where the value is a map. My data looks like this:
...
New
I am trying to figure out how Mix knows whether the environment is test, dev, or prod -- where is this set?
Thanks.
New
As many of you may have realized by now (sorry for all the posts here) I’ve been working on a db problem where I’m trying to aggregate a ...
New
The Elixir Typespec docs show the following syntax for keyword lists in typespecs:
# ...
| [key: type] # keyword lis...
New
Given a string, how can I get access to its character by index? Enum.at("my_string", 2) doesn't work.
Or rather, not char, but a substr...
New
I am trying to run a deploy with docker and I successfully runned with this command:
docker build -t romenigld/blog-prod .
but when I t...
New
Hi everyone!
I need implement if…else if…else condition from my elixir code, and anymore of this control flow structures not work proper...
New
Other popular topics
Phoenix 1.4.0 released
Phoenix 1.4 is out! This release ships with exciting new features, most notably
with HTTP2 support, improved deve...
New
In Ruby, I can go:
User.find_by(email: "foobar@email.com").update(email: "hello@email.com")
How can I do something similar in Elixir? ...
New
As the title describes, I’m trying to run Enum.map() over a list of key/value pairs, where the value is a map. My data looks like this:
...
New
I want to try my hand at web scraping. What tools/libraries do I need to use. I’m hoping to turn this into something professional so don’...
New
I have an umbrella app.
Some of the apps inside depend on other apps in the umbrella, unsurprisingly.
I'm writing a test for one of t...
New
I am trying to figure out how Mix knows whether the environment is test, dev, or prod -- where is this set?
Thanks.
New
As a follow up to my earlier question:
I have the code compiling and running but not getting a successful login from the rest server. ...
New
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
I have a super simple question about elixir - how would I take a file like this
foo bar baz
and output a new file that enumerates th...
New








