-
Notifications
You must be signed in to change notification settings - Fork 13
/
testPins.cpp
596 lines (541 loc) · 12.1 KB
/
testPins.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
/*
* This controls one pin : pull it up, down, etc.. and measure
*
*/
#include "vector"
#include "testPins.h"
#include "dso_adc.h"
#include "MapleFreeRTOS1000_pp.h"
#include "testerGfx.h"
#include "myPwm.h"
DSOADC *adc;
uint32_t lastCR2=0;
#define WRITECR2(reg,x) {lastCR2=x;reg->CR2=x;}
void xFail(const char *message);
/**
*
* @param p
*/
class AllPins
{
public:
void registerMe(TestPin *p) {_pins.push_back(p);}
// We dont allow one pin set to VCC and the other one set to ground
// check for that
void checkVcc(TestPin &me)
{
int n=_pins.size();
for(int i=0;i<n;i++)
{
if(me._pinNumber==_pins[i]->_pinNumber) continue;
if(_pins[i]->getState()==TestPin::GND)
xFail("VCC NOT ALLOWED");
}
}
void checkGnd(TestPin &me)
{
int n=_pins.size();
for(int i=0;i<n;i++)
{
if(me._pinNumber==_pins[i]->_pinNumber) continue;
if(_pins[i]->getState()==TestPin::VCC)
xFail("GND NOT ALLOWED");
}
}
void disconnectAll()
{
int n=_pins.size();
for(int i=0;i<n;i++)
{
_pins[i]->disconnect();
}
}
bool zero()
{
int n=_pins.size();
for(int i=0;i<n;i++)
{
_pins[i]->pullDown(TestPin::PULL_LOW);
}
xDelay(10);
for(int i=0;i<n;i++)
{
_pins[i]->pullDown(TestPin::PULL_LOW);
}
int v,tus;
for(int i=0;i<n;i++)
{
_pins[i]->fastSampleDown(PIN_ZERO_THRESHOLD,v,tus);
}
xDelay(10);
return true;
}
public:
std::vector<TestPin *>_pins;
};
AllPins allPins;
/**
*
*/
void zeroAllPins()
{
allPins.zero();
}
/**
*/
#pragma once
#include "Arduino.h"
#include "testerControl.h"
/**
*
* @param pinNo
* @param pin
* @param pinDriveHighRes
* @param pinDriveLow
* @param lowRes
* @param hiRes
* @param internal
*/
TestPin::TestPin(int pinNo, int pinAdc,int pinVolt, int pinDriveHighRes, int pinDriveMed,int pinDriveLow, int hiRes, int medRes,int lowRes)
{
_pinNumber=pinNo;
_pin=pinAdc;
_pinVolt=pinVolt;
_pinDriveHighRes=pinDriveHighRes;
_pinDriveLowRes=pinDriveLow;
_pinDriveMedRes=pinDriveMed;
_lowRes=lowRes;
_hiRes=hiRes;
_medRes=medRes;
}
/**
*
*/
void TestPin::init()
{
pinMode(_pin,OUTPUT);
digitalWrite(_pin,0);
pinMode(_pin,INPUT_ANALOG);
pinMode(_pinVolt,INPUT_PULLDOWN);
pinMode(_pinDriveHighRes,INPUT_PULLDOWN);
pinMode(_pinDriveLowRes,INPUT_PULLDOWN);
pinMode(_pinDriveMedRes,INPUT_PULLDOWN);
disconnect();
allPins.registerMe(this);
NVM::loadTestPin(this->_pinNumber,_calibration);
}
/**
*
* @param pinNo
* @param state
*/
void TestPin::configureOutput(int pinNo, int state)
{
digitalWrite(pinNo,state);
pinMode(pinNo,OUTPUT);
digitalWrite(pinNo,state);
}
/**
*
* @param mode
*/
void TestPin::setMode(TESTPIN_STATE mode)
{
switch(mode)
{
case PULLUP_PWM: pullUp(PULL_HI);
pinMode(_pinDriveHighRes ,PWM);
_state=PULLUP_PWM;
break;
case PULLUP_LOW: pullUp(PULL_LOW);break;
case PULLUP_MED: pullUp(PULL_MED);break;
case PULLUP_HI: pullUp(PULL_HI);break;
//
case PULLDOWN_LOW: pullDown(PULL_LOW);break;
case PULLDOWN_MED: pullDown(PULL_MED);break;
case PULLDOWN_HI: pullDown(PULL_HI);break;
//
case VCC: setToVcc();break;
case GND: setToGround();break;
default:
xFail("Invalid mode");
break;
}
}
/**
*
* @param strength
* @param fq
*/
void TestPin::pwm(PULL_STRENGTH strength, int fq)
{
int pin;
// Assume it is low drive
switch(strength)
{
case PULL_LOW: pin=_pinDriveLowRes;break;
case PULL_MED: pin=_pinDriveMedRes;break;
case PULL_HI: pin=_pinDriveHighRes;break;
default:
break;
}
this->disconnectAll();
myPwm(pin,fq);
}
/**
*
* @param hiRes
*/
void TestPin::pullUp(PULL_STRENGTH strength)
{
disconnectAll();
switch(strength)
{
case PULL_LOW:
configureOutput(_pinDriveLowRes,1);
_state=PULLUP_LOW;
break;
case PULL_MED:
configureOutput(_pinDriveMedRes,1);
_state=PULLUP_MED;
break;
case PULL_HI:
configureOutput(_pinDriveHighRes,1);
_state=PULLUP_HI;
break;
}
}
/**
*
* @param hiRes
*/
void TestPin::pullDown(PULL_STRENGTH strength)
{
disconnectAll();
switch(strength)
{
case PULL_LOW:
configureOutput(_pinDriveLowRes,0);
_state=PULLDOWN_LOW;
break;
case PULL_MED:
configureOutput(_pinDriveMedRes,0);
_state=PULLDOWN_MED;
break;
case PULL_HI:
configureOutput(_pinDriveHighRes,0);
_state=PULLDOWN_HI;
break;
}
}
/**
*
*/
void TestPin::setToVcc()
{
allPins.checkVcc(*this);
disconnectAll();
digitalWrite(_pinVolt,1);
pinMode(_pinVolt,OUTPUT);
_state=VCC;
}
/**
*
*/
void TestPin::setToGround()
{
allPins.checkGnd(*this);
disconnectAll();
digitalWrite(_pinVolt,0);
pinMode(_pinVolt,OUTPUT);
_state=GND;
}
/**
*
*/
void TestPin::disconnectAll()
{
pinMode(_pin,INPUT_ANALOG); // protected by op amp
pinMode(_pinDriveHighRes,INPUT_FLOATING);
pinMode(_pinDriveLowRes,INPUT_FLOATING);
pinMode(_pinDriveMedRes,INPUT_FLOATING);
pinMode(_pinVolt,INPUT_FLOATING);
}
/**
*
*/
void TestPin::disconnect()
{
disconnectAll();
_state=DISCONNECTED;
}
/**
*
*/
AutoDisconnect::~AutoDisconnect()
{
allPins.zero();
allPins.disconnectAll();
}
/**
*
* @param frequency
* @return
*/
bool TestPin::prepareTimerSample(int frequency,int nbSamples)
{
adc->setADCPin(_pin);
adc->setupTimerSampling();
adc->prepareTimerSampling(frequency,1,ADC_SMPR_1_5,DSOADC::ADC_PRESCALER_2);
adc->clearSemaphore();
return adc->startTimerSampling(nbSamples);
}
/**
*
* @param nbSamples
* @return
*/
bool TestPin::prepareDmaSample(adc_smp_rate rate, DSOADC::Prescaler scale,int nbSamples)
{
adc->setADCPin(_pin);
adc->setupDmaSampling();
adc->prepareDMASampling(rate,scale);
adc->clearSemaphore();
adc->startDMASampling(nbSamples);
return true;
}
/**
*
* @param nbSamples
* @param xsamples
* @return
*/
bool TestPin::finishDmaSample(int &nbSamples, uint16_t **xsamples)
{
xAssert(true==adc->getSamples(xsamples,nbSamples));
// Skip the 2 first samples, they are often wrong
nbSamples-=2;
*xsamples+=2;
return true;
}
bool TestPin::finishTimer(int &nbSamples, uint16_t **xsamples)
{
return finishDmaSample(nbSamples,xsamples);
}
/**
*
* @param nbSamples
* @return
*/
bool TestPin::prepareDualDmaSample(TestPin &otherPin,adc_smp_rate rate, DSOADC::Prescaler scale ,int nbSamples)
{
adc->setupDmaSampling();
adc->setADCPin(_pin);
adc->prepareSlowDualDMASampling(otherPin._pin,rate,scale);
adc->clearSemaphore();
adc->startDualDMASampling(otherPin._pin,nbSamples);
return true;
}
/**
*
* @param nbSamples
* @return
*/
bool TestPin::prepareDualTimeSample(int fq,TestPin &otherPin,adc_smp_rate rate, DSOADC::Prescaler scale ,int nbSamples)
{
adc->setupDualTimerSampling();
adc->setADCPin(_pin);
adc->prepareDualTimeSampling(fq,otherPin._pin,rate,scale);
adc->clearSemaphore();
adc->startDualTimeSampling(otherPin._pin,nbSamples);
return true;
}
/**
*
* @param adc
* @param voltage
*/
bool TestPin::summedRead(int &xadc, int &nbSamples)
{
uint16_t *samples;
xadc=0;
adc->setADCPin(_pin);
xDelay(10); // wait a bit
adc->clearSamples();
xAssert(prepareTimerSample(4000,32));
xAssert(true==adc->getSamples(&samples,nbSamples));
int r=0;
// if(nbSamples!=32) return false;
for(int i=0;i<nbSamples;i++)
r+=samples[i];
xadc=r;
return true;
}
/**
*
* @param pin
* @return
*/
void TestPin::initADC(int pin)
{
adc=new DSOADC(PA0);
adc->setupADCs();
}
/**
*
* @param threshold
* @param value
* @return
*/
bool TestPin::fastSampleUp(int threshold1,int threshold2,int &value1,int &value2, int &timeUs1,int &timeUs2)
{
return adc->fastSampleUp(threshold1,threshold2,value1,value2,timeUs1,timeUs2);
}
/**
*
* @param threshold
* @param value
* @return
*/
bool TestPin::fastSampleDown(int threshold,int &value, int &timeUs)
{
return adc->fastSampleDown( threshold,value, timeUs) ;
}
/**
*/
void xFail(const char *message)
{
allPins.disconnectAll();
__asm__ ("bkpt 1");
while(1)
{
};
}
/**
*
* @return
*/
int TestPin::getCurrentRes()
{
return getRes(_state);
}
/**
*
* @param state
* @return
*/
int TestPin::getRes(TESTPIN_STATE state)
{
switch(state)
{
case DISCONNECTED:
xFail("Invalid");
case VCC:
case GND:
return _calibration.resDown;
break;
case PULLUP_HI: return _hiRes+ _calibration.resUp;;break;
case PULLUP_PWM:
case PULLUP_LOW: return _lowRes+_calibration.resUp;break;
case PULLUP_MED: return _medRes+_calibration.resUp;break;
case PULLDOWN_HI: return _hiRes+ _calibration.resDown;;break;
case PULLDOWN_LOW: return _lowRes+ _calibration.resDown;;break;
case PULLDOWN_MED: return _medRes+ _calibration.resDown;;break;
}
xFail("Invalid");
return 0;
}
/**
*
* @param count
* @return
*/
bool TestPin::dualInterleavedDelta ( int &nbSamples,uint16_t *samples)
{
volatile uint16_t *c=samples;
for(int i=0;i<nbSamples-1;i++)
{
int left,right;
int base=2*i;
left=(int)samples[base]+(int)samples[base+2]-(int)samples[base+1]*2;
if(left<0) left=0;
else left=left/2;
right=(int)2*samples[base+2]-(int)samples[base+3]-(int)samples[base+1];
if(right<0) right=0;
else right=right/2;
c[0]=left;
c[1]=right;
c+=2;
}
nbSamples=(nbSamples-1)*2;
return true;
}
/**
*
* @param count
* @return
*/
bool TestPin::evalInternalResistance ( int &resDown,int &resUp)
{
int valUp,valDown;
setMode(PULLUP_LOW);
digitalWrite(_pinVolt,0);
pinMode(_pinVolt,OUTPUT);
xDelay(50);
int sum,nb;
xAssert(summedRead(sum,nb));
sum=(sum+nb/2)/nb;
valDown=sum;
disconnect();
setMode(PULLDOWN_LOW);
digitalWrite(_pinVolt,1);
pinMode(_pinVolt,OUTPUT);
xDelay(50);
xAssert(summedRead(sum,nb));
sum=(sum+nb/2)/nb;
valUp=4095-sum;
disconnect();
int totalRes=_lowRes;
resDown=(totalRes*valDown)/4095;
resUp=(totalRes*valUp)/4095;
for(int i=0;i<5;i++) // converge to real value
{
totalRes=_lowRes+valUp+resDown;
resDown=(totalRes*valDown)/4095;
resUp =(totalRes*valUp)/4095;
}
return true;
}
/**
*
* @param count
* @return
*/
bool TestPin::dualSimulatenousDelta ( int &nbSamples,uint16_t *samples)
{
volatile uint16_t *c=samples;
volatile uint16_t *o=samples;
for(int i=0;i<nbSamples;i++)
{
int left;
left=(int)c[0]-(int)c[1];
if(left<0) left=0;
*o=left;
o++;
c+=2;
}
return true;
}
/**
*
* @param value
* @param otherResistance
* @return
*/
float TestPin::resistanceDivider(float value, float otherResistance)
{
if(value>=4095.) return 10000000.;
float r=value*otherResistance/(4095.-value);
return r;
}
// EOF