forked from analogdevicesinc/scopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadc_sample_conv.cpp
79 lines (69 loc) · 2.18 KB
/
adc_sample_conv.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
* Copyright (c) 2019 Analog Devices Inc.
*
* This file is part of Scopy
* (see http://www.github.com/analogdevicesinc/scopy).
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "adc_sample_conv.hpp"
#include <libm2k/analog/m2kanalogin.hpp>
using namespace gr;
using namespace adiscope;
using namespace libm2k::analog;
adc_sample_conv::adc_sample_conv(int nconnections,
M2kAnalogIn* adc,
bool inverse) :
gr::sync_block("adc_sample_conv",
gr::io_signature::make(nconnections, nconnections, sizeof(float)),
gr::io_signature::make(nconnections, nconnections, sizeof(float))),
d_nconnections(nconnections),
inverse(inverse),
m2k_adc(adc)
{
}
adc_sample_conv::~adc_sample_conv()
{
}
double adc_sample_conv::conversionWrapper(unsigned int chn_idx, double sample, bool raw_to_volts)
{
try {
if (raw_to_volts) {
return m2k_adc->convertRawToVolts(chn_idx, (short)sample);
} else {
return m2k_adc->convertVoltsToRaw(chn_idx, sample);
}
} catch (std::exception &e) {
return 0;
}
}
int adc_sample_conv::work(int noutput_items,
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items)
{
gr::thread::scoped_lock lock(d_setlock);
for (unsigned int i = 0; i < input_items.size(); i++) {
const float* in = static_cast<const float *>(input_items[i]);
float *out = static_cast<float *>(output_items[i]);
if (inverse) {
for (int j = 0; j < noutput_items; j++) {
out[j] = m2k_adc->convertVoltsToRaw(i, in[j]);
}
} else {
for (int j = 0; j < noutput_items; j++)
out[j] = m2k_adc->convertRawToVolts(i, in[j]);
}
}
return noutput_items;
}