mirror of https://github.com/joan2937/pigpio
Bump version and generate docs.
This commit is contained in:
parent
d7379baf9b
commit
d4e20ead60
|
@ -13,6 +13,8 @@ build
|
||||||
dist
|
dist
|
||||||
*.egg-info
|
*.egg-info
|
||||||
|
|
||||||
|
tmp/
|
||||||
|
|
||||||
# DOC files
|
# DOC files
|
||||||
DOC/dbase/pigpio.sqlite.*
|
DOC/dbase/pigpio.sqlite.*
|
||||||
DOC/tmp
|
DOC/tmp
|
||||||
|
|
Binary file not shown.
42
pigpio.3
42
pigpio.3
|
@ -189,6 +189,24 @@ error PI_INITIALISED.
|
||||||
|
|
||||||
.br
|
.br
|
||||||
|
|
||||||
|
.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:
|
||||||
|
|
||||||
|
.EX
|
||||||
|
int cfg = gpioCfgGetInternals();
|
||||||
|
.br
|
||||||
|
cfg |= PI_CFG_NOSIGHANDLER; // (1<<10)
|
||||||
|
.br
|
||||||
|
gpioCfgSetInternals(cfg);
|
||||||
|
.br
|
||||||
|
int status = gpioInitialise();
|
||||||
|
.br
|
||||||
|
|
||||||
|
.EE
|
||||||
|
|
||||||
|
.br
|
||||||
|
|
||||||
.br
|
.br
|
||||||
|
|
||||||
.SH OVERVIEW
|
.SH OVERVIEW
|
||||||
|
@ -689,8 +707,6 @@ gpioCfgMemAlloc Configure DMA memory allocation mode
|
||||||
gpioCfgNetAddr Configure allowed network addresses
|
gpioCfgNetAddr Configure allowed network addresses
|
||||||
.br
|
.br
|
||||||
|
|
||||||
.br
|
|
||||||
gpioCfgInternals Configure misc. internals (DEPRECATED)
|
|
||||||
.br
|
.br
|
||||||
gpioCfgGetInternals Get internal configuration settings
|
gpioCfgGetInternals Get internal configuration settings
|
||||||
.br
|
.br
|
||||||
|
@ -3026,7 +3042,7 @@ int main(int argc, char *argv[])
|
||||||
.IP "\fBint gpioWaveTxAt(void)\fP"
|
.IP "\fBint gpioWaveTxAt(void)\fP"
|
||||||
.IP "" 4
|
.IP "" 4
|
||||||
This function returns the id of the waveform currently being
|
This function returns the id of the waveform currently being
|
||||||
transmitted.
|
transmitted using \fBgpioWaveTxSend\fP. Chained waves are not supported.
|
||||||
|
|
||||||
.br
|
.br
|
||||||
|
|
||||||
|
@ -7896,22 +7912,6 @@ numSockAddr: 0-256 (0 means all addresses allowed)
|
||||||
|
|
||||||
.EE
|
.EE
|
||||||
|
|
||||||
.IP "\fBint gpioCfgInternals(unsigned cfgWhat, unsigned cfgVal)\fP"
|
|
||||||
.IP "" 4
|
|
||||||
Used to tune internal settings.
|
|
||||||
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
|
|
||||||
.EX
|
|
||||||
cfgWhat: see source code
|
|
||||||
.br
|
|
||||||
cfgVal: see source code
|
|
||||||
.br
|
|
||||||
|
|
||||||
.EE
|
|
||||||
|
|
||||||
.IP "\fBuint32_t gpioCfgGetInternals(void)\fP"
|
.IP "\fBuint32_t gpioCfgGetInternals(void)\fP"
|
||||||
.IP "" 4
|
.IP "" 4
|
||||||
This function returns the current library internal configuration
|
This function returns the current library internal configuration
|
||||||
|
@ -7932,6 +7932,10 @@ cfgVal: see source code
|
||||||
|
|
||||||
.EE
|
.EE
|
||||||
|
|
||||||
|
.br
|
||||||
|
|
||||||
|
.br
|
||||||
|
|
||||||
.IP "\fBint gpioCustom1(unsigned arg1, unsigned arg2, char *argx, unsigned argc)\fP"
|
.IP "\fBint gpioCustom1(unsigned arg1, unsigned arg2, char *argx, unsigned argc)\fP"
|
||||||
.IP "" 4
|
.IP "" 4
|
||||||
This function is available for user customisation.
|
This function is available for user customisation.
|
||||||
|
|
2
pigpio.c
2
pigpio.c
|
@ -25,7 +25,7 @@ OTHER DEALINGS IN THE SOFTWARE.
|
||||||
For more information, please refer to <http://unlicense.org/>
|
For more information, please refer to <http://unlicense.org/>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* pigpio version 76 */
|
/* pigpio version 77 */
|
||||||
|
|
||||||
/* include ------------------------------------------------------- */
|
/* include ------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
2
pigpio.h
2
pigpio.h
|
@ -30,7 +30,7 @@ For more information, please refer to <http://unlicense.org/>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
|
||||||
#define PIGPIO_VERSION 7601
|
#define PIGPIO_VERSION 7700
|
||||||
|
|
||||||
/*TEXT
|
/*TEXT
|
||||||
|
|
||||||
|
|
|
@ -2829,7 +2829,7 @@ int main(int argc, char *argv[])
|
||||||
.IP "\fBint wave_tx_at(int pi)\fP"
|
.IP "\fBint wave_tx_at(int pi)\fP"
|
||||||
.IP "" 4
|
.IP "" 4
|
||||||
This function returns the id of the waveform currently being
|
This function returns the id of the waveform currently being
|
||||||
transmitted.
|
transmitted by \fBwave_send*\fP. Chained waves are not supported.
|
||||||
|
|
||||||
.br
|
.br
|
||||||
|
|
||||||
|
|
2
pigs.1
2
pigs.1
|
@ -4823,7 +4823,7 @@ $ pigs wvas 7 38400 8 2 0 0x41 0x42
|
||||||
|
|
||||||
.br
|
.br
|
||||||
This command returns the id of the waveform currently
|
This command returns the id of the waveform currently
|
||||||
being transmitted. Note: chained waves are not supported.
|
being transmitted. Chained waves are not supported.
|
||||||
|
|
||||||
.br
|
.br
|
||||||
Returns the waveform id or one of the following special
|
Returns the waveform id or one of the following special
|
||||||
|
|
Loading…
Reference in New Issue