forked from ardyesp/DLO-138
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interface.ino
418 lines (316 loc) · 7.72 KB
/
interface.ino
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
// ------------------------
const char* getTimebaseLabel() {
// ------------------------
return tbNames[currentTimeBase];
}
// interface operations defined below
long lastBtnPress = 0;
// ------------------------
void btn4ISR() {
// ------------------------
static boolean pressed = false;
static long pressedTime = 0;
// btn pressed or released?
if(!pressed && (digitalRead(BTN4) == LOW)) {
// debounce
if(millis() - pressedTime < BTN_DEBOUNCE_TIME)
return;
pressedTime = millis();
pressed = true;
}
if(pressed && (digitalRead(BTN4) == HIGH)) {
// debounce
if(millis() - pressedTime < 5)
return;
pressed = false;
// is it a short press
if(millis() - pressedTime < 1000) {
// toggle hold
hold = !hold;
repaintLabels();
}
else {
// long press reset parameter to default
resetParam();
}
}
}
// ------------------------
void readESwitchISR() {
// ------------------------
// debounce
if(millis() - lastBtnPress < BTN_DEBOUNCE_TIME)
return;
lastBtnPress = millis();
// select different parameters to change
focusNextLabel();
// request repainting of screen labels
repaintLabels();
// manually update display if frozen
if(hold)
drawWaves();
if(triggerType != TRIGGER_AUTO)
// break the sampling loop
keepSampling = false;
}
// ------------------------
void resetParam() {
// ------------------------
// which label has current focus
switch(currentFocus) {
case L_triggerLevel:
// set trigger level to 0
setTriggerLevel(0);
saveParameter(PARAM_TLEVEL, 0);
repaintLabels();
break;
case L_window:
// set x in the middle
changeXCursor((NUM_SAMPLES - GRID_WIDTH)/2);
break;
case L_vPos1:
// zero the trace base
calculateTraceZero(0);
changeYCursor(0, -GRID_HEIGHT/2 - 1);
break;
case L_vPos2:
// zero the trace base
calculateTraceZero(1);
changeYCursor(1, -GRID_HEIGHT/2 - 1);
break;
case L_vPos3:
changeYCursor(2, -GRID_HEIGHT/2 - 1);
break;
case L_vPos4:
changeYCursor(3, -GRID_HEIGHT/2 - 1);
break;
default:
// toggle stats printing
printStats = !printStats;
saveParameter(PARAM_STATS, printStats);
break;
}
// manually update display if frozen
if(hold)
drawWaves();
if(triggerType != TRIGGER_AUTO)
// break the sampling loop
keepSampling = false;
}
// ------------------------
void calculateTraceZero(int waveID) {
// ------------------------
// calculate zero only if switch is in GND position
if(couplingPos != CPL_GND)
return;
if(waveID > 1)
return;
uint16_t *wave = (waveID == 0)? ch1Capture : ch2Capture;
// zero the trace
int32_t sumSamples = 0;
for(uint16_t k = 0; k < NUM_SAMPLES; k++) {
sumSamples += wave[k];
}
uint16_t Vavr = sumSamples/NUM_SAMPLES;
if(waveID == 0) {
zeroVoltageA1 = Vavr;
saveParameter(PARAM_ZERO1, zeroVoltageA1);
}
else {
zeroVoltageA2 = Vavr;
saveParameter(PARAM_ZERO2, zeroVoltageA2);
}
}
// ------------------------
void encoderChanged(int steps) {
// ------------------------
// which label has current focus
switch(currentFocus) {
case L_timebase:
if(steps > 0) decrementTimeBase(); else incrementTimeBase();
break;
case L_triggerType:
if(steps > 0) incrementTT(); else decrementTT();
break;
case L_triggerEdge:
if(steps > 0) setTriggerRising(); else setTriggerFalling();
break;
case L_triggerLevel:
if(steps > 0) incrementTLevel(); else decrementTLevel();
break;
case L_waves:
if(steps > 0) incrementWaves(); else decrementWaves();
break;
case L_window:
if(steps > 0) changeXCursor(xCursor + XCURSOR_STEP); else changeXCursor(xCursor - XCURSOR_STEP);
break;
case L_vPos1:
if(steps > 0) changeYCursor(0, yCursors[0] - YCURSOR_STEP); else changeYCursor(0, yCursors[0] + YCURSOR_STEP);
break;
case L_vPos2:
if(steps > 0) changeYCursor(1, yCursors[1] - YCURSOR_STEP); else changeYCursor(1, yCursors[1] + YCURSOR_STEP);
break;
case L_vPos3:
if(steps > 0) changeYCursor(2, yCursors[2] - YCURSOR_STEP); else changeYCursor(2, yCursors[2] + YCURSOR_STEP);
break;
case L_vPos4:
if(steps > 0) changeYCursor(3, yCursors[3] - YCURSOR_STEP); else changeYCursor(3, yCursors[3] + YCURSOR_STEP);
break;
}
// manually update display if frozen
if(hold)
drawWaves();
if(triggerType != TRIGGER_AUTO)
// break the sampling loop
keepSampling = false;
}
// ------------------------
void incrementTLevel() {
// ------------------------
int16_t tL = getTriggerLevel();
setTriggerLevel(tL + 5);
saveParameter(PARAM_TLEVEL, tL);
repaintLabels();
}
// ------------------------
void decrementTLevel() {
// ------------------------
int16_t tL = getTriggerLevel();
setTriggerLevel(tL - 5);
saveParameter(PARAM_TLEVEL, tL);
repaintLabels();
}
// A1, D1, D2, A2
// 0, 2, 3, 1
// ------------------------
void incrementWaves() {
// ------------------------
// add more waves
if(waves[1]) {
return;
}
else if(waves[3]) {
waves[1] = true;
saveParameter(PARAM_WAVES + 1, waves[1]);
}
else if(waves[2]) {
waves[3] = true;
saveParameter(PARAM_WAVES + 3, waves[3]);
}
else {
waves[2] = true;
saveParameter(PARAM_WAVES + 2, waves[2]);
}
repaintLabels();
}
// ------------------------
void decrementWaves() {
// ------------------------
// remove waves
if(waves[1]) {
waves[1] = false;
saveParameter(PARAM_WAVES + 1, waves[1]);
}
else if(waves[3]) {
waves[3] = false;
saveParameter(PARAM_WAVES + 3, waves[3]);
}
else if(waves[2]) {
waves[2] = false;
saveParameter(PARAM_WAVES + 2, waves[2]);
}
else {
return;
}
repaintLabels();
}
// ------------------------
void setTriggerRising() {
// ------------------------
if(triggerRising)
return;
setTriggerRising(true);
saveParameter(PARAM_TRIGDIR, triggerRising);
repaintLabels();
}
// ------------------------
void setTriggerFalling() {
// ------------------------
if(!triggerRising)
return;
setTriggerRising(false);
saveParameter(PARAM_TRIGDIR, triggerRising);
repaintLabels();
}
// ------------------------
void incrementTT() {
// ------------------------
if(triggerType == TRIGGER_SINGLE)
return;
setTriggerType(triggerType + 1);
// trigger type is not saved
// saveParameter(PARAM_TRIGTYPE, triggerType);
repaintLabels();
}
// ------------------------
void decrementTT() {
// ------------------------
if(triggerType == TRIGGER_AUTO)
return;
setTriggerType(triggerType - 1);
// trigger type is not saved
// saveParameter(PARAM_TRIGTYPE, triggerType);
repaintLabels();
}
// ------------------------
void incrementTimeBase() {
// ------------------------
if(currentTimeBase == T50MS)
return;
setTimeBase(currentTimeBase + 1);
}
// ------------------------
void decrementTimeBase() {
// ------------------------
if(currentTimeBase == T20US)
return;
setTimeBase(currentTimeBase - 1);
}
// ------------------------
void setTimeBase(uint8_t timeBase) {
// ------------------------
currentTimeBase = timeBase;
setSamplingRate(timeBase);
saveParameter(PARAM_TIMEBASE, currentTimeBase);
// request repainting of screen labels
repaintLabels();
}
// ------------------------
void toggleWave(uint8_t num) {
// ------------------------
waves[num] = !waves[num];
saveParameter(PARAM_WAVES + num, waves[num]);
repaintLabels();
}
// ------------------------
void changeYCursor(uint8_t num, int16_t yPos) {
// ------------------------
if(yPos > 0)
yPos = 0;
if(yPos < -GRID_HEIGHT)
yPos = -GRID_HEIGHT;
yCursors[num] = yPos;
saveParameter(PARAM_YCURSOR + num, yCursors[num]);
repaintLabels();
}
// ------------------------
void changeXCursor(int16_t xPos) {
// ------------------------
if(xPos < 0)
xPos = 0;
if(xPos > (NUM_SAMPLES - GRID_WIDTH))
xPos = NUM_SAMPLES - GRID_WIDTH;
xCursor = xPos;
saveParameter(PARAM_XCURSOR, xCursor);
repaintLabels();
}