]> sigrok.org Git - libsigrok.git/blame - src/transform/nop.c
transform/invert: Support SR_DF_ANALOG2.
[libsigrok.git] / src / transform / nop.c
CommitLineData
39f1752e
UH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2015 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
6ec6c43b 21#include <config.h>
39f1752e 22#include <string.h>
c1aae900 23#include <libsigrok/libsigrok.h>
39f1752e
UH
24#include "libsigrok-internal.h"
25
26#define LOG_PREFIX "transform/nop"
27
28static int receive(const struct sr_transform *t,
29 struct sr_datafeed_packet *packet_in,
30 struct sr_datafeed_packet **packet_out)
31{
32 if (!t || !t->sdi || !packet_in || !packet_out)
33 return SR_ERR_ARG;
34
35 /* Do nothing, just pass on packets unmodified. */
36 sr_spew("Received packet of type %d, passing on unmodified.", packet_in->type);
37 *packet_out = packet_in;
38
39 return SR_OK;
40}
41
42SR_PRIV struct sr_transform_module transform_nop = {
43 .id = "nop",
44 .name = "NOP",
45 .desc = "Do nothing",
46 .options = NULL,
47 .init = NULL,
48 .receive = receive,
49 .cleanup = NULL,
50};