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