summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy McSwain <guy.mcswain@gmail.com>2020-06-28 10:20:05 -0500
committerGuy McSwain <guy.mcswain@gmail.com>2020-06-28 14:36:20 -0500
commite6bfc40a5110cb5edb7d419f1dcba1692ba8b224 (patch)
tree8f70f52e22c89a0b8fee86a04fdf444e8c5e1508
parentc07bbb299a3c8edf2bd6d56d7db2567cff469436 (diff)
Update docs
-rw-r--r--DOC/dbase/pigpio.sqlitebin1433600 -> 1433600 bytes
-rw-r--r--DOC/src/html/index.html6
-rw-r--r--pigpio.36
-rw-r--r--pigpio.h3
4 files changed, 11 insertions, 4 deletions
diff --git a/DOC/dbase/pigpio.sqlite b/DOC/dbase/pigpio.sqlite
index ba61140..c20cbe0 100644
--- a/DOC/dbase/pigpio.sqlite
+++ b/DOC/dbase/pigpio.sqlite
Binary files differ
diff --git a/DOC/src/html/index.html b/DOC/src/html/index.html
index 229073f..0b8e33c 100644
--- a/DOC/src/html/index.html
+++ b/DOC/src/html/index.html
@@ -620,7 +620,7 @@ links.<br></p>
Languages</h3>
<p>There are several third party projects which provide wrappers
for pigpio.<br></p>
-<p>Some I am aware of are:<br></p>
+<p>Some are listed here:<br></p>
<ul>
<li><a href="https://github.com/skvamme/pigpio">Erlang</a>
(skvamme)</li>
@@ -635,7 +635,9 @@ diozero, a high level wrapper around pigpio, Pi4J, wiringPi etc
"https://github.com/unosquare/pigpio-dotnet">.NET/mono</a>
(unosquare)</li>
<li><a href="https://github.com/fivdi/pigpio">Node.js</a>
-(fivdi)</li>
+A wrapper for the pigpio C library (fivdi)</li>
+<li><a href="https://github.com/guymcswain/pigpio-client">Node.js</a>
+A client for pigpio socket interface (guymcswain)</li>
<li><a href="https://metacpan.org/pod/RPi::PIGPIO">Perl</a> (Gligan
Calin Horea)</li>
<li><a href=
diff --git a/pigpio.3 b/pigpio.3
index 0871b71..675c2ec 100644
--- a/pigpio.3
+++ b/pigpio.3
@@ -191,7 +191,11 @@ error PI_INITIALISED.
.br
If you intend to rely on signals sent to your application, you should
-turn off the internal signal handling as show in this example:
+turn off the internal signal handling as shown in this example:
+
+.br
+
+.br
.EX
int cfg = gpioCfgGetInternals();
diff --git a/pigpio.h b/pigpio.h
index 7364b71..2d98e75 100644
--- a/pigpio.h
+++ b/pigpio.h
@@ -107,7 +107,8 @@ If the library is initialised the [*gpioCfg**] functions will return
error PI_INITIALISED.
If you intend to rely on signals sent to your application, you should
-turn off the internal signal handling as show in this example:
+turn off the internal signal handling as shown in this example:
+
. .
int cfg = gpioCfgGetInternals();
cfg |= PI_CFG_NOSIGHANDLER; // (1<<10)