Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
guymcswain committed Jun 28, 2020
1 parent a686d1d commit 0c1fb8b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
Binary file modified DOC/dbase/pigpio.sqlite
Binary file not shown.
6 changes: 4 additions & 2 deletions DOC/src/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ <h3><a name="Other_Languages" id="Other_Languages"></a>Other
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>
Expand All @@ -635,7 +635,9 @@ <h3><a name="Other_Languages" id="Other_Languages"></a>Other
"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=
Expand Down
6 changes: 5 additions & 1 deletion pigpio.3
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
3 changes: 2 additions & 1 deletion pigpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0c1fb8b

Please sign in to comment.