]> sigrok.org Git - libsigrok.git/blob - output/output_binary.c
add DF_ANALOG, and an analog output module
[libsigrok.git] / output / output_binary.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <stdlib.h>
22 #include <string.h>
23 #include <glib.h>
24 #include <sigrok.h>
25 #include "config.h"
26
27 static int event(struct output *o, int event_type, char **data_out,
28                  uint64_t *length_out)
29 {
30         /* Prevent compiler warnings. */
31         o = o;
32
33         switch (event_type) {
34         case DF_TRIGGER:
35                 /* TODO? Ignore? */
36                 break;
37         case DF_END:
38                 *data_out = NULL;
39                 *length_out = 0;
40                 break;
41         }
42
43         return SIGROK_OK;
44 }
45
46 static int data(struct output *o, char *data_in, uint64_t length_in,
47                 char **data_out, uint64_t *length_out)
48 {
49         char *outbuf;
50
51         /* Prevent compiler warnings. */
52         o = o;
53
54         if (!(outbuf = calloc(1, length_in)))
55                 return SIGROK_ERR_MALLOC;
56
57         memcpy(outbuf, data_in, length_in);
58         *data_out = outbuf;
59         *length_out = length_in;
60
61         return SIGROK_OK;
62 }
63
64 struct output_format output_binary = {
65         "binary",
66         "Raw binary",
67         DF_LOGIC,
68         NULL,
69         data,
70         event,
71 };