]> sigrok.org Git - sigrok-util.git/blobdiff - source/drv-protocol.h
Create bundle.sh
[sigrok-util.git] / source / drv-protocol.h
index dae5ffed5e3c665df998412e1b757126d6541ffb..f6906116893ee906b268dbdbe2c0123b25540e2d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the libsigrok project.
  *
  * Copyright (C) ${year} ${author} <${email}>
  *
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef LIBSIGROK_${upper}_H
-#define LIBSIGROK_${upper}_H
+#ifndef LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H
+#define LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H
+
+#include <stdint.h>
+#include <glib.h>
+#include <libsigrok/libsigrok.h>
+#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);