Add raw binary output format.

Also, rename the "bin" format to "bits" for now to avoid confusion.
This commit is contained in:
Uwe Hermann 2010-04-12 21:22:58 +02:00
parent afc8e4deb6
commit 1c5b9d302c
4 changed files with 95 additions and 2 deletions

View File

@ -38,6 +38,7 @@ libsigrok_la_SOURCES = \
hardware/zeroplus-logic-cube/gl_usb.c \
hardware/zeroplus-logic-cube/gl_usb.h \
hardware/zeroplus-logic-cube/zeroplus.c \
output/output_binary.c \
output/output_text.c \
output/output_vcd.c \
output/output_gnuplot.c \

View File

@ -21,12 +21,14 @@
extern struct output_format output_text_binary;
extern struct output_format output_text_hex;
extern struct output_format output_binary;
extern struct output_format output_vcd;
extern struct output_format output_gnuplot;
struct output_format *output_module_list[] = {
&output_text_binary,
&output_text_hex,
&output_binary,
&output_vcd,
&output_gnuplot,
NULL,

90
output/output_binary.c Normal file
View File

@ -0,0 +1,90 @@
/*
* This file is part of the sigrok project.
*
* Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <sigrok.h>
#include "config.h"
static int init(struct output *o)
{
/* Prevent compiler warnings. */
o = o;
/* Nothing so far, but we might want to add stuff here later. */
return 0;
}
static int event(struct output *o, int event_type, char **data_out,
uint64_t *length_out)
{
char *outbuf;
int outlen = 1; /* FIXME */
/* Prevent compiler warnings. */
o = o;
event_type = event_type;
switch(event_type) {
case DF_TRIGGER:
break;
case DF_END:
outbuf = calloc(1, outlen); /* FIXME */
if (outbuf == NULL)
return SIGROK_ERR_MALLOC;
*data_out = outbuf;
*length_out = outlen;
break;
}
return SIGROK_OK;
}
static int data(struct output *o, char *data_in, uint64_t length_in,
char **data_out, uint64_t *length_out)
{
uint64_t outsize;
char *outbuf;
/* Prevent compiler warnings. */
o = o;
outsize = length_in;
outbuf = calloc(1, outsize);
if (outbuf == NULL)
return SIGROK_ERR_MALLOC;
/* TODO: Are disabled probes handled correctly? */
memcpy(outbuf, data_in, length_in);
*data_out = outbuf;
*length_out = outsize;
return SIGROK_OK;
}
struct output_format output_binary = {
"binary",
"Raw binary",
init,
data,
event,
};

View File

@ -258,8 +258,8 @@ static int data_hex(struct output *o, char *data_in, uint64_t length_in, char **
struct output_format output_text_binary = {
"bin",
"Text (binary)",
"bits",
"Text (bits)",
init_binary,
data_binary,
event