forked from analogdevicesinc/scopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdigitalchannel_manager.cpp
651 lines (521 loc) · 9.8 KB
/
digitalchannel_manager.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <vector>
#include <string.h>
#include <iio.h>
#include <QDebug>
#include <QJsonArray>
#include <QJsonDocument>
#include <QJsonObject>
#include <QJsonValue>
#include <QTimer>
#include <QFile>
#include <QtQml/QJSEngine>
#include <QtQml/QQmlEngine>
#include <QDirIterator>
#include <QPushButton>
#include <QFileDialog>
///* pulseview and sigrok */
#include <boost/math/common_factor.hpp>
#include "pulseview/pv/mainwindow.hpp"
#include "pulseview/pv/devices/binarybuffer.hpp"
#include "pulseview/pv/devicemanager.hpp"
#include "pulseview/pv/view/view.hpp"
#include "pulseview/pv/toolbars/mainbar.hpp"
#include "libsigrokcxx/libsigrokcxx.hpp"
#include "libsigrokdecode/libsigrokdecode.h"
//#include "pattern_generator.hpp"
#include "digitalchannel_manager.hpp"
using namespace std;
using namespace adiscope;
namespace pv {
class MainWindow;
class DeviceManager;
class Session;
namespace view {
class View;
class TraceTreeItem;
}
namespace toolbars {
class MainBar;
}
namespace widgets {
class DeviceToolButton;
}
}
namespace sigrok {
class Context;
}
namespace adiscope {
ChannelManager::ChannelManager()
{
}
ChannelManager::~ChannelManager()
{
}
std::vector<int> ChannelManager::get_selected_indexes()
{
unsigned int i=0;
std::vector<int> selection;
for (auto ch : channel_group) {
if (ch->is_selected()) {
selection.push_back(i);
}
i++;
}
return selection;
}
uint16_t ChannelManager::get_enabled_mask()
{
unsigned int i=0;
uint16_t ret=0;
for (auto ch : channel_group) {
if (ch->is_enabled()) {
ret = ret | ch->get_mask();
}
i++;
}
return ret;
}
uint16_t ChannelManager::get_selected_mask()
{
unsigned int i=0;
uint16_t ret=0;
for (auto ch : channel_group) {
if (ch->is_selected()) {
ret = ret | ch->get_mask();
}
i++;
}
return ret;
}
std::vector<int> ChannelManager::get_enabled_indexes()
{
unsigned int i=0;
std::vector<int> selection;
for (auto ch : channel_group) {
if (ch->is_enabled()) {
selection.push_back(i);
}
i++;
}
return selection;
}
size_t ChannelManager::get_channel_group_count()
{
return channel_group.size();
}
size_t ChannelManager::get_channel_count()
{
return channel.size();
}
std::vector<ChannelGroup *> *ChannelManager::get_channel_groups()
{
return &channel_group;
}
ChannelGroup *ChannelManager::get_channel_group(int index)
{
return channel_group[index];
}
void ChannelManager::deselect_all()
{
for (auto&& ch : channel_group) {
ch->select(false);
}
}
QColor Channel::getBgcolor() const
{
return bgcolor;
}
void Channel::setBgcolor(const QColor& value)
{
bgcolor = value;
}
QColor Channel::getEdgecolor() const
{
return edgecolor;
}
void Channel::setEdgecolor(const QColor& value)
{
edgecolor = value;
}
QColor Channel::getHighcolor() const
{
return highcolor;
}
void Channel::setHighcolor(const QColor& value)
{
highcolor = value;
}
QColor Channel::getLowcolor() const
{
return lowcolor;
}
void Channel::setLowcolor(const QColor& value)
{
lowcolor = value;
}
Channel::Channel(uint16_t id_, std::string label_)
{
label = label_;
id =id_;
mask = 1<<id_;
lowcolor = QColor(0xC0, 0x00, 0x00);
highcolor = QColor(0x00, 0xC0, 0x00);
edgecolor = QColor(0x80, 0x80, 0x80);
bgcolor = QColor();
}
Channel::~Channel()
{
}
ChannelUI::ChannelUI(Channel *ch, QWidget *parent) : QWidget(parent)
{
this->ch = ch;
}
ChannelUI::~ChannelUI()
{}
Channel *ChannelUI::get_channel()
{
return ch;
}
uint16_t Channel::get_mask()
{
return mask;
}
uint16_t Channel::get_id()
{
return id;
}
void Channel::set_id(int val)
{
id=val;
}
std::string Channel::get_label()
{
return label;
}
void Channel::set_label(std::string label)
{
this->label = label;
}
std::vector<Channel *> *ChannelGroup::get_channels()
{
return &channels;
}
Channel *ChannelGroup::get_channel(int index)
{
if (index < channels.size()) {
return channels[index];
}
return nullptr;
}
QColor ChannelGroup::getBgcolor() const
{
return bgcolor;
}
void ChannelGroup::setBgcolor(const QColor& value)
{
bgcolor = value;
}
bool ChannelGroup::is_selected() const
{
return selected;
}
void ChannelGroup::select(bool value)
{
selected = value;
}
void ChannelGroup::group(bool value)
{
this->grouped = value;
}
void ChannelGroup::enable(bool value)
{
this->enabled = value;
}
bool ChannelGroup::is_grouped() const
{
return grouped;
}
bool ChannelGroup::is_enabled() const
{
return enabled;
}
QColor ChannelGroup::getHighcolor() const
{
return highcolor;
}
void ChannelGroup::setHighcolor(const QColor& value)
{
highcolor = value;
}
QColor ChannelGroup::getLowcolor() const
{
return lowcolor;
}
void ChannelGroup::setLowcolor(const QColor& value)
{
lowcolor = value;
}
QColor ChannelGroup::getEdgecolor() const
{
return edgecolor;
}
void ChannelGroup::setEdgecolor(const QColor& value)
{
edgecolor = value;
}
ChannelGroup::ChannelGroup(Channel *ch)
{
if (ch!=nullptr) {
channels.push_back(ch);
label = ch->get_label();
}
group(false);
select(false);
enable(true);
lowcolor = QColor(0xC0, 0x00, 0x00);
highcolor = QColor(0x00, 0xC0, 0x00);
edgecolor = QColor(0x80, 0x80, 0x80);
bgcolor = QColor();
}
ChannelGroup::ChannelGroup()
{
group(false);
select(false);
enable(true);
lowcolor = QColor(0xC0, 0x00, 0x00);
highcolor = QColor(0x00, 0xC0, 0x00);
edgecolor = QColor(0x80, 0x80, 0x80);
bgcolor = QColor();
}
ChannelGroup::~ChannelGroup()
{
//qDebug()<<"ChannelGroup destroyed";
}
void ChannelGroup::set_label(std::string label)
{
this->label = label;
}
std::string ChannelGroup::get_label()
{
return label;
}
uint16_t ChannelGroup::get_mask()
{
uint16_t mask = 0;
for (auto i=0; i<channels.size(); i++) {
mask = mask | channels[i]->get_mask();
}
return mask;
}
void ChannelGroup::add_channel(Channel *channel)
{
channels.push_back(channel);
}
void ChannelGroup::remove_channel(int chIndex)
{
channels.erase(channels.begin() + chIndex);
}
size_t ChannelGroup::get_channel_count()
{
return channels.size();
}
std::vector<uint16_t> ChannelGroup::get_ids()
{
std::vector<uint16_t> ret;
for (auto ch: (*get_channels())) {
ret.push_back(ch->get_id());
}
return ret;
}
ChannelGroupUI::ChannelGroupUI(ChannelGroup *chg,
QWidget *parent) : QWidget(parent)
{
this->chg = chg;
}
ChannelGroupUI::~ChannelGroupUI()
{
}
ChannelGroup *ChannelGroupUI::get_group()
{
return chg;
}
void ChannelGroupUI::select(bool selected)
{
chg->select(selected);
}
void ChannelGroupUI::enable(bool enabled)
{
chg->enable(enabled);
}
void DIOManager::init()
{
}
const char *DIOManager::channelNames[] = {
"voltage0", "voltage1", "voltage2", "voltage3",
"voltage4", "voltage5", "voltage6", "voltage7",
"voltage8", "voltage9", "voltage10", "voltage11",
"voltage12", "voltage13", "voltage14", "voltage15"
};
DIOManager::DIOManager(iio_context *ctx, Filter *filt) : ctx(ctx)
{
dev = filt->find_device(ctx,TOOL_DIGITALIO);
nrOfChannels = iio_device_get_channels_count(dev);
outputEnabled = false;
for (auto i=0; i<nrOfChannels; i++) {
auto ch = getChannel(i);
iio_channel_attr_write(ch, "direction", "in");
iio_channel_attr_write(ch, "raw", "0");
}
direction = gpi = gpo = lockMask = outputEnabled = 0x00;
}
DIOManager::~DIOManager()
{
}
iio_channel *DIOManager::getChannel(int ch)
{
return iio_device_find_channel(dev,channelNames[ch],0);
}
void DIOManager::setOutputMode(int chid, bool mode)
{
auto ch = getChannel(chid);
char strMode[20];
if (mode) {
strcpy(strMode,"open-drain");
} else {
strcpy(strMode,"push-pull");
}
iio_channel_attr_write(ch, "outputmode", strMode);
}
void DIOManager::setDeviceDirection(int chid, bool force)
{
auto ch = getChannel(chid);
if (force) {
qDebug()<<"direction out channel - "<<chid<<"\n";
iio_channel_attr_write(ch, "direction", "out");
return;
}
if (!isLocked(chid)) {
if (outputEnabled && getDirection(chid)) {
qDebug()<<"direction out channel" <<chid;
iio_channel_attr_write(ch, "direction", "out");
} else {
qDebug()<<"direction in channel" <<chid;
iio_channel_attr_write(ch, "direction", "in");
}
}
}
int DIOManager::getGpo()
{
return gpo;
}
void DIOManager::setOutRaw(int ch, bool val)
{
if (val) {
gpo|=1<<ch;
} else {
gpo&=(~(1<<ch));
}
setDeviceOutRaw(ch);
}
bool DIOManager::getOutRaw(int ch)
{
return gpo & (1<<ch);
}
void DIOManager::setDeviceOutRaw(int ch)
{
if (outputEnabled) {
auto channel = getChannel(ch);
if (getOutRaw(ch)) {
iio_channel_attr_write(channel, "raw", "1");
} else {
iio_channel_attr_write(channel, "raw", "0");
}
}
}
int DIOManager::getGpi()
{
gpi = 0;
for (auto i=0; i<nrOfChannels; i++) {
gpi|= (getInRaw(i) << i);
}
return gpi;
}
bool DIOManager::getInRaw(int ch)
{
auto channel = getChannel(ch);
char buf[10];
iio_channel_attr_read(channel,"raw",buf,10);
if (buf[0]=='1') {
return 1;
} else {
return 0;
}
}
void DIOManager::setDirection(int ch, bool output)
{
if (output) {
direction|=(1<<ch);
} else {
direction&=(~(1<<ch));
}
setDeviceDirection(ch,false);
}
bool DIOManager::getDirection(int ch)
{
return direction&(1<<ch);
}
void DIOManager::setMode(int mask)
{
int i=0;
for(i=0;i<nrOfChannels;i++) {
setOutputMode(i,mask&0x01);
mask=mask>>1;
}
}
void DIOManager::lock(int mask)
{
lockMask = mask;
int i=0;
while (mask) {
if (mask&0x01) {
setDeviceDirection(i,true);
}
mask=mask>>1;
i++;
}
Q_EMIT locked();
}
bool DIOManager::isLocked(int ch)
{
return lockMask & (1<<ch);
}
int DIOManager::getLockMask()
{
return lockMask;
}
void DIOManager::unlock()
{
lockMask = 0;
for (auto i=0; i<nrOfChannels; i++) {
setDeviceDirection(i,false);
}
Q_EMIT unlocked();
}
bool DIOManager::getOutputEnabled()
{
return outputEnabled;
}
void DIOManager::enableOutput(bool output)
{
if (outputEnabled != output) {
outputEnabled = output;
for (auto i=0; i<nrOfChannels; i++) {
setDeviceDirection(i,false);
setDeviceOutRaw(i);
}
}
}
}