tobin

tobin

I’m working on an Elixir application that I’m deploying to a Raspberry Pi Model B using Nerves and nerves_system_rpi3.

I’m communicating with devices using Circuits.SPI and the standard /dev/spidev0.0 and /dev/spidev/0.1 channels. Now I’d like to talk to more devices, and use the second SPI interface to do so (info about SPI devices).

To do this, I am led to believe that I need to add the following line to /boot/config.txt:

dtoverlay=spi1-3cs

I have therefore followed the instructions for overwriting files in the boot partition. I copied fwup.conf and config.txt to my '/configdirectory and edited them andconfig.exs` to point to one another.

However, when I deploy to my RPi, the devices do not show up:

iex> Toolshed.cmd "ls /dev/spi*"
/dev/spidev0.1
/dev/spidev0.0

I was hoping for a /dev/spidev1.0! My change is definitely there:

iex> Toolshed.cmd "grep spi /boot/config.txt"
dtparam=spi=on
dtoverlay=spi1-3cs

Help! How do I troubleshoot this? is there something I’m missing? I would appreciate any pointers I can get!

Showing Posts 1 to 4

jsimmonds2

jsimmonds2

Hi @tobin

If you add dtdebug=on to config.txt the early boot that happens in the VideoCore 4 GPU will be logged.
To see the log after Linux is booted, use vcdbg log msg.

Also see this “freshman” question thread in this forum.

(caveat, I’ve not (yet) used any SPI devices)

[edit]
I just now tried this on my Rpi3B+ with latest Nerves etc. and got the log ::
Failed to load overlay 'spi1-3cs'
brfs: File read: /mfs/sd/overlays/spi1-3cs.dtb
and sure enough, /boot/overlays does not contain any spi1*.dt?
Drop the right .dtbo in there and things might work :slight_smile:

[edit++]
To "drop the right .dtbo . . " you need to edit fwup.conf to make sure the spi1-3cs.dtbo file is copied in all the correct places.

tobin

tobin OP

Fantastic! Thank you so much for that great answer.

I downloaded spi1-3cs.dtbo from the raspberrypi/firmware github and then added these lines to my fwup.conf:

file-resource spi1-3cs.dtbo {                                                                                                                 
    host-path = "${NERVES_APP}/config/spi1-3cs.dtbo"                                                                                          
}
...
on-resource spi1-3cs.dtbo { fat_write(${BOOT_B_PART_OFFSET}, "overlays/spi1-3cs.dtbo") }  

… a quick mix firmware, and I’ve now got three more SPI channels to play with!

tobin

tobin OP

Addendum: There are a couple more lines of on-resource spi1-3cs.dtbo {...} I needed to add to my fwup.conf (I just copied what was there). Notably I had the BOOT_B_PART_OFFSET line but not the corresponding A line, which meant it only worked once every two times I deployed the firmware!

jsimmonds2

jsimmonds2

@tobin, Hey, good work !
Think you didn’t need to fetch that spi1-3cs.dtbo file . . that and many other overlays are already present in the nerves_system_rpi3 artifacts cached in your ~/.nerves folder.
Just change that file resource path to be like existing ones above coming from images/rpi-firmware/overlays/

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
RemyXRenard
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
velrest
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
samoloth
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
FlyingNoodle
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 Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews