2013-12-12 11:27:22 +01:00
|
|
|
/*
|
|
|
|
This is free and unencumbered software released into the public domain.
|
|
|
|
|
|
|
|
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
|
|
distribute this software, either in source code form or as a compiled
|
|
|
|
binary, for any purpose, commercial or non-commercial, and by any
|
|
|
|
means.
|
|
|
|
|
|
|
|
In jurisdictions that recognize copyright laws, the author or authors
|
|
|
|
of this software dedicate any and all copyright interest in the
|
|
|
|
software to the public domain. We make this dedication for the benefit
|
|
|
|
of the public at large and to the detriment of our heirs and
|
|
|
|
successors. We intend this dedication to be an overt act of
|
|
|
|
relinquishment in perpetuity of all present and future rights to this
|
|
|
|
software under copyright law.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
For more information, please refer to <http://unlicense.org/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PIGPIO_H
|
|
|
|
#define PIGPIO_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2014-01-12 22:31:59 +01:00
|
|
|
#include <pthread.h>
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-11-20 16:36:16 +01:00
|
|
|
#define PIGPIO_VERSION 23
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*TEXT
|
|
|
|
|
|
|
|
pigpio is a C library for the Raspberry which allows control of the gpios.
|
|
|
|
|
|
|
|
*Features*
|
|
|
|
|
|
|
|
o PWM on any of gpios 0-31
|
|
|
|
|
|
|
|
o servo pulses on any of gpios 0-31
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
o callbacks when any of gpios 0-31 change state
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
o callbacks at timed intervals
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
o reading/writing all of the gpios in a bank as one operation
|
|
|
|
|
|
|
|
o individually setting gpio modes, reading and writing
|
|
|
|
|
|
|
|
o notifications when any of gpios 0-31 change state
|
|
|
|
|
|
|
|
o the construction of output waveforms with microsecond timing
|
|
|
|
|
|
|
|
o rudimentary permission control over gpios
|
|
|
|
|
|
|
|
o a simple interface to start and stop new threads
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
o I2C, SPI, and serial link wrappers
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
o creating and running scripts
|
|
|
|
|
|
|
|
*gpios*
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
ALL gpios are identified by their Broadcom number.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
*Credits*
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The PWM and servo pulses are timed using the DMA and PWM peripherals.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
This use was inspired by Richard Hirst's servoblaster kernel module.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
[https://github.com/richardghirst/PiBits/tree/master/ServoBlaster]
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
*Usage*
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Include <pigpio.h> in your source files.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Assuming your source is in prog.c use the following command to build and
|
|
|
|
run the executable.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
gcc -o prog prog.c -lpigpio -lpthread -lrt
|
|
|
|
sudo ./prog
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
For examples of usage see the C programs within the pigpio archive file.
|
|
|
|
|
|
|
|
*Notes*
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
All the functions which return an int return < 0 on error.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
If the library isn't initialised all but the [*gpioCfg**], [*gpioVersion*],
|
|
|
|
and [*gpioHardwareRevision*] functions will return PI_NOT_INITIALISED.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
If the library is initialised the [*gpioCfg**] functions will
|
|
|
|
return PI_INITIALISED.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
TEXT*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*OVERVIEW
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
ESSENTIAL
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioInitialise Initialise library
|
|
|
|
gpioTerminate Stop library
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
BEGINNER
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSetMode Set a gpio mode
|
|
|
|
gpioGetMode Get a gpio mode
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSetPullUpDown Set/clear gpio pull up/down resistor
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioRead Read a gpio
|
|
|
|
gpioWrite Write a gpio
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioPWM Start/stop PWM pulses on a gpio
|
2014-11-20 16:36:16 +01:00
|
|
|
gpioGetPWMdutycycle Get dutycycle setting on a gpio
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioServo Start/stop servo pulses on a gpio
|
2014-11-20 16:36:16 +01:00
|
|
|
gpioGetServoPulsewidth Get pulsewidth setting on a gpio
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioDelay Delay for a number of microseconds
|
|
|
|
|
|
|
|
gpioSetAlertFunc Request a gpio level change callback
|
|
|
|
|
|
|
|
gpioSetTimerFunc Request a regular timed callback
|
|
|
|
|
|
|
|
INTERMEDIATE
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-01-21 20:04:59 +01:00
|
|
|
gpioTrigger Send a trigger pulse to a gpio.
|
|
|
|
|
2013-12-12 11:27:22 +01:00
|
|
|
gpioSetWatchdog Set a watchdog on a gpio.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSetPWMrange Configure PWM range for a gpio
|
|
|
|
gpioGetPWMrange Get configured PWM range for a gpio
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSetPWMfrequency Configure PWM frequency for a gpio
|
|
|
|
gpioGetPWMfrequency Get configured PWM frequency for a gpio
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioRead_Bits_0_31 Read all gpios in bank 1
|
|
|
|
gpioRead_Bits_32_53 Read all gpios in bank 2
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioWrite_Bits_0_31_Clear Clear selected gpios in bank 1
|
|
|
|
gpioWrite_Bits_32_53_Clear Clear selected gpios in bank 2
|
2014-01-21 20:04:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioWrite_Bits_0_31_Set Set selected gpios in bank 1
|
|
|
|
gpioWrite_Bits_32_53_Set Set selected gpios in bank 2
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioStartThread Start a new thread
|
|
|
|
gpioStopThread Stop a previously started thread
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
ADVANCED
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioGetPWMrealRange Get underlying PWM range for a gpio
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSetAlertFuncEx Request a gpio change callback, extended
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSetSignalFunc Request a signal callback
|
|
|
|
gpioSetSignalFuncEx Request a signal callback, extended
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSetGetSamplesFunc Requests a gpio samples callback
|
|
|
|
gpioSetGetSamplesFuncEx Requests a gpio samples callback, extended
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSetTimerFuncEx Request a regular timed callback, extended
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioNotifyOpen Request a notification handle
|
|
|
|
gpioNotifyBegin Start notifications for selected gpios
|
|
|
|
gpioNotifyPause Pause notifications
|
|
|
|
gpioNotifyClose Close a notification
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSerialReadOpen Opens a gpio for bit bang serial reads
|
|
|
|
gpioSerialRead Reads bit bang serial data from a gpio
|
|
|
|
gpioSerialReadClose Closes a gpio for bit bang serial reads
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
SCRIPTS
|
|
|
|
|
|
|
|
gpioStoreScript Store a script
|
|
|
|
gpioRunScript Run a stored script
|
|
|
|
gpioScriptStatus Get script status and parameters
|
|
|
|
gpioStopScript Stop a running script
|
|
|
|
gpioDeleteScript Delete a stored script
|
|
|
|
|
|
|
|
WAVES
|
|
|
|
|
|
|
|
gpioWaveClear Deletes all waveforms
|
|
|
|
|
|
|
|
gpioWaveAddNew Starts a new waveform
|
|
|
|
gpioWaveAddGeneric Adds a series of pulses to the waveform
|
|
|
|
gpioWaveAddSerial Adds serial data to the waveform
|
|
|
|
|
|
|
|
gpioWaveCreate Creates a waveform from added data
|
|
|
|
gpioWaveDelete Deletes one or more waveforms
|
|
|
|
|
|
|
|
gpioWaveTxSend Transmits a waveform
|
|
|
|
gpioWaveTxBusy Checks to see if the waveform has ended
|
|
|
|
gpioWaveTxStop Aborts the current waveform
|
|
|
|
|
|
|
|
gpioWaveGetMicros Length in microseconds of the current waveform
|
|
|
|
gpioWaveGetHighMicros Length of longest waveform so far
|
|
|
|
gpioWaveGetMaxMicros Absolute maximum allowed micros
|
|
|
|
|
|
|
|
gpioWaveGetPulses Length in pulses of the current waveform
|
|
|
|
gpioWaveGetHighPulses Length of longest waveform so far
|
|
|
|
gpioWaveGetMaxPulses Absolute maximum allowed pulses
|
|
|
|
|
|
|
|
gpioWaveGetCbs Length in cbs of the current waveform
|
|
|
|
gpioWaveGetHighCbs Length of longest waveform so far
|
|
|
|
gpioWaveGetMaxCbs Absolute maximum allowed cbs
|
|
|
|
|
|
|
|
gpioWaveTxStart Creates/transmits a waveform (DEPRECATED)
|
|
|
|
|
|
|
|
I2C
|
|
|
|
|
|
|
|
i2cOpen Opens an I2C device
|
|
|
|
i2cClose Closes an I2C device
|
|
|
|
|
|
|
|
i2cReadDevice Reads the raw I2C device
|
|
|
|
i2cWriteDevice Writes the raw I2C device
|
|
|
|
|
|
|
|
i2cWriteQuick smbus write quick
|
|
|
|
i2cWriteByte smbus write byte
|
|
|
|
i2cReadByte smbus read byte
|
|
|
|
i2cWriteByteData smbus write byte data
|
|
|
|
i2cWriteWordData smbus write word data
|
|
|
|
i2cReadByteData smbus read byte data
|
|
|
|
i2cReadWordData smbus read word data
|
|
|
|
i2cProcessCall smbus process call
|
|
|
|
i2cWriteBlockData smbus write block data
|
|
|
|
i2cReadBlockData smbus read block data
|
|
|
|
i2cBlockProcessCall smbus block process call
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
i2cWriteI2CBlockData smbus write I2C block data
|
|
|
|
i2cReadI2CBlockData smbus read I2C block data
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
SPI
|
|
|
|
|
|
|
|
spiOpen Opens a SPI device
|
|
|
|
spiClose Closes a SPI device
|
|
|
|
|
|
|
|
spiRead Reads bytes from a SPI device
|
|
|
|
spiWrite Writes bytes to a SPI device
|
|
|
|
spiXfer Transfers bytes with a SPI device
|
|
|
|
|
|
|
|
SERIAL
|
|
|
|
|
|
|
|
serOpen Opens a serial device (/dev/tty*)
|
|
|
|
serClose Closes a serial device
|
|
|
|
|
|
|
|
serWriteByte Writes a byte to a serial device
|
|
|
|
serReadByte Reads a byte from a serial device
|
|
|
|
serWrite Writes bytes to a serial device
|
|
|
|
serRead Reads bytes from a serial device
|
|
|
|
|
|
|
|
serDataAvailable Returns number of bytes ready to be read
|
|
|
|
|
|
|
|
CONFIGURATION
|
|
|
|
|
|
|
|
gpioCfgBufferSize Configure the gpio sample buffer size
|
|
|
|
gpioCfgClock Configure the gpio sample rate
|
|
|
|
gpioCfgDMAchannel Configure the DMA channel (DEPRECATED)
|
|
|
|
gpioCfgDMAchannels Configure the DMA channels
|
|
|
|
gpioCfgPermissions Configure the gpio access permissions
|
|
|
|
gpioCfgInterfaces Configure user interfaces
|
|
|
|
gpioCfgInternals Configure miscellaneous internals
|
|
|
|
gpioCfgSocketPort Configure socket port
|
|
|
|
|
|
|
|
UTILITIES
|
|
|
|
|
|
|
|
gpioTick Get current tick (microseconds)
|
|
|
|
|
|
|
|
gpioHardwareRevision Get hardware revision
|
|
|
|
gpioVersion Get the pigpio version
|
|
|
|
|
|
|
|
getBitInBytes Get the value of a bit
|
|
|
|
putBitInBytes Set the value of a bit
|
|
|
|
|
|
|
|
gpioTime Get current time
|
|
|
|
gpioSleep Sleep for specified time
|
|
|
|
|
|
|
|
time_sleep Sleeps for a float number of seconds
|
|
|
|
time_time Float number of seconds since the epoch
|
|
|
|
|
|
|
|
EXPERT
|
|
|
|
|
|
|
|
rawWaveAddSPI Not intended for general use
|
|
|
|
rawWaveAddGeneric Not intended for general use
|
|
|
|
rawWaveGetOut Not intended for general use
|
|
|
|
rawWaveSetOut Not intended for general use
|
|
|
|
rawWaveGetIn Not intended for general use
|
|
|
|
rawWaveSetIn Not intended for general use
|
2014-09-09 23:58:39 +02:00
|
|
|
rawWaveInfo Not intended for general use
|
2014-06-12 19:31:00 +02:00
|
|
|
rawDumpWave Not intended for general use
|
|
|
|
rawDumpScript Not intended for general use
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
OVERVIEW*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
#define PI_INPFIFO "/dev/pigpio"
|
|
|
|
#define PI_OUTFIFO "/dev/pigout"
|
|
|
|
#define PI_ERRFIFO "/dev/pigerr"
|
|
|
|
|
|
|
|
#define PI_ENVPORT "PIGPIO_PORT"
|
|
|
|
#define PI_ENVADDR "PIGPIO_ADDR"
|
|
|
|
|
|
|
|
#define PI_LOCKFILE "/var/run/pigpio.pid"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-03-13 16:50:23 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2014-06-12 19:31:00 +02:00
|
|
|
uint16_t func;
|
|
|
|
uint16_t size;
|
2014-03-13 16:50:23 +01:00
|
|
|
} gpioHeader_t;
|
|
|
|
|
2013-12-12 11:27:22 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2014-06-12 19:31:00 +02:00
|
|
|
size_t size;
|
|
|
|
void *ptr;
|
|
|
|
uint32_t data;
|
2014-01-21 20:04:59 +01:00
|
|
|
} gpioExtent_t;
|
|
|
|
|
2013-12-12 11:27:22 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2014-06-12 19:31:00 +02:00
|
|
|
uint32_t tick;
|
|
|
|
uint32_t level;
|
2013-12-12 11:27:22 +01:00
|
|
|
} gpioSample_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2014-06-12 19:31:00 +02:00
|
|
|
uint16_t seqno;
|
|
|
|
uint16_t flags;
|
|
|
|
uint32_t tick;
|
|
|
|
uint32_t level;
|
2013-12-12 11:27:22 +01:00
|
|
|
} gpioReport_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2014-06-12 19:31:00 +02:00
|
|
|
uint32_t gpioOn;
|
|
|
|
uint32_t gpioOff;
|
|
|
|
uint32_t usDelay;
|
2013-12-12 11:27:22 +01:00
|
|
|
} gpioPulse_t;
|
|
|
|
|
2014-03-13 16:50:23 +01:00
|
|
|
#define WAVE_FLAG_READ 1
|
|
|
|
#define WAVE_FLAG_TICK 2
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2014-06-12 19:31:00 +02:00
|
|
|
uint32_t gpioOn;
|
|
|
|
uint32_t gpioOff;
|
|
|
|
uint32_t usDelay;
|
|
|
|
uint32_t flags;
|
2014-04-19 14:00:51 +02:00
|
|
|
} rawWave_t;
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-09-09 23:58:39 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint16_t botCB; /* first CB used by wave */
|
|
|
|
uint16_t topCB; /* last CB used by wave */
|
|
|
|
uint16_t botOOL; /* last OOL used by wave */
|
|
|
|
uint16_t topOOL; /* first OOL used by wave */
|
|
|
|
} rawWaveInfo_t;
|
|
|
|
|
2014-03-13 16:50:23 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2014-06-12 19:31:00 +02:00
|
|
|
int clk; /* gpio for clock */
|
|
|
|
int mosi; /* gpio for MOSI */
|
|
|
|
int miso; /* gpio for MISO */
|
|
|
|
int ss_pol; /* slave select off state */
|
|
|
|
int ss_us; /* delay after slave select */
|
|
|
|
int clk_pol; /* clock off state */
|
|
|
|
int clk_pha; /* clock phase */
|
|
|
|
int clk_us; /* clock micros */
|
2014-04-19 13:19:29 +02:00
|
|
|
} rawSPI_t;
|
|
|
|
|
|
|
|
typedef struct { /* linux/arch/arm/mach-bcm2708/include/mach/dma.h */
|
2014-06-12 19:31:00 +02:00
|
|
|
unsigned long info;
|
|
|
|
unsigned long src;
|
|
|
|
unsigned long dst;
|
|
|
|
unsigned long length;
|
|
|
|
unsigned long stride;
|
|
|
|
unsigned long next;
|
|
|
|
unsigned long pad[2];
|
2014-04-19 13:19:29 +02:00
|
|
|
} rawCbs_t;
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2013-12-12 11:27:22 +01:00
|
|
|
typedef void (*gpioAlertFunc_t) (int gpio,
|
2014-06-12 19:31:00 +02:00
|
|
|
int level,
|
|
|
|
uint32_t tick);
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
typedef void (*gpioAlertFuncEx_t) (int gpio,
|
2014-06-12 19:31:00 +02:00
|
|
|
int level,
|
|
|
|
uint32_t tick,
|
|
|
|
void *userdata);
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
typedef void (*gpioTimerFunc_t) (void);
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
typedef void (*gpioTimerFuncEx_t) (void *userdata);
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
typedef void (*gpioSignalFunc_t) (int signum);
|
|
|
|
|
|
|
|
typedef void (*gpioSignalFuncEx_t) (int signum,
|
2014-06-12 19:31:00 +02:00
|
|
|
void *userdata);
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
typedef void (*gpioGetSamplesFunc_t) (const gpioSample_t *samples,
|
|
|
|
int numSamples);
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
typedef void (*gpioGetSamplesFuncEx_t) (const gpioSample_t *samples,
|
|
|
|
int numSamples,
|
|
|
|
void *userdata);
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-01-21 20:04:59 +01:00
|
|
|
typedef void *(gpioThreadFunc_t) (void *);
|
2014-01-12 22:31:59 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/* gpio: 0-53 */
|
|
|
|
|
|
|
|
#define PI_MIN_GPIO 0
|
|
|
|
#define PI_MAX_GPIO 53
|
|
|
|
|
|
|
|
/* user_gpio: 0-31 */
|
|
|
|
|
|
|
|
#define PI_MAX_USER_GPIO 31
|
|
|
|
|
|
|
|
/* level: 0-1 */
|
|
|
|
|
|
|
|
#define PI_OFF 0
|
|
|
|
#define PI_ON 1
|
|
|
|
|
|
|
|
#define PI_CLEAR 0
|
|
|
|
#define PI_SET 1
|
|
|
|
|
|
|
|
#define PI_LOW 0
|
|
|
|
#define PI_HIGH 1
|
|
|
|
|
|
|
|
/* level: only reported for gpio timeout, see gpioSetWatchdog */
|
|
|
|
|
|
|
|
#define PI_TIMEOUT 2
|
|
|
|
|
|
|
|
/* mode: 0-7 */
|
|
|
|
|
|
|
|
#define PI_INPUT 0
|
|
|
|
#define PI_OUTPUT 1
|
|
|
|
#define PI_ALT0 4
|
|
|
|
#define PI_ALT1 5
|
|
|
|
#define PI_ALT2 6
|
|
|
|
#define PI_ALT3 7
|
|
|
|
#define PI_ALT4 3
|
|
|
|
#define PI_ALT5 2
|
|
|
|
|
|
|
|
/* pud: 0-2 */
|
|
|
|
|
|
|
|
#define PI_PUD_OFF 0
|
|
|
|
#define PI_PUD_DOWN 1
|
|
|
|
#define PI_PUD_UP 2
|
|
|
|
|
|
|
|
/* dutycycle: 0-range */
|
|
|
|
|
|
|
|
#define PI_DEFAULT_DUTYCYCLE_RANGE 255
|
|
|
|
|
|
|
|
/* range: 25-40000 */
|
|
|
|
|
|
|
|
#define PI_MIN_DUTYCYCLE_RANGE 25
|
|
|
|
#define PI_MAX_DUTYCYCLE_RANGE 40000
|
|
|
|
|
|
|
|
/* pulsewidth: 0, 500-2500 */
|
|
|
|
|
|
|
|
#define PI_SERVO_OFF 0
|
|
|
|
#define PI_MIN_SERVO_PULSEWIDTH 500
|
|
|
|
#define PI_MAX_SERVO_PULSEWIDTH 2500
|
|
|
|
|
|
|
|
#define PI_NOTIFY_SLOTS 32
|
|
|
|
|
|
|
|
#define PI_NTFY_FLAGS_WDOG (1 <<5)
|
|
|
|
#define PI_NTFY_FLAGS_BIT(x) (((x)<<0)&31)
|
|
|
|
|
|
|
|
#define PI_WAVE_BLOCKS 4
|
|
|
|
#define PI_WAVE_MAX_PULSES (PI_WAVE_BLOCKS * 3000)
|
|
|
|
#define PI_WAVE_MAX_CHARS (PI_WAVE_BLOCKS * 256)
|
|
|
|
|
|
|
|
#define PI_WAVE_MIN_BAUD 100
|
|
|
|
#define PI_WAVE_MAX_BAUD 250000
|
|
|
|
|
|
|
|
#define PI_WAVE_MAX_MICROS (30 * 60 * 1000000) /* half an hour */
|
|
|
|
|
|
|
|
#define PI_MAX_WAVES 512
|
|
|
|
|
|
|
|
/* wave tx mode */
|
|
|
|
|
|
|
|
#define PI_WAVE_MODE_ONE_SHOT 0
|
|
|
|
#define PI_WAVE_MODE_REPEAT 1
|
|
|
|
|
2014-08-12 19:47:26 +02:00
|
|
|
/* I2C, SPI, SER */
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-09-03 20:52:48 +02:00
|
|
|
#define MIN_SPI_SPEED 32000
|
|
|
|
#define MAX_SPI_SPEED 125000000
|
|
|
|
|
2014-08-12 19:47:26 +02:00
|
|
|
#define PI_I2C_SLOTS 32
|
2014-09-03 20:52:48 +02:00
|
|
|
#define PI_SPI_SLOTS 16
|
2014-08-12 19:47:26 +02:00
|
|
|
#define PI_SER_SLOTS 8
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
#define PI_NUM_I2C_BUS 2
|
2014-09-03 20:52:48 +02:00
|
|
|
|
|
|
|
#define PI_NUM_AUX_SPI_CHANNEL 3
|
|
|
|
#define PI_NUM_STD_SPI_CHANNEL 2
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-11-20 16:36:16 +01:00
|
|
|
#define PI_MAX_I2C_DEVICE_COUNT (1<<16)
|
|
|
|
#define PI_MAX_SPI_DEVICE_COUNT (1<<16)
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-09-03 20:52:48 +02:00
|
|
|
#define PI_SPI_FLAGS_BITLEN(x) ((x&63)<<16)
|
|
|
|
#define PI_SPI_FLAGS_RX_LSB(x) ((x&1)<<15)
|
|
|
|
#define PI_SPI_FLAGS_TX_LSB(x) ((x&1)<<14)
|
|
|
|
#define PI_SPI_FLAGS_3WREN(x) ((x&15)<<10)
|
|
|
|
#define PI_SPI_FLAGS_3WIRE(x) ((x&1)<<9)
|
|
|
|
#define PI_SPI_FLAGS_AUX_SPI(x) ((x&1)<<8)
|
|
|
|
#define PI_SPI_FLAGS_RESVD(x) ((x&7)<<5)
|
|
|
|
#define PI_SPI_FLAGS_CSPOLS(x) ((x&7)<<2)
|
|
|
|
#define PI_SPI_FLAGS_MODE(x) ((x&3))
|
2014-08-12 19:47:26 +02:00
|
|
|
|
|
|
|
/* Longest busy delay */
|
|
|
|
|
|
|
|
#define PI_MAX_BUSY_DELAY 100
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/* timeout: 0-60000 */
|
|
|
|
|
|
|
|
#define PI_MIN_WDOG_TIMEOUT 0
|
|
|
|
#define PI_MAX_WDOG_TIMEOUT 60000
|
|
|
|
|
|
|
|
/* timer: 0-9 */
|
|
|
|
|
|
|
|
#define PI_MIN_TIMER 0
|
|
|
|
#define PI_MAX_TIMER 9
|
|
|
|
|
|
|
|
/* millis: 10-60000 */
|
|
|
|
|
|
|
|
#define PI_MIN_MS 10
|
|
|
|
#define PI_MAX_MS 60000
|
|
|
|
|
|
|
|
#define PI_MAX_SCRIPTS 32
|
|
|
|
|
|
|
|
#define PI_MAX_SCRIPT_TAGS 50
|
|
|
|
#define PI_MAX_SCRIPT_VARS 150
|
|
|
|
#define PI_MAX_SCRIPT_PARAMS 10
|
|
|
|
|
|
|
|
/* script status */
|
|
|
|
|
|
|
|
#define PI_SCRIPT_INITING 0
|
|
|
|
#define PI_SCRIPT_HALTED 1
|
|
|
|
#define PI_SCRIPT_RUNNING 2
|
|
|
|
#define PI_SCRIPT_WAITING 3
|
|
|
|
#define PI_SCRIPT_FAILED 4
|
|
|
|
|
|
|
|
/* signum: 0-63 */
|
|
|
|
|
|
|
|
#define PI_MIN_SIGNUM 0
|
|
|
|
#define PI_MAX_SIGNUM 63
|
|
|
|
|
|
|
|
/* timetype: 0-1 */
|
|
|
|
|
|
|
|
#define PI_TIME_RELATIVE 0
|
|
|
|
#define PI_TIME_ABSOLUTE 1
|
|
|
|
|
|
|
|
#define PI_MAX_MICS_DELAY 1000000 /* 1 second */
|
|
|
|
#define PI_MAX_MILS_DELAY 60000 /* 60 seconds */
|
|
|
|
|
|
|
|
/* cfgMillis */
|
|
|
|
|
|
|
|
#define PI_BUF_MILLIS_MIN 100
|
|
|
|
#define PI_BUF_MILLIS_MAX 10000
|
|
|
|
|
|
|
|
/* cfgMicros: 1, 2, 4, 5, 8, or 10 */
|
|
|
|
|
|
|
|
/* cfgPeripheral: 0-1 */
|
|
|
|
|
|
|
|
#define PI_CLOCK_PWM 0
|
|
|
|
#define PI_CLOCK_PCM 1
|
|
|
|
|
|
|
|
/* cfgSource: 0-1 */
|
|
|
|
|
|
|
|
#define PI_CLOCK_OSC 0
|
|
|
|
#define PI_CLOCK_PLLD 1
|
|
|
|
|
|
|
|
/* DMA channel: 0-14 */
|
|
|
|
|
|
|
|
#define PI_MIN_DMA_CHANNEL 0
|
|
|
|
#define PI_MAX_DMA_CHANNEL 14
|
|
|
|
|
|
|
|
#define PI_MAX_PRIMARY_CHANNEL 14
|
|
|
|
#define PI_MAX_SECONDARY_CHANNEL 6
|
|
|
|
|
|
|
|
/* port */
|
|
|
|
|
|
|
|
#define PI_MIN_SOCKET_PORT 1024
|
|
|
|
#define PI_MAX_SOCKET_PORT 32000
|
|
|
|
|
|
|
|
|
|
|
|
/* ifFlags: */
|
|
|
|
|
|
|
|
#define PI_DISABLE_FIFO_IF 1
|
|
|
|
#define PI_DISABLE_SOCK_IF 2
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioInitialise(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Initialises the library.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Call before using the other library functions.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the pigpio version number if OK, otherwise PI_INIT_FAILED.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The only exception is the optional [*gpioCfg**] functions, see later.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
...
|
|
|
|
if (gpioInitialise() < 0)
|
|
|
|
{
|
|
|
|
// pigpio initialisation failed.
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// pigpio initialised okay.
|
|
|
|
}
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
void gpioTerminate(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Terminates the library.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns nothing.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Call before program exit.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
This function resets the DMA and PWM peripherals, releases memory, and
|
|
|
|
terminates any running threads.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
...
|
|
|
|
gpioTerminate();
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetMode(unsigned gpio, unsigned mode);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sets the gpio mode, typically input or output.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
gpio: 0-53
|
|
|
|
mode: 0-7
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_GPIO or PI_BAD_MODE.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Arduino style: pinMode.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSetMode(17, PI_INPUT); // Set gpio17 as input.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSetMode(18, PI_OUTPUT); // Set gpio18 as output.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSetMode(22,PI_ALT0); // Set gpio22 to alternative mode 0.
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioGetMode(unsigned gpio);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Gets the gpio mode.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
gpio: 0-53
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the gpio mode if OK, otherwise PI_BAD_GPIO.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
if (gpioGetMode(17) != PI_ALT0)
|
|
|
|
{
|
|
|
|
gpioSetMode(17, PI_ALT0); // set gpio17 to ALT0
|
|
|
|
}
|
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetPullUpDown(unsigned gpio, unsigned pud);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sets or clears resistor pull ups or downs on the gpio.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
gpio: 0-53
|
|
|
|
pud: 0-2
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_GPIO or PI_BAD_PUD.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSetPullUpDown(17, PI_PUD_UP); // Sets a pull-up.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSetPullUpDown(18, PI_PUD_DOWN); // Sets a pull-down.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSetPullUpDown(23, PI_PUD_OFF); // Clear any pull-ups/downs.
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioRead (unsigned gpio);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Reads the gpio level, on or off.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
gpio: 0-53
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the gpio level if OK, otherwise PI_BAD_GPIO.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Arduino style: digitalRead.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
printf("gpio24 is level %d\n", gpioRead(24));
|
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioWrite(unsigned gpio, unsigned level);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sets the gpio level, on or off.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
gpio: 0-53
|
|
|
|
level: 0,1
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_GPIO or PI_BAD_LEVEL.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If PWM or servo pulses are active on the gpio they are switched off.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Arduino style: digitalWrite
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioWrite(24, 1); // Set gpio24 high.
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioPWM(unsigned user_gpio, unsigned dutycycle);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Starts PWM on the gpio, dutycycle between 0 (off) and range (fully on).
|
|
|
|
Range defaults to 255.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
dutycycle: 0-range
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_USER_GPIO or PI_BAD_DUTYCYCLE.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Arduino style: analogWrite
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
This and the servo functionality use the DMA and PWM or PCM peripherals
|
2014-11-20 16:36:16 +01:00
|
|
|
to control and schedule the pulse lengths and dutycycles.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The [*gpioSetPWMrange*] function may be used to change the default
|
|
|
|
range of 255.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioPWM(17, 255); // Sets gpio17 full on.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioPWM(18, 128); // Sets gpio18 half on.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioPWM(23, 0); // Sets gpio23 full off.
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-11-20 16:36:16 +01:00
|
|
|
/*F*/
|
|
|
|
int gpioGetPWMdutycycle(unsigned user_gpio);
|
|
|
|
/*D
|
|
|
|
Returns the PWM dutycycle setting for the gpio.
|
|
|
|
|
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
. .
|
|
|
|
|
|
|
|
Returns between 0 (off) and range (fully on) if OK, otherwise
|
|
|
|
PI_BAD_USER_GPIO or PI_NOT_PWM_GPIO.
|
|
|
|
|
|
|
|
Range defaults to 255.
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetPWMrange(unsigned user_gpio, unsigned range);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Selects the dutycycle range to be used for the gpio. Subsequent calls
|
|
|
|
to gpioPWM will use a dutycycle between 0 (off) and range (fully on).
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
range: 25-40000
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the real range for the given gpio's frequency if OK,
|
|
|
|
otherwise PI_BAD_USER_GPIO or PI_BAD_DUTYRANGE.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If PWM is currently active on the gpio its dutycycle will be scaled
|
|
|
|
to reflect the new range.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The real range, the number of steps between fully off and fully
|
|
|
|
on for each frequency, is given in the following table.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
25, 50, 100, 125, 200, 250, 400, 500, 625,
|
|
|
|
800, 1000, 1250, 2000, 2500, 4000, 5000, 10000, 20000
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The real value set by [*gpioPWM*] is (dutycycle * real range) / range.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSetPWMrange(24, 2000); // Now 2000 is fully on
|
|
|
|
// 1000 is half on
|
|
|
|
// 500 is quarter on, etc.
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioGetPWMrange(unsigned user_gpio);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the dutycycle range used for the gpio if OK, otherwise
|
|
|
|
PI_BAD_USER_GPIO.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
. .
|
|
|
|
|
|
|
|
...
|
|
|
|
r = gpioGetPWMrange(23);
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioGetPWMrealRange(unsigned user_gpio);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the real range used for the gpio if OK, otherwise
|
|
|
|
PI_BAD_USER_GPIO.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
. .
|
|
|
|
|
|
|
|
...
|
|
|
|
rr = gpioGetPWMrealRange(17);
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetPWMfrequency(unsigned user_gpio, unsigned frequency);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sets the frequency in hertz to be used for the gpio.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
frequency: >=0
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the numerically closest frequency if OK, otherwise
|
|
|
|
PI_BAD_USER_GPIO.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The selectable frequencies depend upon the sample rate which
|
|
|
|
may be 1, 2, 4, 5, 8, or 10 microseconds (default 5).
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Each gpio can be independently set to one of 18 different PWM
|
|
|
|
frequencies.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If PWM is currently active on the gpio it will be
|
|
|
|
switched off and then back on at the new frequency.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The frequencies for each sample rate are:
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
Hertz
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
1: 40000 20000 10000 8000 5000 4000 2500 2000 1600
|
2014-06-12 19:31:00 +02:00
|
|
|
1250 1000 800 500 400 250 200 100 50
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
2: 20000 10000 5000 4000 2500 2000 1250 1000 800
|
2014-06-12 19:31:00 +02:00
|
|
|
625 500 400 250 200 125 100 50 25
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
4: 10000 5000 2500 2000 1250 1000 625 500 400
|
2014-06-12 19:31:00 +02:00
|
|
|
313 250 200 125 100 63 50 25 13
|
2013-12-12 11:27:22 +01:00
|
|
|
sample
|
|
|
|
rate
|
|
|
|
(us) 5: 8000 4000 2000 1600 1000 800 500 400 320
|
2014-06-12 19:31:00 +02:00
|
|
|
250 200 160 100 80 50 40 20 10
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
8: 5000 2500 1250 1000 625 500 313 250 200
|
2014-06-12 19:31:00 +02:00
|
|
|
156 125 100 63 50 31 25 13 6
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
10: 4000 2000 1000 800 500 400 250 200 160
|
|
|
|
125 100 80 50 40 25 20 10 5
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
...
|
|
|
|
gpioSetPWMfrequency(23, 0); // Set gpio23 to lowest frequency.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSetPWMfrequency(24, 500); // Set gpio24 to 500Hz.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSetPWMfrequency(25, 100000); // Set gpio25 to highest frequency.
|
|
|
|
...
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioGetPWMfrequency(unsigned user_gpio);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the frequency (in hertz) used for the gpio if OK, otherwise
|
|
|
|
PI_BAD_USER_GPIO.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
. .
|
|
|
|
|
|
|
|
...
|
|
|
|
f = gpioGetPWMfrequency(23); // Get frequency used for gpio23.
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioServo(unsigned user_gpio, unsigned pulsewidth);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Starts servo pulses on the gpio, 0 (off), 500 (most anti-clockwise) to
|
|
|
|
2500 (most clockwise).
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
pulsewidth: 0, 500-2500
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_USER_GPIO or PI_BAD_PULSEWIDTH.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The range supported by servos varies and should probably be determined
|
|
|
|
by experiment. A value of 1500 should always be safe and represents
|
|
|
|
the mid-point of rotation. You can DAMAGE a servo if you command it
|
|
|
|
to move beyond its limits.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The following causes an on pulse of 1500 microseconds duration to be
|
|
|
|
transmitted on gpio 17 at a rate of 50 times per second. This will
|
2014-08-01 10:30:25 +02:00
|
|
|
command a servo connected to gpio 17 to rotate to its mid-point.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioServo(17, 1000); // Move servo to safe position anti-clockwise.
|
|
|
|
|
|
|
|
gpioServo(23, 1500); // Move servo to centre position.
|
|
|
|
|
|
|
|
gpioServo(25, 2000); // Move servo to safe position clockwise.
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
OTHER UPDATE RATES:
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
This function updates servos at 50Hz. If you wish to use a different
|
|
|
|
update frequency you will have to use the PWM functions.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
PWM Hz 50 100 200 400 500
|
|
|
|
1E6/Hz 20000 10000 5000 2500 2000
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Firstly set the desired PWM frequency using [*gpioSetPWMfrequency*].
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Then set the PWM range using [*gpioSetPWMrange*] to 1E6/frequency.
|
2014-06-12 19:31:00 +02:00
|
|
|
Doing this allows you to use units of microseconds when setting
|
2014-11-20 16:36:16 +01:00
|
|
|
the servo pulsewidth.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
E.g. If you want to update a servo connected to gpio25 at 400Hz
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
gpioSetPWMfrequency(25, 400);
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSetPWMrange(25, 2500);
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Thereafter use the PWM command to move the servo,
|
|
|
|
e.g. gpioPWM(25, 1500) will set a 1500 us pulse.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-11-20 16:36:16 +01:00
|
|
|
/*F*/
|
|
|
|
int gpioGetServoPulsewidth(unsigned user_gpio);
|
|
|
|
/*D
|
|
|
|
Returns the servo pulsewidth setting for the gpio.
|
|
|
|
|
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
. .
|
|
|
|
|
|
|
|
Returns , 0 (off), 500 (most anti-clockwise) to 2500 (most clockwise)
|
|
|
|
if OK, otherwise PI_BAD_USER_GPIO or PI_NOT_SERVO_GPIO.
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetAlertFunc(unsigned user_gpio, gpioAlertFunc_t f);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Registers a function to be called (a callback) when the specified
|
|
|
|
gpio changes state.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
f: the callback function
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_USER_GPIO.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
One function may be registered per gpio.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function is passed the gpio, the new level, and the tick.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The alert may be cancelled by passing NULL as the function.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The gpios are sampled at a rate set when the library is started.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If a value isn't specifically set the default of 5 us is used.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The number of samples per second is given in the following table.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
samples
|
|
|
|
per sec
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
1 1,000,000
|
|
|
|
2 500,000
|
|
|
|
sample 4 250,000
|
|
|
|
rate 5 200,000
|
|
|
|
(us) 8 125,000
|
|
|
|
10 100,000
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Level changes shorter than the sample rate may be missed.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The thread which calls the alert functions is triggered nominally
|
|
|
|
1000 times per second. The active alert functions will be called
|
|
|
|
once per level change since the last time the thread was activated.
|
|
|
|
i.e. The active alert functions will get all level changes but there
|
|
|
|
will be a latency.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The tick value is the time stamp of the sample in microseconds, see
|
2014-08-01 10:30:25 +02:00
|
|
|
[*gpioTick*] for more details.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
void aFunction(int gpio, int level, uint32_t tick)
|
|
|
|
{
|
|
|
|
printf("gpio %d became %d at %d\n", gpio, level, tick);
|
|
|
|
}
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
// call aFunction whenever gpio 4 changes state
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioSetAlertFunc(4, aFunction);
|
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetAlertFuncEx(
|
|
|
|
unsigned user_gpio, gpioAlertFuncEx_t f, void *userdata);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Registers a function to be called (a callback) when the specified
|
|
|
|
gpio changes state.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
f: the callback function
|
|
|
|
userdata: pointer to arbitrary user data
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_USER_GPIO.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
One function may be registered per gpio.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function is passed the gpio, the new level, the tick, and
|
|
|
|
the userdata pointer.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Only one of [*gpioSetAlertFunc*] or [*gpioSetAlertFuncEx*] can be
|
2014-06-12 19:31:00 +02:00
|
|
|
registered per gpio.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
See [*gpioSetAlertFunc*] for further details.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioNotifyOpen(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function requests a free notification handle.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns a handle greater than or equal to zero if OK,
|
|
|
|
otherwise PI_NO_HANDLE.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A notification is a method for being notified of gpio state changes
|
|
|
|
via a pipe or socket.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Pipe notifications for handle x will be available at the pipe
|
|
|
|
named /dev/pigpiox (where x is the handle number). E.g. if the
|
|
|
|
function returns 15 then the notifications must be read
|
|
|
|
from /dev/pigpio15.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Socket notifications are returned to the socket which requested the
|
|
|
|
handle.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
...
|
|
|
|
h = gpioNotifyOpen();
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
if (h >= 0)
|
|
|
|
{
|
|
|
|
sprintf(str, "/dev/pigpio%d", h);
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
fd = open(str, "r");
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
if (fd >= 0)
|
|
|
|
{
|
|
|
|
// Okay.
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Error.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Error.
|
|
|
|
}
|
|
|
|
...
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioNotifyBegin(unsigned handle, uint32_t bits);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function starts notifications on a previously opened handle.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by [*gpioNotifyOpen*]
|
|
|
|
bits: a bit mask indicating the gpios of interest
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The notification sends state changes for each gpio whose corresponding
|
|
|
|
bit in bits is set.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Each notification occupies 12 bytes in the fifo and has the
|
|
|
|
following structure.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint16_t seqno;
|
|
|
|
uint16_t flags;
|
|
|
|
uint32_t tick;
|
|
|
|
uint32_t level;
|
|
|
|
} gpioReport_t;
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
seqno starts at 0 each time the handle is opened and then increments
|
|
|
|
by one for each report.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
flags, if bit 5 is set then bits 0-4 of the flags indicate a gpio
|
|
|
|
which has had a watchdog timeout.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
tick is the number of microseconds since system boot.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
level indicates the level of each gpio.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
// Start notifications for gpios 1, 4, 6, 7, 10.
|
|
|
|
|
|
|
|
// 1
|
|
|
|
// 0 76 4 1
|
2014-06-12 19:31:00 +02:00
|
|
|
// (1234 = 0x04D2 = 0b0000010011010010)
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioNotifyBegin(h, 1234);
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioNotifyPause(unsigned handle);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function pauses notifications on a previously opened handle.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by [*gpioNotifyOpen*]
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Notifications for the handle are suspended until [*gpioNotifyBegin*]
|
2014-06-12 19:31:00 +02:00
|
|
|
is called again.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
...
|
|
|
|
gpioNotifyPause(h);
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioNotifyClose(unsigned handle);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function stops notifications on a previously opened handle
|
|
|
|
and releases the handle for reuse.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by [*gpioNotifyOpen*]
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE.
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
...
|
|
|
|
gpioNotifyClose(h);
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioWaveClear(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function clears all waveforms and any data added by calls to the
|
2014-08-01 10:30:25 +02:00
|
|
|
[*gpioWaveAdd**] functions.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
...
|
|
|
|
gpioWaveClear();
|
|
|
|
...
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int gpioWaveAddNew(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
|
|
|
This function starts a new empty waveform.
|
|
|
|
|
|
|
|
You wouldn't normally need to call this function as it is automatically
|
|
|
|
called after a waveform is created with the [*gpioWaveCreate*] function.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
...
|
|
|
|
gpioWaveAddNew();
|
|
|
|
...
|
|
|
|
D*/
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioWaveAddGeneric(unsigned numPulses, gpioPulse_t *pulses);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function adds a number of pulses to the current waveform.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
numPulses: the number of pulses
|
|
|
|
pulses: an array of pulses
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the new total number of pulses in the current waveform if OK,
|
|
|
|
otherwise PI_TOO_MANY_PULSES.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The pulses are interleaved in time order within the existing waveform
|
|
|
|
(if any).
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Merging allows the waveform to be built in parts, that is the settings
|
|
|
|
for gpio#1 can be added, and then gpio#2 etc.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If the added waveform is intended to start after or within the existing
|
|
|
|
waveform then the first pulse should consist of a delay.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
...
|
|
|
|
// Construct and send a 30 microsecond square wave.
|
|
|
|
|
|
|
|
gpioSetMode(gpio, PI_OUTPUT);
|
|
|
|
|
|
|
|
pulse[0].gpioOn = (1<<gpio);
|
|
|
|
pulse[0].gpioOff = 0;
|
|
|
|
pulse[0].usDelay = 15;
|
|
|
|
|
|
|
|
pulse[1].gpioOn = 0;
|
|
|
|
pulse[1].gpioOff = (1<<gpio);
|
|
|
|
pulse[1].usDelay = 15;
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioWaveAddNew();
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioWaveAddGeneric(2, pulse);
|
|
|
|
|
|
|
|
wave_id = gpioWaveCreate();
|
|
|
|
|
|
|
|
if (wave_id >= 0)
|
|
|
|
{
|
|
|
|
gpioWaveTxSend(wave_id, PI_WAVE_MODE_REPEAT);
|
|
|
|
|
|
|
|
// Transmit for 30 seconds.
|
|
|
|
|
|
|
|
sleep(30);
|
|
|
|
|
|
|
|
gpioWaveTxStop();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Wave create failed.
|
|
|
|
}
|
|
|
|
...
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
|
|
|
int gpioWaveAddSerial
|
|
|
|
(unsigned user_gpio,
|
|
|
|
unsigned bbBaud,
|
|
|
|
unsigned offset,
|
|
|
|
unsigned numChar,
|
|
|
|
char *str);
|
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function adds a waveform representing serial data to the
|
|
|
|
existing waveform (if any). The serial data starts offset microseconds
|
|
|
|
from the start of the waveform.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
bbBaud: 100-250000
|
|
|
|
offset: 0-
|
|
|
|
numChar: 1-
|
|
|
|
str: an array of chars (which may contain nulls)
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the new total number of pulses in the current waveform if OK,
|
|
|
|
otherwise PI_BAD_USER_GPIO, PI_BAD_WAVE_BAUD, PI_TOO_MANY_CHARS,
|
|
|
|
PI_BAD_SER_OFFSET, or PI_TOO_MANY_PULSES.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The serial data is formatted as one start bit, eight data bits, and one
|
|
|
|
stop bit.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
It is legal to add serial data streams with different baud rates to
|
|
|
|
the same waveform.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
...
|
|
|
|
#define MSG_LEN 8
|
2013-12-12 11:32:49 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
int i;
|
|
|
|
char *str;
|
|
|
|
char data[MSG_LEN];
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
str = "Hello world!";
|
2014-01-21 20:04:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioWaveAddSerial(4, 9600, 0, strlen(str), str);
|
|
|
|
|
|
|
|
for (i=0; i<MSG_LEN; i++) data[i] = i;
|
|
|
|
|
|
|
|
// Data added is offset 1 second from the waveform start.
|
|
|
|
gpioWaveAddSerial(4, 9600, 1000000, MSG_LEN, data);
|
|
|
|
...
|
|
|
|
D*/
|
2014-04-19 13:19:29 +02:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int gpioWaveCreate(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function creates a waveform from the data provided by the prior
|
2014-08-01 10:30:25 +02:00
|
|
|
calls to the [*gpioWaveAdd**] functions. Upon success a positive wave id
|
2014-06-12 19:31:00 +02:00
|
|
|
is returned.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The data provided by the [*gpioWaveAdd**] functions is consumed by this
|
2014-06-12 19:31:00 +02:00
|
|
|
function.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
As many waveforms may be created as there is space available. The
|
2014-08-01 10:30:25 +02:00
|
|
|
wave id is passed to [*gpioWaveTxSend*] to specify the waveform to transmit.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Normal usage would be
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Step 1. [*gpioWaveClear*] to clear all waveforms and added data.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Step 2. [*gpioWaveAdd**] calls to supply the waveform data.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Step 3. [*gpioWaveCreate*] to create the waveform and get a unique id
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Repeat steps 2 and 3 as needed.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Step 4. [*gpioWaveTxSend*] with the id of the waveform to transmit.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A waveform comprises one of more pulses. Each pulse consists of a
|
2014-08-01 10:30:25 +02:00
|
|
|
[*gpioPulse_t*] structure.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32_t gpioOn;
|
|
|
|
uint32_t gpioOff;
|
|
|
|
uint32_t usDelay;
|
|
|
|
} gpioPulse_t;
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The fields specify
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
1) the gpios to be switched on at the start of the pulse.
|
|
|
|
2) the gpios to be switched off at the start of the pulse.
|
2014-06-12 19:31:00 +02:00
|
|
|
3) the delay in microseconds before the next pulse.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Any or all the fields can be zero. It doesn't make any sense to
|
|
|
|
set all the fields to zero (the pulse will be ignored).
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
When a waveform is started each pulse is executed in order with the
|
|
|
|
specified delay between the pulse and the next.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the new waveform id if OK, otherwise PI_EMPTY_WAVEFORM,
|
|
|
|
PI_NO_WAVEFORM_ID, PI_TOO_MANY_CBS, or PI_TOO_MANY_OOL.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int gpioWaveDelete(unsigned wave_id);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function deletes all created waveforms with ids greater than or
|
|
|
|
equal to wave_id.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
wave_id: >=0, as returned by [*gpioWaveCreate*]
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Wave ids are allocated in order, 0, 1, 2, etc.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_WAVE_ID.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
|
|
|
int gpioWaveTxStart(unsigned wave_mode); /* DEPRECATED */
|
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function creates and then transmits a waveform. The mode
|
|
|
|
determines whether the waveform is sent once or cycles endlessly.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
wave_mode: 0 (PI_WAVE_MODE_ONE_SHOT), 1 (PI_WAVE_MODE_REPEAT)
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
This function is deprecated and should no longer be used. Use
|
2014-08-01 10:30:25 +02:00
|
|
|
[*gpioWaveCreate*] and [*gpioWaveTxSend*] instead.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the number of DMA control blocks in the waveform if OK,
|
|
|
|
otherwise PI_BAD_WAVE_MODE.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*F*/
|
|
|
|
int gpioWaveTxSend(unsigned wave_id, unsigned wave_mode);
|
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function transmits the waveform with id wave_id. The mode
|
|
|
|
determines whether the waveform is sent once or cycles endlessly.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
wave_id: >=0, as returned by [*gpioWaveCreate*]
|
|
|
|
wave_mode: 0 (PI_WAVE_MODE_ONE_SHOT), 1 (PI_WAVE_MODE_REPEAT)
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the number of DMA control blocks in the waveform if OK,
|
|
|
|
otherwise PI_BAD_WAVE_ID, or PI_BAD_WAVE_MODE.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int gpioWaveTxBusy(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function checks to see if a waveform is currently being
|
|
|
|
transmitted.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 1 if a waveform is currently being transmitted, otherwise 0.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int gpioWaveTxStop(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function aborts the transmission of the current waveform.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
This function is intended to stop a waveform started in repeat mode.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioWaveGetMicros(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function returns the length in microseconds of the current
|
|
|
|
waveform.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioWaveGetHighMicros(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function returns the length in microseconds of the longest waveform
|
2014-08-01 10:30:25 +02:00
|
|
|
created since [*gpioInitialise*] was called.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioWaveGetMaxMicros(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function returns the maximum possible size of a waveform in
|
|
|
|
microseconds.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioWaveGetPulses(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function returns the length in pulses of the current waveform.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioWaveGetHighPulses(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function returns the length in pulses of the longest waveform
|
2014-08-01 10:30:25 +02:00
|
|
|
created since [*gpioInitialise*] was called.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioWaveGetMaxPulses(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function returns the maximum possible size of a waveform in pulses.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioWaveGetCbs(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function returns the length in DMA control blocks of the current
|
|
|
|
waveform.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioWaveGetHighCbs(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function returns the length in DMA control blocks of the longest
|
2014-08-01 10:30:25 +02:00
|
|
|
waveform created since [*gpioInitialise*] was called.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioWaveGetMaxCbs(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function returns the maximum possible size of a waveform in DMA
|
|
|
|
control blocks.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSerialReadOpen(unsigned user_gpio, unsigned bbBaud);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
|
|
|
This function opens a gpio for bit bang reading of serial data.
|
|
|
|
|
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
bbBaud: 100-250000
|
|
|
|
. .
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, PI_BAD_WAVE_BAUD,
|
|
|
|
or PI_GPIO_IN_USE.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The serial data is returned in a cyclic buffer and is read using
|
2014-08-01 10:30:25 +02:00
|
|
|
[*gpioSerialRead*].
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
It is the caller's responsibility to read data from the cyclic buffer
|
|
|
|
in a timely fashion.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-04-19 13:19:29 +02:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int gpioSerialRead(unsigned user_gpio, void *buf, size_t bufSize);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function copies up to bufSize bytes of data read from the
|
2014-08-01 10:30:25 +02:00
|
|
|
bit bang serial cyclic buffer to the buffer starting at buf.
|
|
|
|
|
|
|
|
. .
|
|
|
|
user_gpio: 0-31, previously opened with [*gpioSerialReadOpen*]
|
|
|
|
buf: an array to receive the read bytes
|
|
|
|
bufSize: 0-
|
|
|
|
. .
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the number of bytes copied if OK, otherwise PI_BAD_USER_GPIO
|
|
|
|
or PI_NOT_SERIAL_GPIO.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-04-19 13:19:29 +02:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int gpioSerialReadClose(unsigned user_gpio);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
|
|
|
This function closes a gpio for bit bang reading of serial data.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31, previously opened with [*gpioSerialReadOpen*]
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, or PI_NOT_SERIAL_GPIO.
|
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cOpen(unsigned i2cBus, unsigned i2cAddr, unsigned i2cFlags);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This returns a handle for the device at the address on the I2C bus.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
i2cBus: 0-1
|
|
|
|
i2cAddr: 0x08-0x77
|
|
|
|
i2cFlags: 0
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
No flags are currently defined. This parameter should be set to zero.
|
|
|
|
|
|
|
|
Returns a handle (>=0) if OK, otherwise PI_BAD_I2C_BUS, PI_BAD_I2C_ADDR,
|
|
|
|
PI_BAD_FLAGS, PI_NO_HANDLE, or PI_I2C_OPEN_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cClose(unsigned handle);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This closes the I2C device associated with the handle.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cReadDevice(unsigned handle, char *buf, unsigned count);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This reads count bytes from the raw device into buf.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
buf: an array to receive the read data bytes
|
|
|
|
count: >0, the number of bytes to read
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns count (>0) if OK, otherwise PI_BAD_HANDLE, PI_BAD_PARAM, or
|
|
|
|
PI_I2C_READ_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cWriteDevice(unsigned handle, char *buf, unsigned count);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This writes count bytes from buf to the raw device.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
buf: an array containing the data bytes to write
|
|
|
|
count: >0, the number of bytes to write
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_PARAM, or
|
|
|
|
PI_I2C_WRITE_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cWriteQuick(unsigned handle, unsigned bit);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
|
|
|
This sends a single bit (in the Rd/Wr bit) to the device associated
|
|
|
|
with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
bit: 0-1, the value to write
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_PARAM, or
|
|
|
|
PI_I2C_WRITE_FAILED.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Quick command. smbus 2.0 5.5.1
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cWriteByte(unsigned handle, unsigned bVal);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
|
|
|
This sends a single byte to the device associated with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
bVal: 0-0xFF, the value to write
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_PARAM, or
|
|
|
|
PI_I2C_WRITE_FAILED.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Send byte. smbus 2.0 5.5.2
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cReadByte(unsigned handle);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
|
|
|
This reads a single byte from the device associated with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns the byte read (>=0) if OK, otherwise PI_BAD_HANDLE,
|
|
|
|
or PI_I2C_READ_FAILED.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Receive byte. smbus 2.0 5.5.3
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
|
|
|
int i2cWriteByteData(unsigned handle, unsigned i2cReg, unsigned bVal);
|
|
|
|
/*D
|
|
|
|
This writes a single byte to the specified register of the device
|
|
|
|
associated with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
i2cReg: 0-255, the register to write
|
|
|
|
bVal: 0-0xFF, the value to write
|
|
|
|
. .
|
|
|
|
|
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_PARAM, or
|
|
|
|
PI_I2C_WRITE_FAILED.
|
|
|
|
|
|
|
|
Write byte. smbus 2.0 5.5.4
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
|
|
|
int i2cWriteWordData(unsigned handle, unsigned i2cReg, unsigned wVal);
|
|
|
|
/*D
|
|
|
|
This writes a single 16 bit word to the specified register of the device
|
|
|
|
associated with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
i2cReg: 0-255, the register to write
|
|
|
|
wVal: 0-0xFFFF, the value to write
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_PARAM, or
|
|
|
|
PI_I2C_WRITE_FAILED.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Write word. smbus 2.0 5.5.4
|
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
|
|
|
int i2cReadByteData(unsigned handle, unsigned i2cReg);
|
|
|
|
/*D
|
|
|
|
This reads a single byte from the specified register of the device
|
|
|
|
associated with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
i2cReg: 0-255, the register to read
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns the byte read (>=0) if OK, otherwise PI_BAD_HANDLE,
|
|
|
|
PI_BAD_PARAM, or PI_I2C_READ_FAILED.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Read byte. smbus 2.0 5.5.5
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
|
|
|
int i2cReadWordData(unsigned handle, unsigned i2cReg);
|
|
|
|
/*D
|
|
|
|
This reads a single 16 bit word from the specified register of the device
|
|
|
|
associated with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
i2cReg: 0-255, the register to read
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns the word read (>=0) if OK, otherwise PI_BAD_HANDLE,
|
|
|
|
PI_BAD_PARAM, or PI_I2C_READ_FAILED.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Read word. smbus 2.0 5.5.5
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
|
|
|
int i2cProcessCall(unsigned handle, unsigned i2cReg, unsigned wVal);
|
|
|
|
/*D
|
|
|
|
This writes 16 bits of data to the specified register of the device
|
|
|
|
associated with handle and and reads 16 bits of data in return.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
i2cReg: 0-255, the register to write/read
|
|
|
|
wVal: 0-0xFFFF, the value to write
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns the word read (>=0) if OK, otherwise PI_BAD_HANDLE,
|
|
|
|
PI_BAD_PARAM, or PI_I2C_READ_FAILED.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Process call. smbus 2.0 5.5.6
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cWriteBlockData(
|
2014-08-01 10:30:25 +02:00
|
|
|
unsigned handle, unsigned i2cReg, char *buf, unsigned count);
|
|
|
|
/*D
|
|
|
|
This writes up to 32 bytes to the specified register of the device
|
|
|
|
associated with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
i2cReg: 0-255, the register to write
|
|
|
|
buf: an array with the data to send
|
|
|
|
count: 1-32, the number of bytes to write
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_PARAM, or
|
|
|
|
PI_I2C_WRITE_FAILED.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Block write. smbus 2.0 5.5.7
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
|
|
|
int i2cReadBlockData(unsigned handle, unsigned i2cReg, char *buf);
|
|
|
|
/*D
|
|
|
|
This reads a block of up to 32 bytes from the specified register of
|
|
|
|
the device associated with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
i2cReg: 0-255, the register to read
|
|
|
|
buf: an array to receive the read data
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
The amount of returned data is set by the device.
|
|
|
|
|
|
|
|
Returns the number of bytes read (>=0) if OK, otherwise PI_BAD_HANDLE,
|
|
|
|
PI_BAD_PARAM, or PI_I2C_READ_FAILED.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Block read. smbus 2.0 5.5.7
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cBlockProcessCall(
|
2014-08-01 10:30:25 +02:00
|
|
|
unsigned handle, unsigned i2cReg, char *buf, unsigned count);
|
|
|
|
/*D
|
|
|
|
This writes data bytes to the specified register of the device
|
2014-06-12 19:31:00 +02:00
|
|
|
associated with handle and reads a device specified number
|
2014-08-01 10:30:25 +02:00
|
|
|
of bytes of data in return.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
i2cReg: 0-255, the register to write/read
|
|
|
|
buf: an array with the data to send and to receive the read data
|
|
|
|
count: 1-32, the number of bytes to write
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns the number of bytes read (>=0) if OK, otherwise PI_BAD_HANDLE,
|
|
|
|
PI_BAD_PARAM, or PI_I2C_READ_FAILED.
|
|
|
|
|
|
|
|
The smbus 2.0 documentation states that a minimum of 1 byte may be
|
|
|
|
sent and a minimum of 1 byte may be received. The total number of
|
|
|
|
bytes sent/received must be 32 or less.
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
Block write-block read. smbus 2.0 5.5.8
|
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cReadI2CBlockData(
|
2014-08-01 10:30:25 +02:00
|
|
|
unsigned handle, unsigned i2cReg, char *buf, unsigned count);
|
|
|
|
/*D
|
|
|
|
This reads count bytes from the specified register of the device
|
2014-06-12 19:31:00 +02:00
|
|
|
associated with handle . The count may be 1-32.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
i2cReg: 0-255, the register to read
|
|
|
|
buf: an array to receive the read data
|
|
|
|
count: 1-32, the number of bytes to read
|
|
|
|
. .
|
|
|
|
|
|
|
|
Returns the number of bytes read (>0) if OK, otherwise PI_BAD_HANDLE,
|
2014-06-12 19:31:00 +02:00
|
|
|
PI_BAD_PARAM, or PI_I2C_READ_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int i2cWriteI2CBlockData(
|
2014-08-01 10:30:25 +02:00
|
|
|
unsigned handle, unsigned i2cReg, char *buf, unsigned count);
|
|
|
|
/*D
|
|
|
|
This writes 1 to 32 bytes to the specified register of the device
|
|
|
|
associated with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*i2cOpen*]
|
|
|
|
i2cReg: 0-255, the register to write
|
|
|
|
buf: the data to write
|
|
|
|
count: 1-32, the number of bytes to write
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_PARAM, or
|
|
|
|
PI_I2C_WRITE_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int spiOpen(unsigned spiChan, unsigned spiBaud, unsigned spiFlags);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-08-12 19:47:26 +02:00
|
|
|
This function returns a handle for the SPI device on the channel.
|
|
|
|
Data will be transferred at baud bits per second. The flags may
|
|
|
|
be used to modify the default behaviour of 4-wire operation, mode 0,
|
|
|
|
active low chip select.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-09-03 20:52:48 +02:00
|
|
|
An auxiliary SPI device is available on the B+ and may be
|
|
|
|
selected by setting the A bit in the flags. The auxiliary
|
|
|
|
device has 3 chip selects and a selectable word size in bits.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
2014-09-09 23:58:39 +02:00
|
|
|
spiChan: 0-1 (0-2 for B+ auxiliary device)
|
|
|
|
spiBaud: 32K-125M (values above 30M are unlikely to work)
|
2014-09-03 20:52:48 +02:00
|
|
|
spiFlags: see below
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
|
|
|
|
Returns a handle (>=0) if OK, otherwise PI_BAD_SPI_CHANNEL,
|
2014-09-03 20:52:48 +02:00
|
|
|
PI_BAD_SPI_SPEED, PI_BAD_FLAGS, PI_NO_AUX_SPI, or PI_SPI_OPEN_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-09-03 20:52:48 +02:00
|
|
|
spiFlags consists of the least significant 22 bits.
|
2014-08-12 19:47:26 +02:00
|
|
|
|
|
|
|
. .
|
2014-09-03 20:52:48 +02:00
|
|
|
21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
|
|
|
|
b b b b b b R T n n n n W A u2 u1 u0 p2 p1 p0 m m
|
2014-08-12 19:47:26 +02:00
|
|
|
. .
|
|
|
|
|
|
|
|
mm defines the SPI mode.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
. .
|
|
|
|
Mode POL PHA
|
|
|
|
0 0 0
|
|
|
|
1 0 1
|
|
|
|
2 1 0
|
|
|
|
3 1 1
|
|
|
|
. .
|
|
|
|
|
2014-09-03 20:52:48 +02:00
|
|
|
px is 0 if CEx is active low (default) and 1 for active high.
|
|
|
|
|
|
|
|
ux is 0 if the CEx gpio is reserved for SPI (default) and 1 otherwise.
|
|
|
|
|
|
|
|
A is 0 for the standard SPI device, 1 for the auxiliary SPI. The
|
|
|
|
auxiliary device is only present on the B+.
|
2014-08-12 19:47:26 +02:00
|
|
|
|
2014-09-03 20:52:48 +02:00
|
|
|
W is 0 if the device is not 3-wire, 1 if the device is 3-wire. Standard
|
|
|
|
SPI device only.
|
2014-08-12 19:47:26 +02:00
|
|
|
|
|
|
|
nnnn defines the number of bytes (0-15) to write before switching
|
|
|
|
the MOSI line to MISO to read data. This field is ignored
|
2014-09-03 20:52:48 +02:00
|
|
|
if W is not set. Standard SPI device only.
|
|
|
|
|
|
|
|
T is 1 if the least significant bit is transmitted on MOSI first, the
|
|
|
|
default (0) shifts the most significant bit out first. Auxiliary SPI
|
|
|
|
device only.
|
|
|
|
|
|
|
|
R is 1 if the least significant bit is received on MISO first, the
|
|
|
|
default (0) receives the most significant bit first. Auxiliary SPI
|
|
|
|
device only.
|
|
|
|
|
|
|
|
bbbbbb defines the word size in bits (0-32). The default (0)
|
|
|
|
sets 8 bits per word. Auxiliary SPI device only.
|
2014-08-12 19:47:26 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The other bits in flags should be set to zero.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int spiClose(unsigned handle);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This functions closes the SPI device identified by the handle.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*spiOpen*]
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int spiRead(unsigned handle, char *buf, unsigned count);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function reads count bytes of data from the SPI
|
|
|
|
device associated with the handle.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*spiOpen*]
|
|
|
|
buf: an array to receive the read data bytes
|
|
|
|
count: the number of bytes to read
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_SPI_COUNT, or
|
|
|
|
PI_SPI_XFER_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int spiWrite(unsigned handle, char *buf, unsigned count);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function writes count bytes of data from buf to the SPI
|
|
|
|
device associated with the handle.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*spiOpen*]
|
|
|
|
buf: the data bytes to write
|
|
|
|
count: the number of bytes to write
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_SPI_COUNT, or
|
|
|
|
PI_SPI_XFER_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int spiXfer(unsigned handle, char *txBuf, char *rxBuf, unsigned count);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function transfers count bytes of data from txBuf to the SPI
|
2014-08-01 10:30:25 +02:00
|
|
|
device associated with the handle. Simultaneously count bytes of
|
|
|
|
data are read from the device and placed in rxBuf.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*spiOpen*]
|
|
|
|
txBuf: the data bytes to write
|
|
|
|
rxBuf: the received data bytes
|
|
|
|
count: the number of bytes to transfer
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_SPI_COUNT, or
|
|
|
|
PI_SPI_XFER_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
|
|
|
int serOpen(char *sertty, unsigned serBaud, unsigned serFlags);
|
|
|
|
/*D
|
|
|
|
This function opens a serial device at a specified baud rate
|
|
|
|
with specified flags.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
sertty: the serial device to open, /dev/tty*
|
|
|
|
serBaud: the baud rate to use
|
|
|
|
serFlags: 0
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns a handle (>=0) if OK, otherwise PI_NO_HANDLE, or
|
|
|
|
PI_SER_OPEN_FAILED.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
No flags are currently defined. This parameter should be set to zero.
|
|
|
|
D*/
|
|
|
|
|
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int serClose(unsigned handle);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function closes the serial device associated with handle.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*serOpen*]
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int serWriteByte(unsigned handle, unsigned bVal);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function writes bVal to the serial port associated with handle.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*serOpen*]
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_PARAM, or
|
|
|
|
PI_SER_WRITE_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int serReadByte(unsigned handle);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function reads a byte from the serial port associated with handle.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*serOpen*]
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the read byte (>=0) if OK, otherwise PI_BAD_HANDLE,
|
|
|
|
PI_SER_READ_NO_DATA, or PI_SER_READ_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int serWrite(unsigned handle, char *buf, unsigned count);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function writes count bytes from buf to the the serial port
|
|
|
|
associated with handle.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*serOpen*]
|
|
|
|
buf: the array of bytes to write
|
|
|
|
count: the number of bytes to write
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_HANDLE, PI_BAD_PARAM, or
|
|
|
|
PI_SER_WRITE_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int serRead(unsigned handle, char *buf, unsigned count);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
|
|
|
This function reads up count bytes from the the serial port
|
2014-06-12 19:31:00 +02:00
|
|
|
associated with handle and writes them to buf.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to serial_open
|
|
|
|
buf: an array to receive the read data
|
|
|
|
count: the maximum number of bytes to read
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the number of bytes read (>0) if OK, otherwise PI_BAD_HANDLE,
|
|
|
|
PI_BAD_PARAM, PI_SER_READ_NO_DATA, or PI_SER_WRITE_FAILED.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int serDataAvailable(unsigned handle);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
|
|
|
This function returns the number of bytes available
|
|
|
|
to be read from the device associated with handle.
|
|
|
|
|
|
|
|
. .
|
|
|
|
handle: >=0, as returned by a call to [*serOpen*]
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns the number of bytes of data available (>=0) if OK,
|
|
|
|
otherwise PI_BAD_HANDLE.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-01-21 20:04:59 +01:00
|
|
|
int gpioTrigger(unsigned user_gpio, unsigned pulseLen, unsigned level);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function sends a trigger pulse to a gpio. The gpio is set to
|
|
|
|
level for pulseLen microseconds and then reset to not level.
|
2014-01-21 20:04:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
2014-08-17 20:53:43 +02:00
|
|
|
pulseLen: 1-100
|
2014-08-01 10:30:25 +02:00
|
|
|
level: 0,1
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, PI_BAD_LEVEL,
|
|
|
|
or PI_BAD_PULSELEN.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-01-21 20:04:59 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetWatchdog(unsigned user_gpio, unsigned timeout);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sets a watchdog for a gpio.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
user_gpio: 0-31
|
|
|
|
timeout: 0-60000
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_USER_GPIO or PI_BAD_WDOG_TIMEOUT.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The watchdog is nominally in milliseconds.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
One watchdog may be registered per gpio.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The watchdog may be cancelled by setting timeout to 0.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If no level change has been detected for the gpio for timeout
|
|
|
|
milliseconds:-
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
1) any registered alert function for the gpio is called with
|
|
|
|
the level set to PI_TIMEOUT.
|
|
|
|
2) any notification for the gpio has a report written to the
|
|
|
|
fifo with the flags set to indicate a watchdog timeout.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
void aFunction(int gpio, int level, uint32_t tick)
|
|
|
|
{
|
|
|
|
printf("gpio %d became %d at %d\n", gpio, level, tick);
|
|
|
|
}
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
// call aFunction whenever gpio 4 changes state
|
|
|
|
gpioSetAlertFunc(4, aFunction);
|
|
|
|
|
|
|
|
// or approximately every 5 millis
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSetWatchdog(4, 5);
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetGetSamplesFunc(gpioGetSamplesFunc_t f, uint32_t bits);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Registers a function to be called (a callback) every millisecond
|
|
|
|
with the latest gpio samples.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
f: the function to call
|
|
|
|
bits: the gpios of interest
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function is passed a pointer to the samples and the number
|
|
|
|
of samples.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Only one function can be registered.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The callback may be cancelled by passing NULL as the function.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The samples returned will be the union of bits, plus any active alerts,
|
|
|
|
plus any active notifications.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
e.g. if there are alerts for gpios 7, 8, and 9, notifications for gpios
|
|
|
|
8, 10, 23, 24, and bits is (1<<23)|(1<<17) then samples for gpios
|
|
|
|
7, 8, 9, 10, 17, 23, and 24 will be reported.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetGetSamplesFuncEx(
|
|
|
|
gpioGetSamplesFuncEx_t f, uint32_t bits, void *userdata);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Registers a function to be called (a callback) every millisecond
|
|
|
|
with the latest gpio samples.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
f: the function to call
|
|
|
|
bits: the gpios of interest
|
|
|
|
userdata: a pointer to arbitrary user data
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function is passed a pointer to the samples, the number
|
|
|
|
of samples, and the userdata pointer.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Only one of [*gpioGetSamplesFunc*] or [*gpioGetSamplesFuncEx*] can be
|
2014-06-12 19:31:00 +02:00
|
|
|
registered.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
See [*gpioSetGetSamplesFunc*] for further details.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetTimerFunc(unsigned timer, unsigned millis, gpioTimerFunc_t f);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Registers a function to be called (a callback) every millis milliseconds.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
timer: 0-9
|
|
|
|
millis: 10-60000
|
|
|
|
f: the function to call
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_TIMER, PI_BAD_MS, or PI_TIMER_FAILED.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
10 timers are supported numbered 0 to 9.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
One function may be registered per timer.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The timer may be cancelled by passing NULL as the function.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
void bFunction(void)
|
|
|
|
{
|
|
|
|
printf("two seconds have elapsed\n");
|
|
|
|
}
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
// call bFunction every 2000 milliseconds
|
|
|
|
gpioSetTimerFunc(0, 2000, bFunction);
|
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetTimerFuncEx(
|
|
|
|
unsigned timer, unsigned millis, gpioTimerFuncEx_t f, void *userdata);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Registers a function to be called (a callback) every millis milliseconds.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
timer: 0-9.
|
|
|
|
millis: 10-60000
|
|
|
|
f: the function to call
|
|
|
|
userdata: a pointer to arbitrary user data
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_TIMER, PI_BAD_MS, or PI_TIMER_FAILED.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function is passed the userdata pointer.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Only one of [*gpioSetTimerFunc*] or [*gpioSetTimerFuncEx*] can be
|
2014-06-12 19:31:00 +02:00
|
|
|
registered per timer.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
See [*gpioSetTimerFunc*] for further details.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
pthread_t *gpioStartThread(gpioThreadFunc_t f, void *arg);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Starts a new thread of execution with f as the main routine.
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
f: the main function for the new thread
|
|
|
|
arg: a pointer to arbitrary user data
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns a pointer to pthread_t if OK, otherwise NULL.
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function is passed the single argument arg.
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The thread can be cancelled by passing the pointer to pthread_t to
|
2014-08-01 10:30:25 +02:00
|
|
|
[*gpioStopThread*].
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <pigpio.h>
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
void *myfunc(void *arg)
|
|
|
|
{
|
|
|
|
while (1)
|
2014-01-12 22:31:59 +01:00
|
|
|
{
|
2014-06-12 19:31:00 +02:00
|
|
|
printf("%s\n", arg);
|
|
|
|
sleep(1);
|
2014-01-12 22:31:59 +01:00
|
|
|
}
|
2014-06-12 19:31:00 +02:00
|
|
|
}
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
pthread_t *p1, *p2, *p3;
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
if (gpioInitialise() < 0) return 1;
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
p1 = gpioStartThread(myfunc, "thread 1"); sleep(3);
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
p2 = gpioStartThread(myfunc, "thread 2"); sleep(3);
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
p3 = gpioStartThread(myfunc, "thread 3"); sleep(3);
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioStopThread(p3); sleep(3);
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioStopThread(p2); sleep(3);
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioStopThread(p1); sleep(3);
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioTerminate();
|
|
|
|
}
|
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-01-12 22:31:59 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-01-12 22:31:59 +01:00
|
|
|
void gpioStopThread(pthread_t *pth);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Cancels the thread pointed at by pth.
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
pth: a thread pointer returned by [*gpioStartThread*]
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
No value is returned.
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The thread to be stopped should have been started with [*gpioStartThread*].
|
|
|
|
D*/
|
2014-01-12 22:31:59 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-01-21 20:04:59 +01:00
|
|
|
int gpioStoreScript(char *script);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function stores a null terminated script for later execution.
|
2014-01-21 20:04:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
script: the text of the script
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function returns a script id if the script is valid,
|
|
|
|
otherwise PI_BAD_SCRIPT.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-01-21 20:04:59 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
|
|
|
int gpioRunScript(unsigned script_id, unsigned numPar, uint32_t *param);
|
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function runs a stored script.
|
2014-01-21 20:04:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
script_id: >=0, as returned by [*gpioStoreScript*]
|
|
|
|
numPar: 0-10, the number of parameters
|
|
|
|
param: an array of parameters
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function returns 0 if OK, otherwise PI_BAD_SCRIPT_ID, or
|
|
|
|
PI_TOO_MANY_PARAM.
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
param is an array of up to 10 parameters which may be referenced in
|
2014-08-01 10:30:25 +02:00
|
|
|
the script as p0 to p9.
|
|
|
|
D*/
|
2014-03-13 16:50:23 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int gpioScriptStatus(unsigned script_id, uint32_t *param);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function returns the run status of a stored script as well as
|
|
|
|
the current values of parameters 0 to 9.
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
script_id: >=0, as returned by [*gpioStoreScript*]
|
|
|
|
param: an array to hold the returned 10 parameters
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function returns greater than or equal to 0 if OK,
|
|
|
|
otherwise PI_BAD_SCRIPT_ID.
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The run status may be
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
PI_SCRIPT_INITING
|
2014-06-12 19:31:00 +02:00
|
|
|
PI_SCRIPT_HALTED
|
|
|
|
PI_SCRIPT_RUNNING
|
|
|
|
PI_SCRIPT_WAITING
|
|
|
|
PI_SCRIPT_FAILED
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The current value of script parameters 0 to 9 are returned in param.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-01-21 20:04:59 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int gpioStopScript(unsigned script_id);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function stops a running script.
|
2014-01-21 20:04:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
script_id: >=0, as returned by [*gpioStoreScript*]
|
|
|
|
. .
|
2014-01-21 20:04:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The function returns 0 if OK, otherwise PI_BAD_SCRIPT_ID.
|
|
|
|
D*/
|
2014-01-21 20:04:59 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int gpioDeleteScript(unsigned script_id);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function deletes a stored script.
|
2014-01-21 20:04:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
script_id: >=0, as returned by [*gpioStoreScript*]
|
|
|
|
. .
|
2014-01-21 20:04:59 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The function returns 0 if OK, otherwise PI_BAD_SCRIPT_ID.
|
|
|
|
D*/
|
2014-01-12 22:31:59 +01:00
|
|
|
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetSignalFunc(unsigned signum, gpioSignalFunc_t f);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Registers a function to be called (a callback) when a signal occurs.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
signum: 0-63
|
|
|
|
f: the callback function
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_SIGNUM.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function is passed the signal number.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
One function may be registered per signal.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The callback may be cancelled by passing NULL.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
By default all signals are treated as fatal and cause the library
|
|
|
|
to call gpioTerminate and then exit.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSetSignalFuncEx(
|
|
|
|
unsigned signum, gpioSignalFuncEx_t f, void *userdata);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Registers a function to be called (a callback) when a signal occurs.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
signum: 0-63
|
|
|
|
f: the callback function
|
|
|
|
userdata: a pointer to arbitrary user data
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_SIGNUM.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The function is passed the signal number and the userdata pointer.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Only one of gpioSetSignalFunc or gpioSetSignalFuncEx can be
|
|
|
|
registered per signal.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
See gpioSetSignalFunc for further details.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
uint32_t gpioRead_Bits_0_31(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the current level of gpios 0-31.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
uint32_t gpioRead_Bits_32_53(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the current level of gpios 32-53.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioWrite_Bits_0_31_Clear(uint32_t bits);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Clears gpios 0-31 if the corresponding bit in bits is set.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
bits: a bit mask of gpios to clear
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
// To clear (set to 0) gpios 4, 7, and 15
|
|
|
|
gpioWrite_Bits_0_31_Clear( (1<<4) | (1<<7) | (1<<15) );
|
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioWrite_Bits_32_53_Clear(uint32_t bits);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Clears gpios 32-53 if the corresponding bit (0-21) in bits is set.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
bits: a bit mask of gpios to clear
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Returns 0 if OK.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioWrite_Bits_0_31_Set(uint32_t bits);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sets gpios 0-31 if the corresponding bit in bits is set.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
bits: a bit mask of gpios to set
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Returns 0 if OK.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioWrite_Bits_32_53_Set(uint32_t bits);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sets gpios 32-53 if the corresponding bit (0-21) in bits is set.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
bits: a bit mask of gpios to set
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
// To set (set to 1) gpios 32, 40, and 53
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioWrite_Bits_32_53_Set((1<<(32-32)) | (1<<(40-32)) | (1<<(53-32)));
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioTime(unsigned timetype, int *seconds, int *micros);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Updates the seconds and micros variables with the current time.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
timetype: 0 (relative), 1 (absolute)
|
|
|
|
seconds: a pointer to an int to hold seconds
|
|
|
|
micros: a pointer to an int to hold microseconds
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_TIMETYPE.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If timetype is PI_TIME_ABSOLUTE updates seconds and micros with the
|
|
|
|
number of seconds and microseconds since the epoch (1st January 1970).
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If timetype is PI_TIME_RELATIVE updates seconds and micros with the
|
|
|
|
number of seconds and microseconds since the library was initialised.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
int secs, mics;
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
// print the number of seconds since the library was started
|
|
|
|
gpioTime(PI_TIME_RELATIVE, &secs, &mics);
|
|
|
|
printf("library started %d.%03d seconds ago\n", secs, mics/1000);
|
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioSleep(unsigned timetype, int seconds, int micros);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sleeps for the number of seconds and microseconds specified by seconds
|
|
|
|
and micros.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
timetype: 0 (relative), 1 (absolute)
|
|
|
|
seconds: seconds to sleep
|
|
|
|
micros: microseconds to sleep
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns 0 if OK, otherwise PI_BAD_TIMETYPE, PI_BAD_SECONDS,
|
|
|
|
or PI_BAD_MICROS.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If timetype is PI_TIME_ABSOLUTE the sleep ends when the number of seconds
|
|
|
|
and microseconds since the epoch (1st January 1970) has elapsed. System
|
|
|
|
clock changes are taken into account.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If timetype is PI_TIME_RELATIVE the sleep is for the specified number
|
|
|
|
of seconds and microseconds. System clock changes do not effect the
|
|
|
|
sleep length.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
For short delays (say, 50 microseonds or less) use [*gpioDelay*].
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
gpioSleep(PI_TIME_RELATIVE, 2, 500000); // sleep for 2.5 seconds
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSleep(PI_TIME_RELATIVE, 0, 100000); // sleep for 0.1 seconds
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
gpioSleep(PI_TIME_RELATIVE, 60, 0); // sleep for one minute
|
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
uint32_t gpioDelay(uint32_t micros);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Delays for at least the number of microseconds specified by micros.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
micros: the number of microseconds to sleep
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the actual length of the delay in microseconds.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-09-03 20:52:48 +02:00
|
|
|
Delays of 100 microseconds or less use busy waits.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
uint32_t gpioTick(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the current system tick.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Tick is the number of microseconds since system boot.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
As tick is an unsigned 32 bit quantity it wraps around after
|
|
|
|
2^32 microseconds, which is approximately 1 hour 12 minutes.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
You don't need to worry about the wrap around as long as you
|
|
|
|
take a tick (uint32_t) from another tick, i.e. the following
|
|
|
|
code will always provide the correct difference.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
...
|
|
|
|
uint32_t startTick, endTick;
|
|
|
|
int diffTick;
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
startTick = gpioTick();
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
// do some processing
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
endTick = gpioTick();
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
diffTick = endTick - startTick;
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
printf("some processing took %d microseconds\n", diffTick);
|
|
|
|
...
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
unsigned gpioHardwareRevision(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the hardware revision.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If the hardware revision can not be found or is not a valid hexadecimal
|
|
|
|
number the function returns 0.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The hardware revision is the last 4 characters on the Revision line of
|
|
|
|
/proc/cpuinfo.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The revision number can be used to determine the assignment of gpios
|
|
|
|
to pins.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
There are at least three types of board.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Type 1 has gpio 0 on P1-3, gpio 1 on P1-5, and gpio 21 on P1-13.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Type 2 has gpio 2 on P1-3, gpio 3 on P1-5, gpio 27 on P1-13, and
|
|
|
|
gpios 28-31 on P5.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Type 3 has a 40 pin connector rather than the 26 pin connector of
|
|
|
|
the earlier boards. Gpios 0 to 27 are brought out to the connector.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Type 1 boards have hardware revision numbers of 2 and 3.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Type 2 boards have hardware revision numbers of 4, 5, 6, and 15.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Type 3 boards have hardware revision number 16.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
for "Revision : 0002" the function returns 2.
|
|
|
|
for "Revision : 000f" the function returns 15.
|
|
|
|
for "Revision : 000g" the function returns 0.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-01-12 22:31:59 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-01-12 22:31:59 +01:00
|
|
|
unsigned gpioVersion(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the pigpio version.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
|
|
|
int gpioCfgBufferSize(unsigned cfgMillis);
|
|
|
|
/*D
|
|
|
|
Configures pigpio to buffer cfgMillis milliseconds of gpio samples.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
cfgMillis: 100-10000
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The default setting is 120 milliseconds.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The intention is to allow for bursts of data and protection against
|
|
|
|
other processes hogging cpu time.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
I haven't seen a process locked out for more than 100 milliseconds.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Making the buffer bigger uses a LOT of memory at the more frequent
|
|
|
|
sampling rates as shown in the following table in MBs.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
buffer milliseconds
|
|
|
|
120 250 500 1sec 2sec 4sec 8sec
|
|
|
|
|
|
|
|
1 16 31 55 107 --- --- ---
|
|
|
|
2 10 18 31 55 107 --- ---
|
|
|
|
sample 4 8 12 18 31 55 107 ---
|
|
|
|
rate 5 8 10 14 24 45 87 ---
|
|
|
|
(us) 8 6 8 12 18 31 55 107
|
|
|
|
10 6 8 10 14 24 45 87
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioCfgClock(
|
2014-08-01 10:30:25 +02:00
|
|
|
unsigned cfgMicros, unsigned cfgPeripheral, unsigned cfgSource);
|
|
|
|
/*D
|
|
|
|
Configures pigpio to use a particualar sample rate timed by a specified
|
|
|
|
peripheral and clock source.
|
|
|
|
|
|
|
|
. .
|
|
|
|
cfgMicros: 1, 2, 4, 5, 8, 10
|
|
|
|
cfgPeripheral: 0 (PWM), 1 (PCM)
|
|
|
|
cfgSource: 0 (OSC), 1 (PLLD)
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The timings are provided by the specified peripheral (PWM or PCM)
|
|
|
|
using the frequency source (OSC or PLLD).
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The default setting is 5 microseconds using the PCM peripheral
|
|
|
|
with the PLLD source.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The approximate CPU percentage used for each sample rate is:
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
sample cpu
|
|
|
|
rate %
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
1 25
|
|
|
|
2 16
|
|
|
|
4 11
|
|
|
|
5 10
|
|
|
|
8 15
|
|
|
|
10 14
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A sample rate of 5 microseconds seeems to be the sweet spot.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioCfgDMAchannel(unsigned DMAchannel); /* DEPRECATED */
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Configures pigpio to use the specified DMA channel.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
DMAchannel: 0-14
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The default setting is to use channel 14.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioCfgDMAchannels(
|
|
|
|
unsigned primaryChannel, unsigned secondaryChannel);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Configures pigpio to use the specified DMA channels.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
primaryChannel: 0-14
|
|
|
|
secondaryChannel: 0-6
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The default setting is to use channel 14 for the primary channel and
|
|
|
|
channel 5 for the secondary channel.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:32:49 +01:00
|
|
|
int gpioCfgPermissions(uint64_t updateMask);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Configures pigpio to only allow updates (writes or mode changes) for the
|
|
|
|
gpios specified by the mask.
|
|
|
|
|
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
updateMask: bit (1<<n) is set for each gpio n which may be updated
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The default setting depends upon the board revision (Type 1, 2, or 3).
|
|
|
|
The user gpios are added to the mask. If the board revision is not
|
|
|
|
recognised then gpios 0-31 are allowed.
|
|
|
|
|
|
|
|
Unknown board @ PI_DEFAULT_UPDATE_MASK_R0 @ 0xFFFFFFFF
|
|
|
|
Type 1 board @ PI_DEFAULT_UPDATE_MASK_R1 @ 0x03E6CF93
|
|
|
|
Type 2 board @ PI_DEFAULT_UPDATE_MASK_R2 @ 0xFBC6CF9C
|
|
|
|
Type 3 board @ PI_DEFAULT_UPDATE_MASK_R3 @ 0x0FFFFFFC
|
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioCfgSocketPort(unsigned port);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Configures pigpio to use the specified socket port.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
port: 1024-32000
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The default setting is to use port 8888.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2013-12-12 11:27:22 +01:00
|
|
|
int gpioCfgInterfaces(unsigned ifFlags);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Configures pigpio support of the fifo and socket interfaces.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
ifFlags: 0-3
|
|
|
|
. .
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The default setting (0) is that both interfaces are enabled.
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Or in PI_DISABLE_FIFO_IF to disable the pipe interface.
|
|
|
|
Or in PI_DISABLE_SOCK_IF to disable the socket interface.
|
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int gpioCfgInternals(unsigned cfgWhat, int cfgVal);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Used to tune internal settings.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
cfgWhat: see source code
|
|
|
|
cfgVal: see source code
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
int rawWaveAddSPI(
|
|
|
|
rawSPI_t *spi,
|
2014-03-13 16:50:23 +01:00
|
|
|
unsigned offset,
|
2014-06-12 19:31:00 +02:00
|
|
|
unsigned spiSS,
|
|
|
|
char *buf,
|
|
|
|
unsigned spiTxBits,
|
|
|
|
unsigned spiBitFirst,
|
|
|
|
unsigned spiBitLast,
|
|
|
|
unsigned spiBits);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function adds a waveform representing SPI data to the
|
|
|
|
existing waveform (if any).
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
spi: a pointer to a spi object
|
|
|
|
offset: microseconds from the start of the waveform
|
|
|
|
spiSS: the slave select gpio
|
|
|
|
buf: the bits to transmit, most significant bit first
|
|
|
|
spiTxBits: the number of bits to write
|
|
|
|
spiBitFirst: the first bit to read
|
|
|
|
spiBitLast: the last bit to read
|
|
|
|
spiBits: the number of bits to transfer
|
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
Returns the new total number of pulses in the current waveform if OK,
|
|
|
|
otherwise PI_BAD_USER_GPIO, PI_BAD_SER_OFFSET, or PI_TOO_MANY_PULSES.
|
|
|
|
|
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 14:00:51 +02:00
|
|
|
int rawWaveAddGeneric(unsigned numPulses, rawWave_t *pulses);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
This function adds a number of pulses to the current waveform.
|
2014-04-19 14:00:51 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
numPulses: the number of pulses
|
|
|
|
pulses: the array containing the pulses
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the new total number of pulses in the current waveform if OK,
|
|
|
|
otherwise PI_TOO_MANY_PULSES.
|
2014-04-19 14:00:51 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The advantage of this function over gpioWaveAddGeneric is that it
|
|
|
|
allows the setting of the flags field.
|
2014-04-19 14:00:51 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The pulses are interleaved in time order within the existing waveform
|
|
|
|
(if any).
|
2014-04-19 14:00:51 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Merging allows the waveform to be built in parts, that is the settings
|
|
|
|
for gpio#1 can be added, and then gpio#2 etc.
|
2014-04-19 14:00:51 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
If the added waveform is intended to start after or within the existing
|
|
|
|
waveform then the first pulse should consist of a delay.
|
2014-04-19 14:00:51 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-04-19 14:00:51 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
unsigned rawWaveCB(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the number of the cb being currently output.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
|
|
|
rawCbs_t *rawWaveCBAdr(int cbNum);
|
|
|
|
/*D
|
|
|
|
Return the Linux address of contol block cbNum.
|
|
|
|
|
|
|
|
. .
|
|
|
|
cbNum: the cb of interest
|
|
|
|
. .
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
uint32_t rawWaveGetOut(int pos);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Gets the wave output parameter stored at pos.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
pos: the position of interest.
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
|
|
|
void rawWaveSetOut(int pos, uint32_t lVal);
|
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sets the wave output parameter stored at pos to value.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
pos: the position of interest
|
|
|
|
lVal: the value to write
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
uint32_t rawWaveGetIn(int pos);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Gets the wave input value parameter stored at pos.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
pos: the position of interest
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-03-13 16:50:23 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
|
|
|
void rawWaveSetIn(int pos, uint32_t lVal);
|
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sets the wave input value stored at pos to value.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
pos: the position of interest
|
|
|
|
lVal: the value to write
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-09-09 23:58:39 +02:00
|
|
|
/*F*/
|
|
|
|
rawWaveInfo_t rawWaveInfo(int wave_id);
|
|
|
|
/*D
|
|
|
|
Gets details about the wave with id wave_id.
|
|
|
|
|
|
|
|
. .
|
|
|
|
wave_id: the wave of interest
|
|
|
|
. .
|
|
|
|
|
|
|
|
Not intended for general use.
|
|
|
|
D*/
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
int getBitInBytes(int bitPos, char *buf, int numBits);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Returns the value of the bit bitPos bits from the start of buf. Returns
|
|
|
|
0 if bitPos is greater than or equal to numBits.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
bitPos: bit index from the start of buf
|
|
|
|
buf: array of bits
|
|
|
|
numBits: number of valid bits in buf
|
|
|
|
. .
|
|
|
|
|
|
|
|
D*/
|
|
|
|
|
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
void putBitInBytes(int bitPos, char *buf, int bit);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Sets the bit bitPos bits from the start of buf to bit.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
bitPos: bit index from the start of buf
|
|
|
|
buf: array of bits
|
|
|
|
bit: 0-1, value to set
|
|
|
|
. .
|
|
|
|
|
|
|
|
D*/
|
|
|
|
|
|
|
|
/*F*/
|
2014-03-13 16:50:23 +01:00
|
|
|
double time_time(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Return the current time in seconds since the Epoch.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-03-13 16:50:23 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-03-13 16:50:23 +01:00
|
|
|
void time_sleep(double seconds);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Delay execution for a given number of seconds
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
. .
|
|
|
|
seconds: the number of seconds to sleep
|
|
|
|
. .
|
|
|
|
D*/
|
2014-03-13 16:50:23 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-04-19 13:19:29 +02:00
|
|
|
void rawDumpWave(void);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Used to print a readable version of the current waveform to stderr.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2014-03-13 16:50:23 +01:00
|
|
|
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*F*/
|
2014-06-12 19:31:00 +02:00
|
|
|
void rawDumpScript(unsigned script_id);
|
2014-08-01 10:30:25 +02:00
|
|
|
/*D
|
2014-06-12 19:31:00 +02:00
|
|
|
Used to print a readable version of a script to stderr.
|
2014-04-19 13:19:29 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
script_id: >=0, a script_id returned by [*gpioStoreScript*]
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Not intended for general use.
|
2014-08-01 10:30:25 +02:00
|
|
|
D*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*PARAMS
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
*arg::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A pointer to a void object passed to a thread started by gpioStartThread.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
bbBaud::
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The baud rate used for the transmission and reception of bit banged
|
|
|
|
serial data.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
2014-06-12 19:31:00 +02:00
|
|
|
PI_WAVE_MIN_BAUD 100
|
|
|
|
PI_WAVE_MAX_BAUD 250000
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
|
|
|
|
bit::
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
A value of 0 or 1.
|
|
|
|
|
|
|
|
bitPos::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A bit position within a byte or word. The least significant bit is
|
|
|
|
position 0.
|
|
|
|
|
|
|
|
bits::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A value used to select gpios. If bit n of bits is set then gpio n is
|
|
|
|
selected.
|
|
|
|
|
|
|
|
A convenient way to set bit n is to or in (1<<n).
|
|
|
|
|
|
|
|
e.g. to select bits 5, 9, 23 you could use (1<<5) | (1<<9) | (1<<23).
|
|
|
|
|
|
|
|
*buf::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A buffer to hold data being sent or being received.
|
|
|
|
|
|
|
|
bufSize::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The size in bytes of a buffer.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
bVal::0-255 (Hex 0x0-0xFF, Octal 0-0377)
|
|
|
|
|
|
|
|
An 8-bit byte value.
|
|
|
|
|
|
|
|
cbNum::
|
|
|
|
|
|
|
|
A number identifying a DMA contol block.
|
|
|
|
|
|
|
|
cfgMicros::
|
|
|
|
|
|
|
|
The gpio sample rate in microseconds. The default is 5us, or 200 thousand
|
|
|
|
samples per second.
|
|
|
|
|
|
|
|
cfgMillis:: 100-10000
|
|
|
|
|
|
|
|
The size of the sample buffer in milliseconds. Gnerally this should be
|
|
|
|
left at the default of 120ms. If you expect intense bursts of signals it
|
|
|
|
might be necessary to increase the buffer size.
|
|
|
|
|
|
|
|
cfgPeripheral::
|
|
|
|
|
|
|
|
One of the PWM or PCM peripherals used to pace DMA transfers for timing
|
|
|
|
purposes.
|
|
|
|
|
|
|
|
cfgSource::
|
|
|
|
|
|
|
|
The clock source used for the timing of DMA transfers. May be the 19.2MHz
|
|
|
|
crystal or the 500MHz PLL.
|
|
|
|
. .
|
|
|
|
PI_CLOCK_OSC 0
|
|
|
|
PI_CLOCK_PLLD 1
|
|
|
|
. .
|
|
|
|
|
|
|
|
cfgVal::
|
|
|
|
|
|
|
|
A number specifying the value of a configuration item. See [*cfgWhat*].
|
|
|
|
|
|
|
|
cfgWhat::
|
|
|
|
|
|
|
|
A number specifying a configuration item.
|
|
|
|
|
|
|
|
562484977: print enhanced statistics at termination.
|
|
|
|
984762879: set the initial debug level.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
char::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A single character, an 8 bit quantity able to store 0-255.
|
|
|
|
|
|
|
|
count::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
The number of bytes to be transferred in an I2C, SPI, or Serial
|
2014-06-12 19:31:00 +02:00
|
|
|
command.
|
|
|
|
|
|
|
|
DMAchannel::0-14
|
2014-08-01 10:30:25 +02:00
|
|
|
. .
|
|
|
|
PI_MIN_DMA_CHANNEL 0
|
|
|
|
PI_MAX_DMA_CHANNEL 14
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
double::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A floating point number.
|
|
|
|
|
|
|
|
dutycycle::0-range
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A number representing the ratio of on time to off time for PWM.
|
|
|
|
|
|
|
|
The number may vary between 0 and range (default 255) where
|
2014-08-01 10:30:25 +02:00
|
|
|
0 is off and range is fully on.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
f::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A function.
|
|
|
|
|
|
|
|
frequency::0-
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The number of times a gpio is swiched on and off per second. This
|
|
|
|
can be set per gpio and may be as little as 5Hz or as much as
|
|
|
|
40KHz. The gpio will be on for a proportion of the time as defined
|
|
|
|
by its dutycycle.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpio::
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A Broadcom numbered gpio, in the range 0-53.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioAlertFunc_t::
|
|
|
|
. .
|
|
|
|
typedef void (*gpioAlertFunc_t) (int gpio, int level, uint32_t tick);
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
gpioAlertFuncEx_t::
|
|
|
|
. .
|
|
|
|
typedef void (*gpioAlertFuncEx_t)
|
|
|
|
(int gpio, int level, uint32_t tick, void *userdata);
|
|
|
|
. .
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioCfg*::
|
|
|
|
|
|
|
|
One of
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
[*gpioCfgBufferSize*]
|
|
|
|
[*gpioCfgClock*]
|
|
|
|
[*gpioCfgDMAchannel*]
|
|
|
|
[*gpioCfgDMAchannels*]
|
|
|
|
[*gpioCfgPermissions*]
|
|
|
|
[*gpioCfgInterfaces*]
|
|
|
|
[*gpioCfgInternals*]
|
|
|
|
[*gpioCfgSocketPort*]
|
|
|
|
|
|
|
|
gpioGetSamplesFunc_t::
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
typedef void (*gpioGetSamplesFunc_t)
|
|
|
|
(const gpioSample_t *samples, int numSamples);
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
|
|
|
|
gpioGetSamplesFuncEx_t::
|
|
|
|
. .
|
|
|
|
typedef void (*gpioGetSamplesFuncEx_t)
|
|
|
|
(const gpioSample_t *samples, int numSamples, void *userdata);
|
|
|
|
. .
|
|
|
|
|
|
|
|
gpioPulse_t::
|
|
|
|
. .
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32_t gpioOn;
|
|
|
|
uint32_t gpioOff;
|
|
|
|
uint32_t usDelay;
|
|
|
|
} gpioPulse_t;
|
|
|
|
. .
|
|
|
|
|
2014-09-03 20:52:48 +02:00
|
|
|
gpioSample_t::
|
|
|
|
. .
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32_t tick;
|
|
|
|
uint32_t level;
|
|
|
|
} gpioSample_t;
|
|
|
|
. .
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSignalFunc_t::
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
typedef void (*gpioSignalFunc_t) (int signum);
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioSignalFuncEx_t::
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
typedef void (*gpioSignalFuncEx_t) (int signum, void *userdata);
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
|
|
|
|
gpioThreadFunc_t::
|
|
|
|
. .
|
|
|
|
typedef void *(gpioThreadFunc_t) (void *);
|
|
|
|
. .
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioTimerFunc_t::
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
typedef void (*gpioTimerFunc_t) (void);
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioTimerFuncEx_t::
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
typedef void (*gpioTimerFuncEx_t) (void *userdata);
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
gpioWaveAdd*::
|
|
|
|
|
|
|
|
One of
|
|
|
|
|
|
|
|
[*gpioWaveAddNew*]
|
|
|
|
[*gpioWaveAddGeneric*]
|
|
|
|
[*gpioWaveAddSerial*]
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
handle::0-
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A number referencing an object opened by one of
|
|
|
|
|
|
|
|
[*i2cOpen*]
|
|
|
|
[*gpioNotifyOpen*]
|
|
|
|
[*serOpen*]
|
|
|
|
[*spiOpen*]
|
|
|
|
|
|
|
|
i2cAddr::0x08-0x77
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The address of a device on the I2C bus (0x08 - 0x77)
|
|
|
|
|
|
|
|
i2cBus::0-1
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
An I2C bus, 0 or 1.
|
|
|
|
|
|
|
|
i2cFlags::0
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Flags which modify an I2C open command. None are currently defined.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
i2cReg:: 0-255
|
|
|
|
|
|
|
|
A register of an I2C device.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
ifFlags::0-3
|
|
|
|
. .
|
|
|
|
PI_DISABLE_FIFO_IF 1
|
|
|
|
PI_DISABLE_SOCK_IF 2
|
|
|
|
. .
|
|
|
|
|
|
|
|
int::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A whole number, negative or positive.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
level::
|
|
|
|
|
|
|
|
The level of a gpio. Low or High.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
PI_OFF 0
|
|
|
|
PI_ON 1
|
|
|
|
|
|
|
|
PI_CLEAR 0
|
|
|
|
PI_SET 1
|
|
|
|
|
|
|
|
PI_LOW 0
|
|
|
|
PI_HIGH 1
|
|
|
|
. .
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
There is one exception. If a watchdog expires on a gpio the level will be
|
|
|
|
reported as PI_TIMEOUT. See [*gpioSetWatchdog*].
|
|
|
|
|
|
|
|
. .
|
|
|
|
PI_TIMEOUT 2
|
|
|
|
. .
|
|
|
|
|
|
|
|
|
|
|
|
lVal::0-4294967295 (Hex 0x0-0xFFFFFFFF, Octal 0-37777777777)
|
|
|
|
|
|
|
|
A 32-bit word value.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
*micros::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A value representing microseconds.
|
|
|
|
|
|
|
|
micros::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A value representing microseconds.
|
|
|
|
|
|
|
|
millis::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A value representing milliseconds.
|
|
|
|
|
|
|
|
mode::0-7
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
The operational mode of a gpio, normally INPUT or OUTPUT.
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
PI_INPUT 0
|
|
|
|
PI_OUTPUT 1
|
|
|
|
PI_ALT0 4
|
|
|
|
PI_ALT1 5
|
|
|
|
PI_ALT2 6
|
|
|
|
PI_ALT3 7
|
|
|
|
PI_ALT4 3
|
|
|
|
PI_ALT5 2
|
|
|
|
. .
|
|
|
|
|
|
|
|
numBits::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The number of bits stored in a buffer.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
numChar::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The number of characters in a string (used when the string might contain
|
|
|
|
null characters, which would normally terminate the string).
|
|
|
|
|
|
|
|
numPar:: 0-10
|
|
|
|
|
|
|
|
The number of parameters passed to a script.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
numPulses::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The number of pulses to be added to a waveform.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
offset::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The associated data starts this number of microseconds from the start of
|
|
|
|
tghe waveform.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
*param::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
An array of script parameters.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
port:: 1024-32000
|
|
|
|
|
|
|
|
The port used to bind to the pigpio socket. Defaults to 8888.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
pos::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The position of an item.
|
|
|
|
|
|
|
|
primaryChannel:: 0-14
|
|
|
|
|
|
|
|
The DMA channel used to time the sampling of gpios and to time servo and
|
|
|
|
PWM pulses.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
*pth::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
A thread identifier, returned by [*gpioStartThread*].
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
pthread_t::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
A thread identifier.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
pud::0-2
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
The setting of the pull up/down resistor for a gpio, which may be off,
|
|
|
|
pull-up, or pull-down.
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
PI_PUD_OFF 0
|
|
|
|
PI_PUD_DOWN 1
|
|
|
|
PI_PUD_UP 2
|
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
pulseLen::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-08-17 20:53:43 +02:00
|
|
|
1-100, the length of a trigger pulse in microseconds.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
*pulses::
|
|
|
|
|
2014-09-03 20:52:48 +02:00
|
|
|
An array of pulses to be added to a waveform.
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
pulsewidth::0, 500-2500
|
|
|
|
. .
|
|
|
|
PI_SERVO_OFF 0
|
|
|
|
PI_MIN_SERVO_PULSEWIDTH 500
|
|
|
|
PI_MAX_SERVO_PULSEWIDTH 2500
|
|
|
|
. .
|
|
|
|
|
|
|
|
range::25-40000
|
|
|
|
. .
|
|
|
|
PI_MIN_DUTYCYCLE_RANGE 25
|
|
|
|
PI_MAX_DUTYCYCLE_RANGE 40000
|
|
|
|
. .
|
|
|
|
|
|
|
|
rawCbs_t::
|
|
|
|
. .
|
|
|
|
typedef struct // linux/arch/arm/mach-bcm2708/include/mach/dma.h
|
|
|
|
{
|
|
|
|
unsigned long info;
|
|
|
|
unsigned long src;
|
|
|
|
unsigned long dst;
|
|
|
|
unsigned long length;
|
|
|
|
unsigned long stride;
|
|
|
|
unsigned long next;
|
|
|
|
unsigned long pad[2];
|
|
|
|
} rawCbs_t;
|
|
|
|
. .
|
|
|
|
|
|
|
|
rawSPI_t::
|
|
|
|
. .
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int clk; // gpio for clock
|
|
|
|
int mosi; // gpio for MOSI
|
|
|
|
int miso; // gpio for MISO
|
|
|
|
int ss_pol; // slave select off state
|
|
|
|
int ss_us; // delay after slave select
|
|
|
|
int clk_pol; // clock off state
|
|
|
|
int clk_pha; // clock phase
|
|
|
|
int clk_us; // clock micros
|
|
|
|
} rawSPI_t;
|
|
|
|
. .
|
|
|
|
|
|
|
|
rawWave_t::
|
|
|
|
. .
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32_t gpioOn;
|
|
|
|
uint32_t gpioOff;
|
|
|
|
uint32_t usDelay;
|
|
|
|
uint32_t flags;
|
|
|
|
} rawWave_t;
|
|
|
|
. .
|
|
|
|
|
2014-09-09 23:58:39 +02:00
|
|
|
rawWaveInfo_t::
|
|
|
|
. .
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint16_t botCB; // first CB used by wave
|
|
|
|
uint16_t topCB; // last CB used by wave
|
|
|
|
uint16_t botOOL; // last OOL used by wave
|
|
|
|
uint16_t topOOL; // first OOL used by wave
|
|
|
|
} rawWaveInfo_t;
|
|
|
|
. .
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
*rxBuf::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
A pointer to a buffer to receive data.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
*script::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
A pointer to the text of a script.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
script_id::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
An id of a stored script as returned by [*gpioStoreScript*].
|
|
|
|
|
|
|
|
secondaryChannel:: 0-6
|
|
|
|
|
|
|
|
The DMA channel used to time output waveforms.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
*seconds::
|
|
|
|
|
|
|
|
A pointer to a uint32_t to store the second component of
|
|
|
|
a returned time.
|
|
|
|
|
|
|
|
seconds::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
The number of seconds.
|
|
|
|
|
|
|
|
serBaud::
|
|
|
|
|
|
|
|
The baud rate to use on the serial link.
|
|
|
|
|
|
|
|
It must be one of 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400,
|
|
|
|
4800, 9600, 19200, 38400, 57600, 115200, 230400.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
serFlags::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
Flags which modify a serial open command. None are currently defined.
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
*sertty::
|
|
|
|
|
|
|
|
The name of a serial tty device, e.g. /dev/ttyAMA0, /dev/ttyUSB0, /dev/tty1.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
signum::0-63
|
|
|
|
. .
|
|
|
|
PI_MIN_SIGNUM 0
|
|
|
|
PI_MAX_SIGNUM 63
|
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
size_t::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
A standard type used to indicate the size of an object in bytes.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
*spi::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
A pointer to a [*rawSPI_t*] structure.
|
|
|
|
|
|
|
|
spiBaud::
|
|
|
|
|
|
|
|
The speed in bits per second to use for the SPI device.
|
|
|
|
|
|
|
|
spiBitFirst::
|
|
|
|
|
|
|
|
Gpio reads are made from spiBitFirst to spiBitLast.
|
|
|
|
|
|
|
|
spiBitLast::
|
|
|
|
|
|
|
|
Gpio reads are made from spiBitFirst to spiBitLast.
|
|
|
|
|
|
|
|
spiBits::
|
|
|
|
|
|
|
|
The number of bits to transfer in a raw SPI transaction.
|
|
|
|
|
|
|
|
spiChan::
|
|
|
|
|
2014-09-09 23:58:39 +02:00
|
|
|
A SPI channel, 0-2.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
spiFlags::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-09-03 20:52:48 +02:00
|
|
|
See [*spiOpen*].
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
spiSS::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
The SPI slave select gpio in a raw SPI transaction.
|
|
|
|
|
|
|
|
spiTxBits::
|
|
|
|
|
|
|
|
The number of bits to transfer dring a raw SPI transaction
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
*str::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
An array of characters.
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
timeout::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
A gpio watchdog timeout in milliseconds.
|
2014-06-12 19:31:00 +02:00
|
|
|
. .
|
|
|
|
PI_MIN_WDOG_TIMEOUT 0
|
|
|
|
PI_MAX_WDOG_TIMEOUT 60000
|
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
timer::
|
|
|
|
. .
|
|
|
|
PI_MIN_TIMER 0
|
|
|
|
PI_MAX_TIMER 9
|
|
|
|
. .
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
timetype::
|
|
|
|
. .
|
|
|
|
PI_TIME_RELATIVE 0
|
|
|
|
PI_TIME_ABSOLUTE 1
|
|
|
|
. .
|
|
|
|
|
|
|
|
*txBuf::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
An array of bytes to transmit.
|
|
|
|
|
|
|
|
uint32_t::0-0-4,294,967,295 (Hex 0x0-0xFFFFFFFF)
|
2014-06-12 19:31:00 +02:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
A 32-bit unsigned value.
|
|
|
|
|
|
|
|
uint64_t::0-(2^64)-1
|
|
|
|
|
|
|
|
A 64-bit unsigned value.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
unsigned::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A whole number >= 0.
|
|
|
|
|
|
|
|
updateMask::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A 64 bit mask indicating which gpios may be written to by the user.
|
|
|
|
|
|
|
|
If gpio#n may be written then bit (1<<n) is set.
|
|
|
|
|
|
|
|
user_gpio::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
0-31, a Broadcom numbered gpio.
|
|
|
|
|
|
|
|
*userdata::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
A pointer to arbitrary user data. This may be used to identify the instance.
|
2014-06-12 19:31:00 +02:00
|
|
|
|
|
|
|
void::
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
Denoting no parameter is required
|
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
wave_id::
|
2014-08-01 10:30:25 +02:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
A number representing a waveform created by [*gpioWaveCreate*].
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
wave_mode::
|
|
|
|
|
|
|
|
The mode of waveform transmission, whether it is sent once or cycles
|
|
|
|
repeatedly.
|
|
|
|
|
|
|
|
. .
|
|
|
|
PI_WAVE_MODE_ONE_SHOT 0
|
|
|
|
PI_WAVE_MODE_REPEAT 1
|
|
|
|
. .
|
|
|
|
|
|
|
|
wVal::0-65535 (Hex 0x0-0xFFFF, Octal 0-0177777)
|
|
|
|
|
|
|
|
A 16-bit word value.
|
|
|
|
|
|
|
|
PARAMS*/
|
|
|
|
|
|
|
|
/*DEF_S Socket Command Codes*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
#define PI_CMD_MODES 0
|
|
|
|
#define PI_CMD_MODEG 1
|
|
|
|
#define PI_CMD_PUD 2
|
|
|
|
#define PI_CMD_READ 3
|
|
|
|
#define PI_CMD_WRITE 4
|
|
|
|
#define PI_CMD_PWM 5
|
|
|
|
#define PI_CMD_PRS 6
|
|
|
|
#define PI_CMD_PFS 7
|
|
|
|
#define PI_CMD_SERVO 8
|
|
|
|
#define PI_CMD_WDOG 9
|
|
|
|
#define PI_CMD_BR1 10
|
|
|
|
#define PI_CMD_BR2 11
|
|
|
|
#define PI_CMD_BC1 12
|
|
|
|
#define PI_CMD_BC2 13
|
|
|
|
#define PI_CMD_BS1 14
|
|
|
|
#define PI_CMD_BS2 15
|
|
|
|
#define PI_CMD_TICK 16
|
|
|
|
#define PI_CMD_HWVER 17
|
|
|
|
#define PI_CMD_NO 18
|
|
|
|
#define PI_CMD_NB 19
|
|
|
|
#define PI_CMD_NP 20
|
|
|
|
#define PI_CMD_NC 21
|
|
|
|
#define PI_CMD_PRG 22
|
|
|
|
#define PI_CMD_PFG 23
|
|
|
|
#define PI_CMD_PRRG 24
|
|
|
|
#define PI_CMD_HELP 25
|
2014-01-12 22:31:59 +01:00
|
|
|
#define PI_CMD_PIGPV 26
|
2014-01-21 20:04:59 +01:00
|
|
|
#define PI_CMD_WVCLR 27
|
|
|
|
#define PI_CMD_WVAG 28
|
|
|
|
#define PI_CMD_WVAS 29
|
|
|
|
#define PI_CMD_WVGO 30
|
|
|
|
#define PI_CMD_WVGOR 31
|
|
|
|
#define PI_CMD_WVBSY 32
|
|
|
|
#define PI_CMD_WVHLT 33
|
|
|
|
#define PI_CMD_WVSM 34
|
|
|
|
#define PI_CMD_WVSP 35
|
|
|
|
#define PI_CMD_WVSC 36
|
|
|
|
#define PI_CMD_TRIG 37
|
|
|
|
#define PI_CMD_PROC 38
|
|
|
|
#define PI_CMD_PROCD 39
|
|
|
|
#define PI_CMD_PROCR 40
|
|
|
|
#define PI_CMD_PROCS 41
|
2014-01-29 00:07:05 +01:00
|
|
|
#define PI_CMD_SLRO 42
|
|
|
|
#define PI_CMD_SLR 43
|
|
|
|
#define PI_CMD_SLRC 44
|
2014-03-13 16:50:23 +01:00
|
|
|
#define PI_CMD_PROCP 45
|
2014-04-19 13:19:29 +02:00
|
|
|
#define PI_CMD_MICS 46
|
|
|
|
#define PI_CMD_MILS 47
|
|
|
|
#define PI_CMD_PARSE 48
|
|
|
|
#define PI_CMD_WVCRE 49
|
|
|
|
#define PI_CMD_WVDEL 50
|
|
|
|
#define PI_CMD_WVTX 51
|
|
|
|
#define PI_CMD_WVTXR 52
|
|
|
|
#define PI_CMD_WVNEW 53
|
2014-03-13 16:50:23 +01:00
|
|
|
|
2014-06-12 19:31:00 +02:00
|
|
|
#define PI_CMD_I2CO 54
|
|
|
|
#define PI_CMD_I2CC 55
|
|
|
|
#define PI_CMD_I2CRD 56
|
|
|
|
#define PI_CMD_I2CWD 57
|
|
|
|
#define PI_CMD_I2CWQ 58
|
|
|
|
#define PI_CMD_I2CRS 59
|
|
|
|
#define PI_CMD_I2CWS 60
|
|
|
|
#define PI_CMD_I2CRB 61
|
|
|
|
#define PI_CMD_I2CWB 62
|
|
|
|
#define PI_CMD_I2CRW 63
|
|
|
|
#define PI_CMD_I2CWW 64
|
|
|
|
#define PI_CMD_I2CRK 65
|
|
|
|
#define PI_CMD_I2CWK 66
|
|
|
|
#define PI_CMD_I2CRI 67
|
|
|
|
#define PI_CMD_I2CWI 68
|
|
|
|
#define PI_CMD_I2CPC 69
|
|
|
|
#define PI_CMD_I2CPK 70
|
|
|
|
|
|
|
|
#define PI_CMD_SPIO 71
|
|
|
|
#define PI_CMD_SPIC 72
|
|
|
|
#define PI_CMD_SPIR 73
|
|
|
|
#define PI_CMD_SPIW 74
|
|
|
|
#define PI_CMD_SPIX 75
|
|
|
|
|
|
|
|
#define PI_CMD_SERO 76
|
|
|
|
#define PI_CMD_SERC 77
|
|
|
|
#define PI_CMD_SERRB 78
|
|
|
|
#define PI_CMD_SERWB 79
|
|
|
|
#define PI_CMD_SERR 80
|
|
|
|
#define PI_CMD_SERW 81
|
|
|
|
#define PI_CMD_SERDA 82
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-11-20 16:36:16 +01:00
|
|
|
#define PI_CMD_GDC 83
|
|
|
|
#define PI_CMD_GPW 84
|
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
#define PI_CMD_NOIB 99
|
|
|
|
|
|
|
|
/*DEF_E*/
|
|
|
|
|
2013-12-12 11:27:22 +01:00
|
|
|
/*
|
2014-08-01 10:30:25 +02:00
|
|
|
PI CMD_NOIB only works on the socket interface.
|
2013-12-12 11:27:22 +01:00
|
|
|
It returns a spare notification handle. Notifications for
|
|
|
|
that handle will be sent to the socket (rather than a
|
|
|
|
/dev/pigpiox pipe).
|
|
|
|
|
|
|
|
The socket should be dedicated to receiving notifications
|
|
|
|
after this command is issued.
|
|
|
|
*/
|
|
|
|
|
2014-03-13 16:50:23 +01:00
|
|
|
/* pseudo commands */
|
|
|
|
|
|
|
|
#define PI_CMD_SCRIPT 800
|
|
|
|
|
2014-04-19 13:19:29 +02:00
|
|
|
#define PI_CMD_ADD 800
|
|
|
|
#define PI_CMD_AND 801
|
|
|
|
#define PI_CMD_CALL 802
|
2014-06-12 19:31:00 +02:00
|
|
|
#define PI_CMD_CMDR 803
|
|
|
|
#define PI_CMD_CMDW 804
|
|
|
|
#define PI_CMD_CMP 805
|
|
|
|
#define PI_CMD_DCR 806
|
|
|
|
#define PI_CMD_DCRA 807
|
|
|
|
#define PI_CMD_DIV 808
|
|
|
|
#define PI_CMD_HALT 809
|
|
|
|
#define PI_CMD_INR 810
|
|
|
|
#define PI_CMD_INRA 811
|
|
|
|
#define PI_CMD_JM 812
|
|
|
|
#define PI_CMD_JMP 813
|
|
|
|
#define PI_CMD_JNZ 814
|
|
|
|
#define PI_CMD_JP 815
|
|
|
|
#define PI_CMD_JZ 816
|
|
|
|
#define PI_CMD_TAG 817
|
|
|
|
#define PI_CMD_LD 818
|
|
|
|
#define PI_CMD_LDA 819
|
|
|
|
#define PI_CMD_LDAB 820
|
|
|
|
#define PI_CMD_MLT 821
|
|
|
|
#define PI_CMD_MOD 822
|
|
|
|
#define PI_CMD_NOP 823
|
|
|
|
#define PI_CMD_OR 824
|
|
|
|
#define PI_CMD_POP 825
|
|
|
|
#define PI_CMD_POPA 826
|
|
|
|
#define PI_CMD_PUSH 827
|
|
|
|
#define PI_CMD_PUSHA 828
|
|
|
|
#define PI_CMD_RET 829
|
|
|
|
#define PI_CMD_RL 830
|
|
|
|
#define PI_CMD_RLA 831
|
|
|
|
#define PI_CMD_RR 832
|
|
|
|
#define PI_CMD_RRA 833
|
|
|
|
#define PI_CMD_STA 834
|
|
|
|
#define PI_CMD_STAB 835
|
|
|
|
#define PI_CMD_SUB 836
|
|
|
|
#define PI_CMD_SYS 837
|
|
|
|
#define PI_CMD_WAIT 838
|
|
|
|
#define PI_CMD_X 839
|
|
|
|
#define PI_CMD_XA 840
|
|
|
|
#define PI_CMD_XOR 841
|
2013-12-12 11:27:22 +01:00
|
|
|
|
2014-08-01 10:30:25 +02:00
|
|
|
/*DEF_S Error Codes*/
|
|
|
|
|
|
|
|
#define PI_INIT_FAILED -1 // gpioInitialise failed
|
|
|
|
#define PI_BAD_USER_GPIO -2 // gpio not 0-31
|
|
|
|
#define PI_BAD_GPIO -3 // gpio not 0-53
|
|
|
|
#define PI_BAD_MODE -4 // mode not 0-7
|
|
|
|
#define PI_BAD_LEVEL -5 // level not 0-1
|
|
|
|
#define PI_BAD_PUD -6 // pud not 0-2
|
|
|
|
#define PI_BAD_PULSEWIDTH -7 // pulsewidth not 0 or 500-2500
|
|
|
|
#define PI_BAD_DUTYCYCLE -8 // dutycycle outside set range
|
|
|
|
#define PI_BAD_TIMER -9 // timer not 0-9
|
|
|
|
#define PI_BAD_MS -10 // ms not 10-60000
|
|
|
|
#define PI_BAD_TIMETYPE -11 // timetype not 0-1
|
|
|
|
#define PI_BAD_SECONDS -12 // seconds < 0
|
|
|
|
#define PI_BAD_MICROS -13 // micros not 0-999999
|
|
|
|
#define PI_TIMER_FAILED -14 // gpioSetTimerFunc failed
|
|
|
|
#define PI_BAD_WDOG_TIMEOUT -15 // timeout not 0-60000
|
|
|
|
#define PI_NO_ALERT_FUNC -16 // DEPRECATED
|
|
|
|
#define PI_BAD_CLK_PERIPH -17 // clock peripheral not 0-1
|
|
|
|
#define PI_BAD_CLK_SOURCE -18 // clock source not 0-1
|
|
|
|
#define PI_BAD_CLK_MICROS -19 // clock micros not 1, 2, 4, 5, 8, or 10
|
|
|
|
#define PI_BAD_BUF_MILLIS -20 // buf millis not 100-10000
|
|
|
|
#define PI_BAD_DUTYRANGE -21 // dutycycle range not 25-40000
|
|
|
|
#define PI_BAD_DUTY_RANGE -21 // DEPRECATED (use PI_BAD_DUTYRANGE)
|
|
|
|
#define PI_BAD_SIGNUM -22 // signum not 0-63
|
|
|
|
#define PI_BAD_PATHNAME -23 // can't open pathname
|
|
|
|
#define PI_NO_HANDLE -24 // no handle available
|
|
|
|
#define PI_BAD_HANDLE -25 // unknown handle
|
|
|
|
#define PI_BAD_IF_FLAGS -26 // ifFlags > 3
|
|
|
|
#define PI_BAD_CHANNEL -27 // DMA channel not 0-14
|
|
|
|
#define PI_BAD_PRIM_CHANNEL -27 // DMA primary channel not 0-14
|
|
|
|
#define PI_BAD_SOCKET_PORT -28 // socket port not 1024-32000
|
|
|
|
#define PI_BAD_FIFO_COMMAND -29 // unrecognized fifo command
|
|
|
|
#define PI_BAD_SECO_CHANNEL -30 // DMA secondary channel not 0-6
|
|
|
|
#define PI_NOT_INITIALISED -31 // function called before gpioInitialise
|
|
|
|
#define PI_INITIALISED -32 // function called after gpioInitialise
|
|
|
|
#define PI_BAD_WAVE_MODE -33 // waveform mode not 0-1
|
|
|
|
#define PI_BAD_CFG_INTERNAL -34 // bad parameter in gpioCfgInternals call
|
|
|
|
#define PI_BAD_WAVE_BAUD -35 // baud rate not 100-250000
|
|
|
|
#define PI_TOO_MANY_PULSES -36 // waveform has too many pulses
|
|
|
|
#define PI_TOO_MANY_CHARS -37 // waveform has too many chars
|
|
|
|
#define PI_NOT_SERIAL_GPIO -38 // no serial read in progress on gpio
|
|
|
|
#define PI_BAD_SERIAL_STRUC -39 // bad (null) serial structure parameter
|
|
|
|
#define PI_BAD_SERIAL_BUF -40 // bad (null) serial buf parameter
|
|
|
|
#define PI_NOT_PERMITTED -41 // gpio operation not permitted
|
|
|
|
#define PI_SOME_PERMITTED -42 // one or more gpios not permitted
|
|
|
|
#define PI_BAD_WVSC_COMMND -43 // bad WVSC subcommand
|
|
|
|
#define PI_BAD_WVSM_COMMND -44 // bad WVSM subcommand
|
|
|
|
#define PI_BAD_WVSP_COMMND -45 // bad WVSP subcommand
|
2014-08-12 19:47:26 +02:00
|
|
|
#define PI_BAD_PULSELEN -46 // trigger pulse length > 100
|
2014-08-01 10:30:25 +02:00
|
|
|
#define PI_BAD_SCRIPT -47 // invalid script
|
|
|
|
#define PI_BAD_SCRIPT_ID -48 // unknown script id
|
|
|
|
#define PI_BAD_SER_OFFSET -49 // add serial data offset > 30 minutes
|
|
|
|
#define PI_GPIO_IN_USE -50 // gpio already in use
|
|
|
|
#define PI_BAD_SERIAL_COUNT -51 // must read at least a byte at a time
|
|
|
|
#define PI_BAD_PARAM_NUM -52 // script parameter must be 0-9
|
|
|
|
#define PI_DUP_TAG -53 // script has duplicate tag
|
|
|
|
#define PI_TOO_MANY_TAGS -54 // script has too many tags
|
|
|
|
#define PI_BAD_SCRIPT_CMD -55 // illegal script command
|
|
|
|
#define PI_BAD_VAR_NUM -56 // script variable must be 0-149
|
|
|
|
#define PI_NO_SCRIPT_ROOM -57 // no more room for scripts
|
|
|
|
#define PI_NO_MEMORY -58 // can't allocate temporary memory
|
|
|
|
#define PI_SOCK_READ_FAILED -59 // socket read failed
|
|
|
|
#define PI_SOCK_WRIT_FAILED -60 // socket write failed
|
|
|
|
#define PI_TOO_MANY_PARAM -61 // too many script parameters > 10
|
|
|
|
#define PI_NOT_HALTED -62 // script already running or failed
|
|
|
|
#define PI_BAD_TAG -63 // script has unresolved tag
|
|
|
|
#define PI_BAD_MICS_DELAY -64 // bad MICS delay (too large)
|
|
|
|
#define PI_BAD_MILS_DELAY -65 // bad MILS delay (too large)
|
|
|
|
#define PI_BAD_WAVE_ID -66 // non existent wave id
|
|
|
|
#define PI_TOO_MANY_CBS -67 // No more CBs for waveform
|
|
|
|
#define PI_TOO_MANY_OOL -68 // No more OOL for waveform
|
|
|
|
#define PI_EMPTY_WAVEFORM -69 // attempt to create an empty waveform
|
|
|
|
#define PI_NO_WAVEFORM_ID -70 // no more waveforms
|
|
|
|
#define PI_I2C_OPEN_FAILED -71 // can't open I2C device
|
|
|
|
#define PI_SER_OPEN_FAILED -72 // can't open serial device
|
|
|
|
#define PI_SPI_OPEN_FAILED -73 // can't open SPI device
|
|
|
|
#define PI_BAD_I2C_BUS -74 // bad I2C bus
|
|
|
|
#define PI_BAD_I2C_ADDR -75 // bad I2C address
|
|
|
|
#define PI_BAD_SPI_CHANNEL -76 // bad SPI channel
|
|
|
|
#define PI_BAD_FLAGS -77 // bad i2c/spi/ser open flags
|
|
|
|
#define PI_BAD_SPI_SPEED -78 // bad SPI speed
|
|
|
|
#define PI_BAD_SER_DEVICE -79 // bad serial device name
|
|
|
|
#define PI_BAD_SER_SPEED -80 // bad serial baud rate
|
|
|
|
#define PI_BAD_PARAM -81 // bad i2c/spi/ser parameter
|
|
|
|
#define PI_I2C_WRITE_FAILED -82 // i2c write failed
|
|
|
|
#define PI_I2C_READ_FAILED -83 // i2c read failed
|
|
|
|
#define PI_BAD_SPI_COUNT -84 // bad SPI count
|
|
|
|
#define PI_SER_WRITE_FAILED -85 // ser write failed
|
|
|
|
#define PI_SER_READ_FAILED -86 // ser read failed
|
|
|
|
#define PI_SER_READ_NO_DATA -87 // ser read no data available
|
|
|
|
#define PI_UNKNOWN_COMMAND -88 // unknown command
|
|
|
|
#define PI_SPI_XFER_FAILED -89 // spi xfer/read/write failed
|
|
|
|
#define PI_BAD_POINTER -90 // bad (NULL) pointer
|
2014-09-03 20:52:48 +02:00
|
|
|
#define PI_NO_AUX_SPI -91 // need a B+ for auxiliary SPI
|
2014-11-20 16:36:16 +01:00
|
|
|
#define PI_NOT_PWM_GPIO -92 // gpio is not in use for PWM
|
|
|
|
#define PI_NOT_SERVO_GPIO -93 // gpio is not in use for servo pulses
|
2014-08-01 10:30:25 +02:00
|
|
|
|
|
|
|
/*DEF_E*/
|
|
|
|
|
|
|
|
/*DEF_S Defaults*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
#define PI_DEFAULT_BUFFER_MILLIS 120
|
|
|
|
#define PI_DEFAULT_CLK_MICROS 5
|
|
|
|
#define PI_DEFAULT_CLK_PERIPHERAL PI_CLOCK_PCM
|
|
|
|
#define PI_DEFAULT_CLK_SOURCE PI_CLOCK_PLLD
|
|
|
|
#define PI_DEFAULT_IF_FLAGS 0
|
|
|
|
#define PI_DEFAULT_DMA_CHANNEL 14
|
|
|
|
#define PI_DEFAULT_DMA_PRIMARY_CHANNEL 14
|
2013-12-12 11:32:49 +01:00
|
|
|
#define PI_DEFAULT_DMA_SECONDARY_CHANNEL 5
|
2013-12-12 11:27:22 +01:00
|
|
|
#define PI_DEFAULT_SOCKET_PORT 8888
|
2013-12-12 11:32:49 +01:00
|
|
|
#define PI_DEFAULT_SOCKET_PORT_STR "8888"
|
|
|
|
#define PI_DEFAULT_SOCKET_ADDR_STR "127.0.0.1"
|
2014-08-01 10:30:25 +02:00
|
|
|
#define PI_DEFAULT_UPDATE_MASK_R0 0xFFFFFFFF
|
|
|
|
#define PI_DEFAULT_UPDATE_MASK_R1 0x03E7CF93
|
|
|
|
#define PI_DEFAULT_UPDATE_MASK_R2 0xFBC7CF9C
|
2014-11-20 16:36:16 +01:00
|
|
|
#define PI_DEFAULT_UPDATE_MASK_R3 0x0080400FFFFFFCLL
|
|
|
|
#define PI_DEFAULT_UPDATE_MASK_COMPUTE 0x00FFFFFFFFFFFFLL
|
2014-08-01 10:30:25 +02:00
|
|
|
/*DEF_E*/
|
2013-12-12 11:27:22 +01:00
|
|
|
|
|
|
|
#endif
|
2014-01-12 22:31:59 +01:00
|
|
|
|