Update docs

This commit is contained in:
Guy McSwain 2020-06-28 10:20:05 -05:00
parent c07bbb299a
commit e6bfc40a51
4 changed files with 11 additions and 4 deletions

Binary file not shown.

View File

@ -620,7 +620,7 @@ links.<br></p>
Languages</h3> Languages</h3>
<p>There are several third party projects which provide wrappers <p>There are several third party projects which provide wrappers
for pigpio.<br></p> for pigpio.<br></p>
<p>Some I am aware of are:<br></p> <p>Some are listed here:<br></p>
<ul> <ul>
<li><a href="https://github.com/skvamme/pigpio">Erlang</a> <li><a href="https://github.com/skvamme/pigpio">Erlang</a>
(skvamme)</li> (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> "https://github.com/unosquare/pigpio-dotnet">.NET/mono</a>
(unosquare)</li> (unosquare)</li>
<li><a href="https://github.com/fivdi/pigpio">Node.js</a> <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 <li><a href="https://metacpan.org/pod/RPi::PIGPIO">Perl</a> (Gligan
Calin Horea)</li> Calin Horea)</li>
<li><a href= <li><a href=

View File

@ -191,7 +191,11 @@ error PI_INITIALISED.
.br .br
If you intend to rely on signals sent to your application, you should 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 .EX
int cfg = gpioCfgGetInternals(); int cfg = gpioCfgGetInternals();

View File

@ -107,7 +107,8 @@ If the library is initialised the [*gpioCfg**] functions will return
error PI_INITIALISED. error PI_INITIALISED.
If you intend to rely on signals sent to your application, you should 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(); int cfg = gpioCfgGetInternals();
cfg |= PI_CFG_NOSIGHANDLER; // (1<<10) cfg |= PI_CFG_NOSIGHANDLER; // (1<<10)