]> sigrok.org Git - libsigrokdecode.git/blobdiff - libsigrokdecode.h
decoder: increment Python object reference for .has_channel() result
[libsigrokdecode.git] / libsigrokdecode.h
index 44402673479cd1af19d4599e7e9e5f3be5be7d52..3ce6ae5ee37b798c53c583d7b30cec1a645a2b7a 100644 (file)
@@ -190,7 +190,7 @@ struct srd_decoder {
        GSList *binary;
 
        /**
-        * List of logic output channels (item: id, description, samplerate).
+        * List of logic output channels (item: id, description).
         */
        GSList *logic_output_channels;
 
@@ -241,7 +241,6 @@ struct srd_decoder_annotation_row {
 struct srd_decoder_logic_output_channel {
        char *id;
        char *desc;
-       uint64_t samplerate;
 };
 
 struct srd_decoder_inst {
@@ -324,12 +323,12 @@ struct srd_proto_data_annotation {
 struct srd_proto_data_binary {
        int bin_class; /* Index into "struct srd_decoder"->binary. */
        uint64_t size;
-       const unsigned char *data;
+       const uint8_t *data;
 };
 struct srd_proto_data_logic {
-       int logic_class;
-       uint64_t size;
-       const unsigned char *data;
+       int logic_group;
+       uint64_t repeat_count; /* Number of times the value in data was repeated. */
+       const uint8_t *data; /* Bitfield containing the states of the logic outputs */
 };
 
 typedef void (*srd_pd_output_callback)(struct srd_proto_data *pdata,