X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=blobdiff_plain;f=source%2Fdrv-protocol.h;h=c417f5dd016d052a4f56e985fc53a04d6d233578;hp=3f0cf65de0ebbd4b0e4713e75e5654a604607a56;hb=4e20cf8ffda277860b350a98fb86bf5d07ce1a80;hpb=6a94754feb0b2de80dfd367fcad556ab08b6540e diff --git a/source/drv-protocol.h b/source/drv-protocol.h index 3f0cf65..c417f5d 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,19 @@ * along with this program. If not, see . */ -#ifndef LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H -#define LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H +#ifndef LIBSIGROK_HARDWARE_{upper}_PROTOCOL_H +#define LIBSIGROK_HARDWARE_{upper}_PROTOCOL_H -/** Private, per-device-instance driver context. */ -struct dev_context { - /** The current sampling limit (in number of samples). */ - uint64_t limit_samples; +#include +#include +#include +#include "libsigrok-internal.h" - /** The current sampling limit (in ms). */ - uint64_t limit_msec; +#define LOG_PREFIX "{short}" - /** Opaque pointer passed in by the frontend. */ - void *cb_data; +struct dev_context {{ +}}; - /** 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