julngomz
Alright, I am stuck on this problem.
I am trying to connect to the Raspberry Pie 4 via a USB to TTL Adapter. Specifically this one:
DSD TECH SH-U09C2 USB to TTL Adapter
Features:
- USB 2.0A Public Interface
- Built-in FTDI FT232 Chip
- Supports 1.8V, 3.3V, 5V TTL Levels
I am using picocom to attempt to connect to the raspberry pi 4.
Terminal Command:
picocom -b 115200 /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_AG0JNTJ3-if00-port0
picocom v3.1
port is : /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_AG0JNTJ3-if00-port0
flowcontrol : none
baudrate is : 115200
parity is : none
databits are : 8
stopbits are : 1
escape is : C-a
local echo is : no
noinit is : no
noreset is : no
hangup is : no
nolock is : no
send_cmd is : sz -vv
receive_cmd is : rz -vv -E
imap is :
omap is :
emap is : crcrlf,delbs,
logfile is : none
initstring : none
exit_after is : not set
exit is : no
Type [C-a] [C-h] to see available commands
Terminal ready
And it just hangs.
I have placed the default rpi4 erlinit.config into the overlay directory and changed the output to ttyS0 but it is not showing up in the final firmware build. What is displayed is tty1.
Any help is much appreciated.
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,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
mayl
I don’t have any Nerves specific advice, but some basic general UART troubleshooting steps I go through (you may already know all this):
If all that is hooked up right, even if the UART baudrate and framing configuration is wrong you should at least get “non-printable” characters. If you do get characters out of the UART then great, you’re either done or just need to figure out your UART config. If you don’t, either you missed something above, something is broken, or the Pi really isn’t talking. Personally, my next troubleshooting step would involve an oscilloscope but I’m not sure if you have that available or not. Without an oscilloscope, I would double check all connections again, then hook the adapter up in a loopback (Tx to Rx) and send some bytes through it on it’s own to make sure that’s not broken. Assuming that all checks out, either the Pi has a hardware problem (unlikely) or there is an actual nerves configuration issue (which I don’t have any advice for).
jsimmonds2
Hi @julngomz
Which GPIO or physical pins on the RPi4B are you expecting a UART to operate on ?
I notice my RPi4B has both /dev/ttyAMA0 and /dev/ttyS0 ( the lower-spec UART )
Note that Elixir IEx runs usually on /dev/console mapped to physical pins 8 (TxD) and 10 (RxD)