]> sigrok.org Git - libsigrok.git/blame - output/binary.c
serial-dmm: Use sr_dev_inst to store connection handle.
[libsigrok.git] / output / binary.c
CommitLineData
1c5b9d30
UH
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>
45c59c8b
BV
24#include "libsigrok.h"
25#include "libsigrok-internal.h"
1c5b9d30 26
a944a84b
UH
27/* Message logging helpers with driver-specific prefix string. */
28#define DRIVER_LOG_DOMAIN "output/binary: "
29#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
30#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
31#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
32#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
33#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
34#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
35
054e6709
UH
36static int data(struct sr_output *o, const uint8_t *data_in,
37 uint64_t length_in, uint8_t **data_out, uint64_t *length_out)
1c5b9d30 38{
054e6709 39 uint8_t *outbuf;
1c5b9d30 40
cb93f8a9 41 (void)o;
1c5b9d30 42
819184ee 43 if (!data_in) {
a944a84b 44 sr_err("%s: data_in was NULL", __func__);
133a37bf 45 return SR_ERR_ARG;
819184ee
UH
46 }
47
48 if (!length_out) {
a944a84b 49 sr_err("%s: length_out was NULL", __func__);
133a37bf 50 return SR_ERR_ARG;
819184ee
UH
51 }
52
53 if (length_in == 0) {
a944a84b 54 sr_err("%s: length_in was 0", __func__);
133a37bf 55 return SR_ERR_ARG;
819184ee
UH
56 }
57
133a37bf 58 if (!(outbuf = g_try_malloc0(length_in))) {
a944a84b 59 sr_err("%s: outbuf malloc failed", __func__);
e46b8fb1 60 return SR_ERR_MALLOC;
819184ee 61 }
1c5b9d30 62
1c5b9d30 63 memcpy(outbuf, data_in, length_in);
1c5b9d30 64 *data_out = outbuf;
d20ba649 65 *length_out = length_in;
1c5b9d30 66
e46b8fb1 67 return SR_OK;
1c5b9d30
UH
68}
69
7c1d391c 70SR_PRIV struct sr_output_format output_binary = {
cdb3573c 71 .id = "binary",
d494a4aa
UH
72 .description = "Raw binary",
73 .df_type = SR_DF_LOGIC,
74 .init = NULL,
75 .data = data,
76 .event = NULL,
1c5b9d30 77};