X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=source%2Fdrv-protocol.h;h=f6906116893ee906b268dbdbe2c0123b25540e2d;hb=d79664f05ba988f54a88d5683da01b356e40ab7a;hp=3f0cf65de0ebbd4b0e4713e75e5654a604607a56;hpb=6a94754feb0b2de80dfd367fcad556ab08b6540e;p=sigrok-util.git diff --git a/source/drv-protocol.h b/source/drv-protocol.h index 3f0cf65..f690611 100644 --- a/source/drv-protocol.h +++ b/source/drv-protocol.h @@ -20,19 +20,23 @@ #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);