X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Finput%2Fbinary.c;h=91e4d3c434e45cdcfa65b3597e2f16c8476af9cc;hb=2355d2291925ace0bd9c85b21f2ce7e2c6606c7f;hp=51b9f6bfc4c2fbcff0487e257f0a9a0164ac3b60;hpb=3be42bc22f8b36599a448273c12a76d3e0f7a940;p=libsigrok.git diff --git a/src/input/binary.c b/src/input/binary.c index 51b9f6bf..91e4d3c4 100644 --- a/src/input/binary.c +++ b/src/input/binary.c @@ -29,9 +29,9 @@ #define LOG_PREFIX "input/binary" -#define MAX_CHUNK_SIZE 4096 -#define DEFAULT_NUM_CHANNELS 8 -#define DEFAULT_SAMPLERATE 0 +#define MAX_CHUNK_SIZE 4096 +#define DEFAULT_NUM_CHANNELS 8 +#define DEFAULT_SAMPLERATE 0 struct context { gboolean started; @@ -75,7 +75,7 @@ static int process_buffer(struct sr_input *in) inc = in->priv; if (!inc->started) { - std_session_send_df_header(in->sdi, LOG_PREFIX); + std_session_send_df_header(in->sdi); if (inc->samplerate) { packet.type = SR_DF_META; @@ -137,11 +137,21 @@ static int end(struct sr_input *in) inc = in->priv; if (inc->started) - std_session_send_df_end(in->sdi, LOG_PREFIX); + std_session_send_df_end(in->sdi); return ret; } +static int reset(struct sr_input *in) +{ + struct context *inc = in->priv; + + inc->started = FALSE; + g_string_truncate(in->buf, 0); + + return SR_OK; +} + static struct sr_option options[] = { { "numchannels", "Number of channels", "Number of channels", NULL, NULL }, { "samplerate", "Sample rate", "Sample rate", NULL, NULL }, @@ -167,4 +177,5 @@ SR_PRIV struct sr_input_module input_binary = { .init = init, .receive = receive, .end = end, + .reset = reset, };