Search Criteria
Package Details: pigpio 78-2
Git Clone URL: | https://aur.archlinux.org/pigpio.git (read-only, click to copy) |
---|---|
Package Base: | pigpio |
Description: | A C and Python library and system service for controlling GPIOs on a Raspberry Pi |
Upstream URL: | http://abyz.me.uk/rpi/pigpio/ |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | sorah |
Maintainer: | SpotlightKid |
Last Packager: | SpotlightKid |
Votes: | 4 |
Popularity: | 0.117668 |
First Submitted: | 2019-09-20 11:48 |
Last Updated: | 2020-12-19 17:02 |
Latest Comments
SpotlightKid commented on 2020-12-19 17:08
@crodjer: thanks for the headsup! Upstream changed the service type from "simple" to "forking", which made this change necessary.
Attention:
pigpiod
is now also run with the-k
(disable socket interface) by default for security reasons. To enable it, runsystemctl edit pigpiod
and put the following in/etc/systemd/system/pigpiod.service.d/override.conf
(your default editor will automatically open this file for editing):This overrides the command to start
pigpiod
and removes the-k
option.crodjer commented on 2020-12-19 07:28
Please remove the line:
This is causing the service to be stuck.
pigpiod
loads as a daemon by default. Adding-g
foregrounds it.SpotlightKid commented on 2020-08-12 11:10
@Vlou: Please report this upstream: https://github.com/joan2937/pigpio/issues
Vlou commented on 2020-08-10 15:43
I just installed this package on my Raspberry Pi 3B+ running the AArch64 kernel, and the pigpiod daemon won't launch (segmentation fault) :
Aug 10 17:41:31 rpi1 systemd[1]: Started Process Core Dump (PID 1118/UID 0). Aug 10 17:41:31 rpi1 systemd-coredump[1119]: [LNK] Process 1117 (pigpiod) of user 1001 dumped core.
Details about my installation of archlinux arm : Linux rpi1 5.8.0-1-ARCH #1 SMP Sun Aug 9 00:03:44 UTC 2020 aarch64 GNU/Linux
Did anyone face this issue ?
EDIT : By compiling with the aarch64user branch, this problem is gone. But there is another, which is described here : https://github.com/joan2937/pigpio/issues/259 But the kernel parameters don't fix the issue for me...
EDIT 2 : Using the raspberry kernel instead of the mainline one ( https://aur.archlinux.org/packages/linux-aarch64-raspberrypi-bin/ ),pigpiod works without problems with this package !
AstroFloyd commented on 2019-08-30 10:04
Could you please add 'armv7h' to the architecture?
SpotlightKid commented on 2018-09-29 11:14
@codeworkx: Done.
codeworkx commented on 2018-09-29 10:29
Please add 'aarch64' architecture for Raspberry Pi 3+ running with AArch64 kernel.
SpotlightKid commented on 2018-08-07 10:46
@haphi: Fixed. Can you report this upstream? https://github.com/joan2937/pigpio/issues
haphi commented on 2018-08-07 10:24
starting the service via systemd fails silently with the message "pigpiod[3164]: 2018-08-07 12:03:34 sigHandler: Unhandled signal 18, terminating"
I guess this is because service type is set to simple and does not expect the pigpiod daemon to fork. Adding the "-g" command line option to the "ExecStart" entry of the service file fixes it for me.