]> sigrok.org Git - libsigrok.git/commitdiff
Input/binary: Add reset() function
authorSoeren Apel <redacted>
Mon, 2 May 2016 16:01:10 +0000 (18:01 +0200)
committerUwe Hermann <redacted>
Mon, 9 May 2016 11:02:29 +0000 (13:02 +0200)
src/input/binary.c

index 51b9f6bfc4c2fbcff0487e257f0a9a0164ac3b60..e693f581f78872b99502d3e3374039b38d6587a5 100644 (file)
@@ -142,6 +142,16 @@ static int end(struct sr_input *in)
        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,
 };