]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/microchip-pickit2/protocol.h
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / hardware / microchip-pickit2 / protocol.h
index fcb72c5fe4c5266cfeafc9e7358a6ba4284f59ab..28b152f00ea1f9ef3cdd12be1972556c148f9907 100644 (file)
@@ -40,6 +40,7 @@ enum pickit_state {
 };
 
 struct dev_context {
+       char **channel_names;
        enum pickit_state state;
        const uint64_t *samplerates;
        size_t num_samplerates;
@@ -49,7 +50,7 @@ struct dev_context {
        size_t curr_captureratio_idx;
        struct sr_sw_limits sw_limits;
        gboolean detached_kernel_driver;
-       int32_t triggers[PICKIT2_CHANNEL_COUNT];        /**!< see \ref SR_TRIGGER_ZERO et al */
+       int32_t triggers[PICKIT2_CHANNEL_COUNT];        /**@< see @ref SR_TRIGGER_ZERO et al */
        size_t trigpos;
        uint8_t samples_raw[PICKIT2_SAMPLE_RAWLEN];
        uint8_t samples_conv[PICKIT2_SAMPLE_COUNT];