]> sigrok.org Git - libsigrok.git/blob - src/transform/invert.c
Build: Include <config.h> first in all source files
[libsigrok.git] / src / transform / invert.c
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 <config.h>
22 #include <string.h>
23 #include <libsigrok/libsigrok.h>
24 #include "libsigrok-internal.h"
25
26 #define LOG_PREFIX "transform/invert"
27
28 static int receive(const struct sr_transform *t,
29                 struct sr_datafeed_packet *packet_in,
30                 struct sr_datafeed_packet **packet_out)
31 {
32         const struct sr_datafeed_logic *logic;
33         const struct sr_datafeed_analog *analog;
34         struct sr_channel *ch;
35         GSList *l;
36         float *fdata, *f;
37         int si, num_channels, c;
38         uint8_t *b;
39         uint64_t i, j;
40
41         if (!t || !t->sdi || !packet_in || !packet_out)
42                 return SR_ERR_ARG;
43
44         switch (packet_in->type) {
45         case SR_DF_LOGIC:
46                 logic = packet_in->payload;
47                 for (i = 0; i <= logic->length - logic->unitsize; i += logic->unitsize) {
48                         for (j = 0; j < logic->unitsize; j++) {
49                                 /* For now invert every bit in every byte. */
50                                 b = (uint8_t *)logic->data + i + logic->unitsize - 1 - j;
51                                 *b = ~(*b);
52                         }
53                 }
54                 break;
55         case SR_DF_ANALOG:
56                 analog = packet_in->payload;
57                 fdata = (float *)analog->data;
58                 num_channels = g_slist_length(analog->channels);
59                 for (si = 0; si < analog->num_samples; si++) {
60                         /* For now invert all values in all channels. */
61                         for (l = analog->channels, c = 0; l; l = l->next, c++) {
62                                 ch = l->data;
63                                 (void)ch;
64                                 f = &fdata[si * num_channels + c];
65                                 *f = 1.0 / *f;
66                         }
67                 }
68                 break;
69         default:
70                 sr_spew("Unsupported packet type %d, ignoring.", packet_in->type);
71                 break;
72         }
73
74         /* Return the in-place-modified packet. */
75         *packet_out = packet_in;
76
77         return SR_OK;
78 }
79
80 SR_PRIV struct sr_transform_module transform_invert = {
81         .id = "invert",
82         .name = "Invert",
83         .desc = "Invert values",
84         .options = NULL,
85         .init = NULL,
86         .receive = receive,
87         .cleanup = NULL,
88 };