diff options
author | Bert Vermeulen <bert@biot.com> | 2013-11-26 16:05:54 +0100 |
---|---|---|
committer | Bert Vermeulen <bert@biot.com> | 2013-11-26 16:07:53 +0100 |
commit | 37b94c205e4c1c43e77e29993108f23066cbce05 (patch) | |
tree | d902c6f80bf2b2afc571fd611111f6235cf2624e /libsigrokdecode.h | |
parent | d95f2888014f54fc650dc575c270cc2891580f4f (diff) | |
download | libsigrokdecode-37b94c205e4c1c43e77e29993108f23066cbce05.tar.gz libsigrokdecode-37b94c205e4c1c43e77e29993108f23066cbce05.zip |
Remove 64-probe limit.
Fixes bug 120.
Diffstat (limited to 'libsigrokdecode.h')
-rw-r--r-- | libsigrokdecode.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libsigrokdecode.h b/libsigrokdecode.h index 3a72d2c..3175fd8 100644 --- a/libsigrokdecode.h +++ b/libsigrokdecode.h @@ -133,8 +133,6 @@ enum { SRD_OUTPUT_META, }; -#define SRD_MAX_NUM_PROBES 64 - enum { SRD_CONF_SAMPLERATE = 10000, }; @@ -216,6 +214,7 @@ struct srd_decoder_inst { int dec_num_probes; int *dec_probemap; int data_unitsize; + uint8_t *probe_samples; GSList *next_di; }; |