X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=source%2Fdrv-protocol.h;h=f6906116893ee906b268dbdbe2c0123b25540e2d;hb=54207903a78f98c62a6fc7fb37e51c1f22187ba4;hp=84b7ef516101799ea2aacc1f1bbe8da9c15efeff;hpb=5c100b148be923f92c383b9fb233dfb4ba3b790e;p=sigrok-util.git diff --git a/source/drv-protocol.h b/source/drv-protocol.h index 84b7ef5..f690611 100644 --- a/source/drv-protocol.h +++ b/source/drv-protocol.h @@ -22,31 +22,21 @@ #include #include -#include "libsigrok.h" +#include #include "libsigrok-internal.h" -/* Message logging helpers with driver-specific prefix string. */ -#define DRIVER_LOG_DOMAIN "${short}: " -#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args) -#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args) -#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args) -#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args) -#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args) -#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args) +#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 */ - /** The current sampling limit (in ms). */ - uint64_t limit_msec; + /* Acquisition settings */ - /** Opaque pointer passed in by the frontend. */ - void *cb_data; + /* Operational state */ + + /* 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);