pigpio/pigpiod.1

190 lines
2.7 KiB
Groff
Raw Normal View History

2014-08-01 10:30:25 +02:00
." Process this file with
." groff -man -Tascii pigpiod.1
."
.TH pigpiod 1 2012-2014 Linux "pigpio archive"
.SH NAME
pigpiod - A utility to start the pigpio library as a daemon.
.SH SYNOPSIS
sudo pigpiod [OPTION]...
.SH DESCRIPTION
pigpiod is a utility which launches the pigpio library as a daemon.
.br
.br
Once launched the pigpio library runs in the background accepting commands from the pipe and socket interfaces.
.br
.br
The pigpiod utility requires sudo privileges to launch the library but thereafter the pipe and socket commands may be issued by normal users.
.br
.br
pigpiod accepts the following configuration options
.br
.br
.SH OPTIONS
2015-02-25 21:34:52 +01:00
.IP "\fB-a value\fP"
DMA memory allocation mode
0=AUTO, 1=PMAP, 2=MBOX
default AUTO
2014-08-01 10:30:25 +02:00
.IP "\fB-b value\fP"
gpio sample buffer in milliseconds
100-10000
default 120
2015-10-02 09:23:02 +02:00
.IP "\fB-c value\fP"
library internal settings
default 0
2014-08-01 10:30:25 +02:00
.IP "\fB-d value\fP"
primary DMA channel
0-14
default 14
.IP "\fB-e value\fP"
secondary DMA channel
0-6
default 5
.IP "\fB-f\fP"
disable fifo interface
default enabled
.IP "\fB-k\fP"
disable socket interface
default enabled
.IP "\fB-p value\fP"
socket port
1024-32000
default 8888
.IP "\fB-s value\fP"
sample rate
1, 2, 4, 5, 8, 10
default 5
.IP "\fB-t value\fP"
clock peripheral
0=PWM 1=PCM
default PCM
.IP "\fB-x mask\fP"
gpios which may be updated
A 54 bit mask with (1<<n) set if the user may update gpio #n.
default is the set of user gpios for the board revision
.br
.br
.SS Example
.br
.br
.EX
sudo pigpiod -s 2 -b 200 -f
.br
.EE
.br
.br
Launch the pigpio library with a sample rate of 2 microseconds and a 200 millisecond buffer. Disable the fifo interface.
.br
.br
.SS Permissions
.br
.br
pigpio provides a rudimentary permissions system for commands issued via the socket and pipe interfaces.
.br
.br
All gpios may be read.
.br
.br
2015-02-25 21:34:52 +01:00
Only the user gpios for the board type or those specified by the -x option may be updated.
2014-08-01 10:30:25 +02:00
.br
.br
.EX
2015-02-25 21:34:52 +01:00
Type 1 boards 0x03E6CF93
2014-08-01 10:30:25 +02:00
.br
2015-02-25 21:34:52 +01:00
Type 2 boards 0xFBC6CF9C
2014-08-01 10:30:25 +02:00
.br
2015-02-25 21:34:52 +01:00
Type 3 boards 0x0FFFFFFC
2014-08-01 10:30:25 +02:00
.br
.EE
.br
.br
In this context an update includes the following:
.br
.br
gpio mode set
.br
gpio pull/up down
.br
gpio write
.br
gpio set PWM (including range and frequency)
.br
gpio set servo
.br
.br
In addition the bank clear and set commands, and the wave commands will only
affect updateable gpios.
.br
.br
2015-10-02 09:23:02 +02:00
There are several special cases.
.br
.br
The activity LED (green) may be written (gpio 16 for type 1 and 2
boards, gpio 47 for type 3 boards)
2014-08-01 10:30:25 +02:00
.br
.br
2015-10-02 09:23:02 +02:00
The power LED (red) may be written on type 3 boards (gpio 35).
2014-08-01 10:30:25 +02:00
.br
.br
2015-02-25 21:34:52 +01:00
The high USB power mode gpio may be written (gpio 38 for type 3 boards).
2014-08-01 10:30:25 +02:00
.SH SEE ALSO
pig2vcd(1), pigs(1), pigpio(3), pigpiod_if(3)
.SH AUTHOR
joan@abyz.co.uk