-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error writing to /sys/class/gpio/export, GPIO failure #503
Comments
Thanks for reporting this. |
I'm not seeing this issue on a fully patched mainline Bookworm (not anything bleeding edge that comes with rpi-update) on an Rpi4. Following the testing links from above: $ uname -a $ echo "16" > /sys/class/gpio/export $ sudo raspi-gpio get 3 Dire Wolf version 1.7 Reading config file /etc/ax25/direwolf.conf |
Yah, i think this is a Pi5 thing, they have multiple gpio adapters, and you somehow add the adapter address to the pin address to get the actual pin. I don't have all the info, to be honest. I've switched to the "gpiozero" python module which makes it all transparent, but I'm not sure how to implement it in C. the /sys gpio stuff is deprecated (deprecating) |
Ok, I have a Pi5 on order but I don't know when it will ship. I'm surprised we would see different OS behavior depending on the hardware. |
The individual file sysfs interface has been deprecated for some time now. You are supposed to use libgpiod: https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git. It's actually a much better interface in my opinion. |
Understood and WB2OSZ has already committed this new interface into DW 1.8-DEV but I'm curious why I cannot reproduce this issue. If it's only exposed when using new Rpi5 hardware, that doesn't make much sense unless it's exposed only give a new kernel or firmware only used on the Rpi5 hardware. |
A preliminary version of PTT with gpiod/libgpiod is now available in the "dev" branch. (1) Install packages gpiod and libgpiod-dev. |
I'm not happy about the additional user complexity of having to determine the gpio chip name. If it turns out to be gpiochip0 for all RPi models, maybe that could be made the default, still leaving the option for specifying for other single board computers. |
Note that many pins also have names, and you can find the pins by their name instead of worrying what chip they’re on. The pin names are defined in the device tree of whatever platform you’re running. That way they’re abstracted from whatever GPIO chip they’re on. Because while the internal stuff will probably come up on gpiochip0, there is no guarantee that it will from the kernel. |
Here's my pi5 8GB:
I'm not sure how to interperet what to use in my direwolf.conf for GPIO 17... FYI for those still needing one, I recently got 4 pi5-8's from Parallax and they arrived within a few days after purchase. They still have a some in stock, as well as a bunch of pi5-4's. UPDATE EDIT Another observation I made... now my gpioinfo shows that line 17 is a "unused output active-high" after running my python test script. If I reboot it reverts to input, and then after running direwolf it does not change. de ko6blz k |
I realized I was not using the latest dev branch WRT my previous post. I have since updated to the dev branch, and now when I start direwolf, PTT is turned on immediately and does not turn off. After the beacon wait period, the terminal shows the beacon TX, but PTT remains on. If I shut down direwolf the PTT remains on until the radio times out; the ptt adapter remains lit until I either use gpiozero to turn it off or I reboot. |
Did you do this? (1) Install packages gpiod and libgpiod-dev. |
Yes I completed all of those steps which ended in my last result (PTT turns on and remains on when direwolf is started. This is with Not sure if this is at all related, but after adding libgpio-dev and updating direwolf, somehow a non-working cm108 w/ PTT now works properly. Before when I tx with the cm108, my mouse would stop responding randomly, requiring a reboot to get it back. After completing your listed steps, I tested the CM108 and it has been stable for several hours now (before it would take 5min or less for the mouse to freeze). So now with a working cm108, this issue is not a problem for me. I am still happy to help with any troubleshooting on this issue on my pi5 (I have a backup pi5 with direwolf dev installed that I can run tests on without worries of breaking my working setup). So please let me know if there is anything other experiments you'd like me to try. It's the least I can do to repay all the hours you and other devs have put into this project. |
After I got back to playing with gpio, and stumbed on the fix when I let my pi5 direwolf tx a few times (without a radio connected). After seeing my PTT LED turn off during tx, and back on during rx, I finally realized the problem was simply an inverted output. With my python script my ptt circuit was behaving as expected... on==on and off==off. It seems direwolf gpiod inverts the output, and my direwolf.conf had to be changed accordingly. So now my pi5 is happily digipeating with gpio using |
This worked great on a Libre board (LePotato), thanks! The settings were |
The Radio Interface Guide, in https://github.com/wb2osz/direwolf-doc , has been updated with more details about using gpiod. |
Thank you for fixing this! I followed the directions to get the development version installed and now I have my iGate/Digipeater running on a Raspberry Pi 5. For mine, it was gpiochip4, GPIO6 so the line was GPIOD gpiochip4 6. N4JWW |
So to be sure, if we want to make a single SD card that works on all Raspberry Pi, we have to dynamically generate direwolf.conf now at runtime? based on gpioinfo output? I still don't see how gpiod is better than /sys, but I'm trying hard. |
It wasn't my idea. The Linux leaders decided to declare the old method obsolete and replaced it with something which is more complicated and confusing for users. John |
The problem is that we need to figure out which "gpiochip" to use. It is not consistent across different models. pi@rpi5:~ $ gpioinfo | grep chip For the RPi 5, taking the one with the maximum number of "lines" is the right choice. For the RPi 1 (more than adequate for a digi/IGate), we have only one. pi@igate:~ $ gpioinfo | grep chip So, we need to see what the models 2, 3, 4, zero, zero 2 have to say. I will try not to get too excited but this might be the solution. John |
Part of the reason why we use names everywhere at work (FlexRadio) is because they're not just for the internal chips on the Raspberry Pi. They're also for external GPIO chips as well. i2c IO expanders can have additional GPIOs on them and you may want to use those as well. Additionally, you may not even be on a RPi, you may be on a BeagleBone or an Intel box that has some GPIO chip on it. For that matter, I think the CMedia 104 driver in Linux has optional GPIOs that one can use in the kernel. |
Yah, i'm just ranting about the change in the upstream kernel - they should have retained a "legacy" mode or something as to not break every library and document about this everywhere. It's a disservice to the linux learners. I understand the need to have multiple gpio chips. Hmm, the chip with the most lines wins? That's been true in my testing so far. I was going to draft a sed/awk combo to find specific gpio signals and map them back to the chip, but I also like the idea of direwolf making educated guesses as well. PiZero2W has one gpio chip, Pi4 has two Pi3A+ has two The host with the most seems to win so far - good idea. -craig |
3B+ has two Pi Zero (original) has one |
we could possibly look at the raspberry pi model in addition, cat /proc/device-tree/model Raspberry Pi Zero W Rev 1.1 |
$ gpiofind GPIO12 |
The latest errata kernel appears to present the GPIO pins on gpiochip0 on every Raspberry Pi device now. It looks like they force-renamed gpiochip4 to gpiochip0, as gpiochip0 is now listed twice when you run gpioinfo. I call shinanagins, but at least we have a working assumption moving forward. |
Shinanagins in detail:
|
They added this last month. It screwed with a project I was working on where a bunch of our GPIOs stopped working because we already had a gpiochip4.
RPi-Distro/raspberrypi-sys-mods@e475bd6
…-- Anna, NH6Z
On Oct 11, 2024, at 8:16 AM, Craig Lamparter ***@***.***> wrote:
Shinanagins in detail:
crw-rw---- 1 root gpio 254, 0 Oct 10 21:15 gpiochip0
crw-rw---- 1 root gpio 254, 10 Oct 10 21:15 gpiochip10
crw-rw---- 1 root gpio 254, 11 Oct 10 21:15 gpiochip11
crw-rw---- 1 root gpio 254, 12 Oct 10 21:15 gpiochip12
crw-rw---- 1 root gpio 254, 13 Oct 10 21:15 gpiochip13
lrwxrwxrwx 1 root root 9 Oct 10 21:15 gpiochip4 -> gpiochip0
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Updates to Raspberry Pi OS bookworm (Debian 12) are disabling sysfs access to gpio,
After an apt-get upgrade, direwolf will not run if using gpio,
Dire Wolf version 1.7 KM6LYW-4
Includes optional support for: gpsd hamlib cm108-ptt dns-sd
Reading config file /run/direwolf.tnc.conf
Audio device for both receive and transmit: plughw:0,0 (channel 0)
Channel 0: 1200 baud, AFSK 1200 & 2200 Hz, A+, 44100 sample rate / 3.
Error writing "16" to /sys/class/gpio/export, errno=22
Invalid argument
Some discussion and a temporary solution (freeze kernel version) is here
https://forums.raspberrypi.com/viewtopic.php?t=359540
The text was updated successfully, but these errors were encountered: