pigpio/pigpiod_if.c

861 lines
19 KiB
C
Raw Normal View History

2014-01-12 22:31:59 +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/>
*/
2014-03-13 16:50:23 +01:00
/* PIGPIOD_IF_VERSION 4 */
2014-01-12 22:31:59 +01:00
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <time.h>
#include <netdb.h>
#include <pthread.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <sys/select.h>
#include <arpa/inet.h>
#include "pigpio.h"
#include "command.h"
#include "pigpiod_if.h"
#define PISCOPE_MAX_REPORTS_PER_READ 4096
#define STACK_SIZE (256*1024)
typedef void (*CBF_t) ();
struct callback_s
{
2014-01-29 00:07:05 +01:00
2014-01-12 22:31:59 +01:00
int id;
int gpio;
int edge;
CBF_t f;
void * user;
int ex;
callback_t *prev;
callback_t *next;
};
/* GLOBALS ---------------------------------------------------------------- */
static gpioReport_t gReport[PISCOPE_MAX_REPORTS_PER_READ];
static int gPigCommand = -1;
static int gPigHandle = -1;
static int gPigNotify = -1;
static uint32_t gNotifyBits;
callback_t *gCallBackFirst = 0;
callback_t *gCallBackLast = 0;
static int gPigStarted = 0;
static pthread_t *pthNotify;
/* PRIVATE ---------------------------------------------------------------- */
static int pigpio_command(int fd, int command, int p1, int p2)
{
cmdCmd_t cmd;
cmd.cmd = command;
cmd.p1 = p1;
cmd.p2 = p2;
cmd.res = 0;
2014-01-21 20:04:59 +01:00
if (send(fd, &cmd, sizeof(cmd), 0) != sizeof(cmd)) return pigif_bad_send;
2014-01-12 22:31:59 +01:00
2014-01-21 20:04:59 +01:00
if (recv(fd, &cmd, sizeof(cmd), MSG_WAITALL) != sizeof(cmd))
return pigif_bad_recv;
return cmd.res;
}
static int pigpio_command_ext
(int fd, int command, int p1, int p2, int extents, gpioExtent_t *ext)
{
int i;
cmdCmd_t cmd;
cmd.cmd = command;
cmd.p1 = p1;
cmd.p2 = p2;
cmd.res = 0;
if (send(fd, &cmd, sizeof(cmd), 0) != sizeof(cmd)) return pigif_bad_send;
for (i=0; i<extents; i++)
{
2014-01-29 00:07:05 +01:00
if (send(fd, ext[i].ptr, ext[i].size, 0) != ext[i].size)
2014-01-21 20:04:59 +01:00
return pigif_bad_send;
}
if (recv(fd, &cmd, sizeof(cmd), MSG_WAITALL) != sizeof(cmd))
2014-01-12 22:31:59 +01:00
return pigif_bad_recv;
return cmd.res;
}
static int pigpioOpenSocket(char *addr, char *port)
{
int sock, err;
struct addrinfo hints, *res, *rp;
const char *addrStr, *portStr;
if (!addr)
{
addrStr = getenv(PI_ENVADDR);
if ((!addrStr) || (!strlen(addrStr)))
{
addrStr = PI_DEFAULT_SOCKET_ADDR_STR;
}
}
else addrStr = addr;
if (!port)
{
portStr = getenv(PI_ENVPORT);
if ((!portStr) || (!strlen(portStr)))
{
portStr = PI_DEFAULT_SOCKET_PORT_STR;
}
}
else portStr = port;
memset (&hints, 0, sizeof (hints));
hints.ai_family = PF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags |= AI_CANONNAME;
err = getaddrinfo (addrStr, portStr, &hints, &res);
if (err) return pigif_bad_getaddrinfo;
for (rp=res; rp!=NULL; rp=rp->ai_next)
{
sock = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
if (sock == -1) continue;
if (connect(sock, rp->ai_addr, rp->ai_addrlen) != -1) break;
}
freeaddrinfo(res);
if (rp == NULL) return pigif_bad_connect;
return sock;
}
static void dispatch_notification(gpioReport_t *r)
{
static uint32_t lastLevel = 0;
callback_t *p;
uint32_t changed;
int l, g;
/*
printf("s=%d f=%d l=%8X, t=%10u\n",
r->seqno, r->flags, r->level, r->tick);
*/
if (r->flags == 0)
{
changed = (r->level ^ lastLevel) & gNotifyBits;
lastLevel = r->level;
p = gCallBackFirst;
while (p)
{
if (changed & (1<<(p->gpio)))
{
if ((r->level) & (1<<(p->gpio))) l = 1; else l = 0;
if ((p->edge) ^ l)
{
if (p->ex) (p->f)(p->gpio, l, r->tick, p->user);
else (p->f)(p->gpio, l, r->tick);
}
}
p = p->next;
}
}
else
{
g = (r->flags) & 31;
p = gCallBackFirst;
while (p)
{
if ((p->gpio) == g)
{
if (p->ex) (p->f)(g, PI_TIMEOUT, r->tick, p->user);
else (p->f)(g, PI_TIMEOUT, r->tick);
}
p = p->next;
}
}
}
static void *pthNotifyThread(void *x)
{
static int got = 0;
int bytes, r;
while (1)
{
bytes = read(gPigNotify, (char*)&gReport+got, sizeof(gReport)-got);
if (bytes > 0) got += bytes;
else break;
r = 0;
while (got >= sizeof(gpioReport_t))
{
dispatch_notification(&gReport[r]);
r++;
got -= sizeof(gpioReport_t);
}
/* copy any partial report to start of array */
if (got && r) gReport[0] = gReport[r];
}
return 0;
}
static void findNotifyBits(void)
{
callback_t *p;
uint32_t bits = 0;
p = gCallBackFirst;
while (p)
{
bits |= (1<<(p->gpio));
p = p->next;
}
if (bits != gNotifyBits)
{
gNotifyBits = bits;
pigpio_command(gPigCommand, PI_CMD_NB, gPigHandle, gNotifyBits);
}
}
2014-01-29 00:07:05 +01:00
static void _wfe(unsigned gpio, unsigned level, uint32_t tick, void *user)
2014-01-12 22:31:59 +01:00
{
*(int *)user = 1;
}
2014-01-29 00:07:05 +01:00
static int intCallback(unsigned gpio, unsigned edge, void *f, void *user, int ex)
2014-01-12 22:31:59 +01:00
{
static int id = 0;
callback_t *p;
if ((gpio >=0) && (gpio < 32) && (edge >=0) && (edge <= 2) && f)
{
/* prevent duplicates */
p = gCallBackFirst;
while (p)
{
if ((p->gpio == gpio) && (p->edge == edge) && (p->f == f))
{
return pigif_duplicate_callback;
}
p = p->next;
}
p = malloc(sizeof(callback_t));
if (p)
{
if (!gCallBackFirst) gCallBackFirst = p;
p->id = id++;
p->gpio = gpio;
p->edge = edge;
p->f = f;
p->user = user;
p->ex = ex;
p->next = 0;
p->prev = gCallBackLast;
if (p->prev) (p->prev)->next = p;
gCallBackLast = p;
findNotifyBits();
return p->id;
}
return pigif_bad_malloc;
}
return pigif_bad_callback;
}
/* PUBLIC ----------------------------------------------------------------- */
double time_time(void)
{
struct timeval tv;
double t;
gettimeofday(&tv, 0);
t = (double)tv.tv_sec + ((double)tv.tv_usec / 1E6);
return t;
}
void time_sleep(double seconds)
{
struct timespec ts, rem;
if (seconds > 0.0)
{
ts.tv_sec = seconds;
ts.tv_nsec = (seconds-(double)ts.tv_sec) * 1E9;
while (clock_nanosleep(CLOCK_REALTIME, 0, &ts, &rem))
{
/* copy remaining time to ts */
ts.tv_sec = rem.tv_sec;
ts.tv_nsec = rem.tv_nsec;
}
}
}
const char *pigpio_error(int error)
{
if (error > -1000) return cmdErrStr(error);
else
{
switch(error)
{
case pigif_bad_send:
return "failed to send to pigpiod";
case pigif_bad_recv:
return "failed to receive from pigpiod";
case pigif_bad_getaddrinfo:
return "failed to find address of pigpiod";
case pigif_bad_connect:
return "failed to connect to pigpiod";
case pigif_bad_socket:
return "failed to create socket";
case pigif_bad_noib:
return "failed to open noib";
case pigif_duplicate_callback:
return "identical callback exists";
case pigif_bad_malloc:
return "failed to malloc";
case pigif_bad_callback:
return "bad callback parameter";
case pigif_notify_failed:
return "failed to create notification thread";
case pigif_callback_not_found:
return "callback not found";
default:
return "unknown error";
}
}
}
unsigned pigpiod_if_version(void)
{
return PIGPIOD_IF_VERSION;
}
2014-01-21 20:04:59 +01:00
pthread_t *start_thread(gpioThreadFunc_t func, void *arg)
2014-01-12 22:31:59 +01:00
{
pthread_t *pth;
pthread_attr_t pthAttr;
pth = malloc(sizeof(pthread_t));
if (pth)
{
if (pthread_attr_init(&pthAttr))
{
perror("pthread_attr_init failed");
free(pth);
return NULL;
}
if (pthread_attr_setstacksize(&pthAttr, STACK_SIZE))
{
perror("pthread_attr_setstacksize failed");
free(pth);
return NULL;
}
if (pthread_create(pth, &pthAttr, func, arg))
{
perror("pthread_create socket failed");
free(pth);
return NULL;
}
}
return pth;
}
void stop_thread(pthread_t *pth)
{
if (pth)
{
pthread_cancel(*pth);
pthread_join(*pth, NULL);
}
}
int pigpio_start(char *addrStr, char *portStr)
{
if (!gPigStarted)
{
gPigCommand = pigpioOpenSocket(addrStr, portStr);
if (gPigCommand >= 0)
{
gPigNotify = pigpioOpenSocket(addrStr, portStr);
if (gPigNotify >= 0)
{
gPigHandle = pigpio_command(gPigNotify, PI_CMD_NOIB, 0, 0);
if (gPigHandle < 0) return pigif_bad_noib;
else
{
pthNotify = start_thread(pthNotifyThread, 0);
if (pthNotify)
{
gPigStarted = 1;
return 0;
}
else return pigif_notify_failed;
}
}
else return gPigNotify;
}
else return gPigCommand;
}
return 0;
}
void pigpio_stop(void)
{
gPigStarted = 0;
if (pthNotify)
{
stop_thread(pthNotify);
pthNotify = 0;
}
if (gPigNotify >= 0)
{
if (gPigHandle >= 0)
{
pigpio_command(gPigNotify, PI_CMD_NC, gPigHandle, 0);
gPigHandle = -1;
}
close(gPigNotify);
gPigNotify = -1;
}
if (gPigCommand >= 0)
{
if (gPigHandle >= 0)
{
pigpio_command(gPigCommand, PI_CMD_NC, gPigHandle, 0);
gPigHandle = -1;
}
close(gPigCommand);
gPigCommand = -1;
}
}
2014-01-29 00:07:05 +01:00
int set_mode(unsigned gpio, unsigned mode)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_MODES, gpio, mode);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int get_mode(unsigned gpio)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_MODEG, gpio, 0);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int set_pull_up_down(unsigned gpio, unsigned pud)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_PUD, gpio, pud);}
2014-01-12 22:31:59 +01:00
2014-03-13 16:50:23 +01:00
int gpio_read(unsigned gpio)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_READ, gpio, 0);}
2014-01-12 22:31:59 +01:00
2014-03-13 16:50:23 +01:00
int gpio_write(unsigned gpio, unsigned level)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_WRITE, gpio, level);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int set_PWM_dutycycle(unsigned user_gpio, unsigned dutycycle)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_PWM, user_gpio, dutycycle);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int set_PWM_range(unsigned user_gpio, unsigned range_)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_PRS, user_gpio, range_);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int get_PWM_range(unsigned user_gpio)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_PRG, user_gpio, 0);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int get_PWM_real_range(unsigned user_gpio)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_PRRG, user_gpio, 0);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int set_PWM_frequency(unsigned user_gpio, unsigned frequency)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_PFS, user_gpio, frequency);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int get_PWM_frequency(unsigned user_gpio)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_PFG, user_gpio, 0);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int set_servo_pulsewidth(unsigned user_gpio, unsigned pulsewidth)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_SERVO, user_gpio, pulsewidth);}
2014-01-12 22:31:59 +01:00
int notify_open(void)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_NO, 0, 0);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int notify_begin(unsigned handle, uint32_t bits)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_NB, handle, bits);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int notify_pause(unsigned handle)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_NB, handle, 0);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int notify_close(unsigned handle)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_NC, handle, 0);}
2014-01-12 22:31:59 +01:00
2014-01-29 00:07:05 +01:00
int set_watchdog(unsigned user_gpio, unsigned timeout)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_WDOG, user_gpio, timeout);}
2014-01-12 22:31:59 +01:00
uint32_t read_bank_1(void)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_BR1, 0, 0);}
2014-01-12 22:31:59 +01:00
uint32_t read_bank_2(void)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_BR2, 0, 0);}
2014-01-12 22:31:59 +01:00
int clear_bank_1(uint32_t levels)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_BC1, levels, 0);}
2014-01-12 22:31:59 +01:00
int clear_bank_2(uint32_t levels)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_BC2, levels, 0);}
2014-01-12 22:31:59 +01:00
int set_bank_1(uint32_t levels)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_BS1, levels, 0);}
2014-01-12 22:31:59 +01:00
int set_bank_2(uint32_t levels)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_BS2, levels, 0);}
2014-01-12 22:31:59 +01:00
uint32_t get_current_tick(void)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_TICK, 0, 0);}
2014-01-12 22:31:59 +01:00
uint32_t get_hardware_revision(void)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_HWVER, 0, 0);}
2014-03-13 16:50:23 +01:00
uint32_t get_pigpio_version(void)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_PIGPV, 0, 0);}
int wave_clear(void)
{return pigpio_command(gPigCommand, PI_CMD_WVCLR, 0, 0);}
2014-04-19 13:19:29 +02:00
int wave_add_new(void)
{return pigpio_command(gPigCommand, PI_CMD_WVNEW, 0, 0);}
2014-01-21 20:04:59 +01:00
int wave_add_generic(unsigned numPulses, gpioPulse_t *pulses)
2014-01-12 22:31:59 +01:00
{
2014-01-21 20:04:59 +01:00
gpioExtent_t ext[1];
/*
p1=numPulses
p2=0
## extension ##
gpioPulse_t[] pulses
*/
2014-04-19 13:19:29 +02:00
if (!numPulses) return 0;
2014-01-29 00:07:05 +01:00
ext[0].size = numPulses * sizeof(gpioPulse_t);
2014-01-21 20:04:59 +01:00
ext[0].ptr = pulses;
return pigpio_command_ext(gPigCommand, PI_CMD_WVAG, numPulses, 0, 1, ext);
2014-01-12 22:31:59 +01:00
}
2014-01-21 20:04:59 +01:00
int wave_add_serial(
unsigned gpio, unsigned baud, unsigned offset, unsigned numChar, char *str)
2014-01-12 22:31:59 +01:00
{
2014-01-21 20:04:59 +01:00
gpioExtent_t ext[3];
/*
p1=gpio
p2=numChar
## extension ##
unsigned baud
unsigned offset
char[] str
*/
2014-04-19 13:19:29 +02:00
if (!numChar) return 0;
2014-01-29 00:07:05 +01:00
ext[0].size = sizeof(unsigned);
2014-01-21 20:04:59 +01:00
ext[0].ptr = &baud;
2014-01-29 00:07:05 +01:00
ext[1].size = sizeof(unsigned);
2014-01-21 20:04:59 +01:00
ext[1].ptr = &offset;
2014-01-29 00:07:05 +01:00
ext[2].size = numChar;
2014-01-21 20:04:59 +01:00
ext[2].ptr = str;
return pigpio_command_ext(gPigCommand, PI_CMD_WVAS, gpio, numChar, 3, ext);
2014-01-12 22:31:59 +01:00
}
2014-04-19 13:19:29 +02:00
int wave_create(void)
{return pigpio_command(gPigCommand, PI_CMD_WVCRE, 0, 0);}
2014-01-21 20:04:59 +01:00
2014-04-19 13:19:29 +02:00
int wave_delete(unsigned wave_id)
{return pigpio_command(gPigCommand, PI_CMD_WVDEL, wave_id, 0);}
2014-01-21 20:04:59 +01:00
2014-04-19 13:19:29 +02:00
int wave_tx_start(void) /* DEPRECATED */
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_WVGO, 0, 0);}
2014-04-19 13:19:29 +02:00
int wave_tx_repeat(void) /* DEPRECATED */
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_WVGOR, 0, 0);}
2014-04-19 13:19:29 +02:00
int wave_send_once(unsigned wave_id)
{return pigpio_command(gPigCommand, PI_CMD_WVTX, 0, 0);}
int wave_send_repeat(unsigned wave_id)
{return pigpio_command(gPigCommand, PI_CMD_WVTXR, 0, 0);}
int wave_tx_busy(void)
{return pigpio_command(gPigCommand, PI_CMD_WVBSY, 0, 0);}
int wave_tx_stop(void)
{return pigpio_command(gPigCommand, PI_CMD_WVHLT, 0, 0);}
2014-01-21 20:04:59 +01:00
int wave_get_micros(void)
{return pigpio_command(gPigCommand, PI_CMD_WVSM, 0, 0);}
int wave_get_high_micros(void)
{return pigpio_command(gPigCommand, PI_CMD_WVSM, 1, 0);}
int wave_get_max_micros(void)
{return pigpio_command(gPigCommand, PI_CMD_WVSM, 2, 0);}
int wave_get_pulses(void)
{return pigpio_command(gPigCommand, PI_CMD_WVSP, 0, 0);}
int wave_get_high_pulses(void)
{return pigpio_command(gPigCommand, PI_CMD_WVSP, 1, 0);}
int wave_get_max_pulses(void)
{return pigpio_command(gPigCommand, PI_CMD_WVSP, 2, 0);}
int wave_get_cbs(void)
{return pigpio_command(gPigCommand, PI_CMD_WVSC, 0, 0);}
int wave_get_high_cbs(void)
{return pigpio_command(gPigCommand, PI_CMD_WVSC, 1, 0);}
int wave_get_max_cbs(void)
{return pigpio_command(gPigCommand, PI_CMD_WVSC, 2, 0);}
int gpio_trigger(unsigned gpio, unsigned pulseLen, unsigned level)
2014-01-12 22:31:59 +01:00
{
2014-01-21 20:04:59 +01:00
gpioExtent_t ext[1];
/*
p1=gpio
p2=pulseLen
## extension ##
unsigned level
*/
2014-01-29 00:07:05 +01:00
ext[0].size = sizeof(level);
2014-01-21 20:04:59 +01:00
ext[0].ptr = &level;
return pigpio_command_ext(gPigCommand, PI_CMD_TRIG, gpio, pulseLen, 1, ext);
2014-01-12 22:31:59 +01:00
}
2014-01-21 20:04:59 +01:00
int store_script(char *script)
2014-01-12 22:31:59 +01:00
{
2014-01-21 20:04:59 +01:00
unsigned len;
gpioExtent_t ext[1];
/*
p1=script length
p2=0
## extension ##
char[] script
*/
len = strlen(script);
2014-01-29 00:07:05 +01:00
ext[0].size = len;
2014-01-21 20:04:59 +01:00
ext[0].ptr = script;
return pigpio_command_ext(gPigCommand, PI_CMD_PROC, len, 0, 1, ext);
2014-01-12 22:31:59 +01:00
}
2014-03-13 16:50:23 +01:00
int run_script(unsigned script_id, unsigned numPar, uint32_t *param)
{
gpioExtent_t ext[1];
/*
p1=script id
p2=number of parameters
## extension ##
uint32_t[] parameters
*/
ext[0].size = sizeof(uint32_t)*numPar;
ext[0].ptr = param;
return pigpio_command_ext
(gPigCommand, PI_CMD_PROCR, script_id, numPar, 1, ext);
}
2014-04-19 13:19:29 +02:00
int script_status(unsigned script_id, uint32_t *param)
2014-03-13 16:50:23 +01:00
{
int status;
2014-04-19 13:19:29 +02:00
uint32_t p[PI_MAX_SCRIPT_PARAMS];
2014-03-13 16:50:23 +01:00
status = pigpio_command(gPigCommand, PI_CMD_PROCP, script_id, 0);
if (status >= 0)
{
/* get the data */
recv(gPigCommand, p, sizeof(p), MSG_WAITALL);
if (param) memcpy(param, p, sizeof(p));
}
return status;
}
2014-01-21 20:04:59 +01:00
2014-01-29 00:07:05 +01:00
int stop_script(unsigned script_id)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_PROCS, script_id, 0);}
2014-01-29 00:07:05 +01:00
int delete_script(unsigned script_id)
2014-01-21 20:04:59 +01:00
{return pigpio_command(gPigCommand, PI_CMD_PROCD, script_id, 0);}
2014-01-29 00:07:05 +01:00
int serial_read_open(unsigned gpio, unsigned baud)
{return pigpio_command(gPigCommand, PI_CMD_SLRO, gpio, baud);}
int serial_read(unsigned gpio, void *buf, size_t bufSize)
{
int bytes;
bytes = pigpio_command(gPigCommand, PI_CMD_SLR, gpio, bufSize);
if (bytes > 0)
{
/* get the data */
recv(gPigCommand, buf, bytes, MSG_WAITALL);
}
return bytes;
}
int serial_read_close(unsigned gpio)
{return pigpio_command(gPigCommand, PI_CMD_SLRC, gpio, 0);}
int callback(unsigned gpio, unsigned edge, CBFunc_t f)
2014-01-21 20:04:59 +01:00
{return intCallback(gpio, edge, f, 0, 0);}
2014-01-29 00:07:05 +01:00
int callback_ex(unsigned gpio, unsigned edge, CBFuncEx_t f, void *user)
2014-01-21 20:04:59 +01:00
{return intCallback(gpio, edge, f, user, 1);}
2014-01-29 00:07:05 +01:00
int callback_cancel(unsigned id)
2014-01-12 22:31:59 +01:00
{
callback_t *p;
p = gCallBackFirst;
while (p)
{
if (p->id == id)
{
if (p->prev) p->prev->next = p->next;
else gCallBackFirst = p->next;
if (p->next) p->next->prev = p->prev;
else gCallBackLast = p->prev;
free(p);
findNotifyBits();
return 0;
}
p = p->next;
}
return pigif_callback_not_found;
}
2014-01-29 00:07:05 +01:00
int wait_for_edge(unsigned gpio, unsigned edge, double timeout)
2014-01-12 22:31:59 +01:00
{
int triggered = 0;
int id;
double due;
if (timeout <= 0.0) return 0;
due = time_time() + timeout;
id = callback_ex(gpio, edge, _wfe, &triggered);
while (!triggered && (time_time() < due)) time_sleep(0.1);
callback_cancel(id);
return triggered;
}