X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=blobdiff_plain;f=source%2Fdrv-protocol.h;h=30d42a53946d3913b516c4f8bfeeefb1900003a3;hp=7af8027898969e5bb0d4cea28f3b29439d6fcc29;hb=f6b99cb8bd9b84fb47d15cedc32f97832bdc13ba;hpb=4b527a01e5fbcf7fa69dcfa7a3ad2422bf9087b6 diff --git a/source/drv-protocol.h b/source/drv-protocol.h index 7af8027..30d42a5 100644 --- a/source/drv-protocol.h +++ b/source/drv-protocol.h @@ -1,7 +1,7 @@ /* * This file is part of the libsigrok project. * - * Copyright (C) ${year} ${author} <${email}> + * Copyright (C) {year} {author} <{email}> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,24 +17,28 @@ * 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; +struct dev_context {{ + /* 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); +SR_PRIV int {lib}_receive_data(int fd, int revents, void *cb_data); #endif