]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/atten-pps3xxx/protocol.h
Consistently use the "Sysclk" spelling everywhere.
[libsigrok.git] / src / hardware / atten-pps3xxx / protocol.h
index 01983d3bdf2cbac3cd7984709902b47096971103..f9409c2d1f7c01dcf61533fe3454a74c2b09809d 100644 (file)
@@ -22,7 +22,7 @@
 
 #include <stdint.h>
 #include <glib.h>
-#include "libsigrok.h"
+#include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
 #define LOG_PREFIX "atten-pps3xxx"
@@ -54,7 +54,7 @@ struct channel_spec {
 
 struct pps_model {
        int modelid;
-       char *name;
+       const char *name;
        int channel_modes;
        int num_channels;
        struct channel_spec channels[MAX_CHANNELS];
@@ -71,15 +71,11 @@ struct per_channel_config {
        gboolean output_enabled_set;
 };
 
-/** Private, per-device-instance driver context. */
 struct dev_context {
-       /* Model-specific information */
        const struct pps_model *model;
 
-       /* Acquisition state */
        gboolean acquisition_running;
 
-       /* Operational state */
        gboolean config_dirty;
        struct per_channel_config *config;
        /* Blocking write timeout for packet. */
@@ -91,7 +87,6 @@ struct dev_context {
        int channel_mode_set;
        gboolean over_current_protection_set;
 
-       /* Temporary state across callbacks */
        uint8_t packet[PACKET_SIZE];
        int packet_size;