X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=source%2Fdrv-protocol.h;h=f6906116893ee906b268dbdbe2c0123b25540e2d;hb=54207903a78f98c62a6fc7fb37e51c1f22187ba4;hp=7af8027898969e5bb0d4cea28f3b29439d6fcc29;hpb=4b527a01e5fbcf7fa69dcfa7a3ad2422bf9087b6;p=sigrok-util.git diff --git a/source/drv-protocol.h b/source/drv-protocol.h index 7af8027..f690611 100644 --- a/source/drv-protocol.h +++ b/source/drv-protocol.h @@ -17,22 +17,26 @@ * along with this program. If not, see . */ -#ifndef LIBSIGROK_${upper}_H -#define LIBSIGROK_${upper}_H +#ifndef LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H +#define LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H + +#include +#include +#include +#include "libsigrok-internal.h" + +#define LOG_PREFIX "${short}" /** Private, per-device-instance driver context. */ struct dev_context { - /** The current sampling limit (in number of samples). */ - uint64_t limit_samples; + /* Model-specific information */ + + /* Acquisition settings */ - /** The current sampling limit (in ms). */ - uint64_t limit_msec; + /* Operational state */ - /** Opaque pointer passed in by the frontend. */ - void *cb_data; + /* Temporary state across callbacks */ - /** The current number of already received samples. */ - uint64_t num_samples; }; SR_PRIV int ${lib}_receive_data(int fd, int revents, void *cb_data);