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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
|
#include "globals.h"
#include "lcd.h"
#include "version.h"
#include <stdint.h>
#include <stdio.h>
#include <stdbool.h>
#include <fcntl.h>
#include <stdlib.h>
#include <inttypes.h>
#include <unistd.h>
#include <errno.h>
#include <sys/sendfile.h>
#include <sys/stat.h>
#include <mhash.h>
#include <glib.h>
#define MAINFILE "/root/flash.copy"
#define BACKUPFILE "/root/flash.bup"
#define PERSIST_ERR_COULDNTREADHDR 1
#define PERSIST_ERR_HDRLENMISMATCH 2
#define PERSIST_ERR_VERSIONMISMATCH 3
#define PERSIST_ERR_COULDNTREADDATA 4
#define PERSIST_ERR_BADCRC32 5
#define PERSIST_ERR_BADARGS 6
#define PERSIST_ERR_COULDNTALLOCATEBUFFER 7
#define PERSIST_ERR_COULDNTSEEK 8
#define PERSIST_ERR_COULDNTWRITE 9
#define PERSIST_ERR_COUNDNTOPENFILE 10
// crc32 routine
static uint32_t crc32(uint8_t* buf, int count)
{
MHASH context = mhash_init(MHASH_CRC32B);
mhash(context, buf, count);
uint32_t hash;
mhash_deinit(context, &hash);
return hash;
}
// header to prepend to stashed objects
typedef struct {
uint32_t version;
uint32_t length;
uint32_t crc32;
} persistencehdr;
static void persistence_printheader(persistencehdr* hdr)
{
printf("Frozen struct has version %d, is %d bytes long and has the CRC32 0x%08"PRIx32"\n", hdr->version,
hdr->length, hdr->crc32);
}
// copy a file from one place to another.. this is not portable, linux only
// this returns true if it is safe to continue. If there was nothing to backup
// that is considered "safe to continue"
bool persistence_copyfile(char* source, char* dest)
{
mode_t filemode = S_IRUSR | S_IWUSR;
int src = open(source, O_RDONLY);
if (src < 0 && errno == ENOENT) { // If the source file doesn't exist, there isn't anything to copy
close(src);
return true;
}
int dst = open(dest, O_SYNC | O_RDWR | O_CREAT, filemode);
if (src < 0 || dst < 0) {
return false;
}
struct stat s;
fstat(src, &s);
ftruncate(dst, 0);
sendfile(dst, src, NULL, s.st_size);
close(src);
close(dst);
return true;
}
// store an object
bool persistence_freeze(char* dest, void* data, unsigned int offset, unsigned int len, unsigned int total,
uint32_t version)
{
// don't write past the end of the file..
if (offset + len > total) {
errno = PERSIST_ERR_BADARGS;
return false;
}
bool newfile = false;
uint32_t crc;
// open the target file with O_SYNC so that write blocks until it's on disk
// fingers crossed the FS actually does what it's told..
int fd = open(dest, O_SYNC | O_RDWR);
if (fd < 0) {
// this is to catch if the file didn't exist and if it needed to be created
mode_t filemode = S_IRUSR | S_IWUSR;
fd = open(dest, O_SYNC | O_RDWR | O_CREAT, filemode);
if (fd < 0) {
errno = PERSIST_ERR_COUNDNTOPENFILE;
return false;
}
newfile = true;
}
// if this is a new file or we're overwriting everything we can just calculate the CRC from the data passed in
if (newfile || len == total) {
// if this a new file we want to write everything irrespective of the offset and len passed in
if (newfile) {
offset = 0;
len = total;
}
crc = crc32((uint8_t*) data, total);
}
// this is a modification within an existing file so we need to merge the existing data with the
// new data to calculate the new crc for the file because it seems the struct getting passed in
// only contains the changed data.
else if (len != total) {
// create a buffer for the existing data
void* payload = malloc(total);
if (payload == NULL) {
close(fd);
errno = PERSIST_ERR_COULDNTALLOCATEBUFFER;
return false;
}
// get the header
persistencehdr hdr;
if (read(fd, &hdr, sizeof(persistencehdr)) != sizeof(persistencehdr)) {
errno = PERSIST_ERR_COULDNTREADHDR;
free(payload);
close(fd);
return false;
}
// load the data
persistence_printheader(&hdr);
if (read(fd, payload, total) != total) {
errno = PERSIST_ERR_COULDNTREADDATA;
free(payload);
close(fd);
return false;
}
// check the existing data isn't already corrupt.
uint32_t calculatedcrc32 = crc32((uint8_t*) payload, hdr.length);
if (calculatedcrc32 != hdr.crc32) {
errno = PERSIST_ERR_BADCRC32;
free(payload);
close(fd);
return false;
}
// overlay the payload with the existing data
memcpy(((char*) payload) + offset, ((char*) data) + offset, len);
crc = crc32((uint8_t*) payload, total);
free(payload);
lseek(fd, 0, SEEK_SET); // rewind
}
// build the header
persistencehdr hdr;
hdr.version = version;
hdr.length = total;
hdr.crc32 = crc;
persistence_printheader(&hdr);
// write the data to disk
ftruncate(fd, sizeof(hdr) + total); // not really needed but if we did have a file thats bigger than it
// should be put a stop to that
// write the header
if (write(fd, &hdr, sizeof(hdr)) != sizeof(hdr)) {
errno = PERSIST_ERR_COULDNTWRITE;
close(fd);
return false;
}
// seek to the offset.. which could mean not seeking at all
if (lseek(fd, offset, SEEK_CUR) < 0) {
errno = PERSIST_ERR_COULDNTSEEK; // shouldn't ever happen really because if we're actually
// seeking the file should already be the total size.
close(fd);
return false;
}
// write the data out to disk
if (write(fd, ((char*) data) + offset, len) != len) {
errno = PERSIST_ERR_COULDNTWRITE;
close(fd);
return false;
}
// pack up and go home
close(fd);
return true;
}
// try to load an object from disk
bool persistence_unfreeze(char* dest, void* result, unsigned int len, uint32_t version)
{
int fd = open(dest, O_RDONLY);
// get the header
persistencehdr hdr;
if (read(fd, &hdr, sizeof(persistencehdr)) != sizeof(persistencehdr)) {
errno = PERSIST_ERR_COULDNTREADHDR;
close(fd);
return false;
}
persistence_printheader(&hdr);
// check that the length of this frozen object is what we are expecting
if (hdr.length != len) {
errno = PERSIST_ERR_HDRLENMISMATCH;
close(fd);
return false;
}
// check that it's the same version.. the version isn't used at the moment
// but if you want to change the header at some point it'll be useful
if (hdr.version != version) {
errno = PERSIST_ERR_VERSIONMISMATCH;
close(fd);
return false;
}
// read in the data for the object.. if we couldn't read the amount of data
// that the header said there was the header is either wrong or the file is truncated.
if (read(fd, result, hdr.length) != hdr.length) {
errno = PERSIST_ERR_COULDNTREADDATA;
close(fd);
return false;
}
// check it's crc32 to make sure it's not corrupt
uint32_t calculatedcrc32 = crc32(result, hdr.length);
if (calculatedcrc32 != hdr.crc32) {
printf("Calculated CRC is 0x%08"PRIx32"\n", calculatedcrc32);
errno = PERSIST_ERR_BADCRC32;
close(fd);
return false;
}
close(fd);
return true;
}
int readUserBlock(FlashStruct *mem)
{
// try to unfreeze the main file
if (persistence_unfreeze(MAINFILE, mem, sizeof(*mem), 0)) {
return sizeof(*mem);
}
// something went wrong
else {
printf("Error unfreezing %d.. trying backup\n", errno);
// hopefully we can use the backup..
if (persistence_unfreeze(BACKUPFILE, mem, sizeof(*mem), 0)) {
// if the backup was good overwrite the main file
persistence_copyfile(BACKUPFILE, MAINFILE);
return sizeof(*mem);
}
// deadend :(
else {
printf("Error unfreezing backup %d.\n", errno);
}
}
return 0;
}
void writeUserBlock(FlashStruct *mem, int addr, int numbytes)
{
// *** There is a potential issue here.. if the mainfile is corrupt ***
// *** and this gets called before readUserBlock then the ***
// *** potentially workable backup will be lost .. we could check ***
// *** that the main file is valid before backing it up I guess... ***
// *** but I don't think this situation should arise. ***
if (!globals.Flags.flash_writes_suspended) {
// backup the main copy of the file
if (persistence_copyfile(MAINFILE, BACKUPFILE)) {
if (!persistence_freeze(MAINFILE, mem, addr, numbytes, sizeof(*mem), 0)) {
if (errno != PERSIST_ERR_COULDNTWRITE) {
printf("Error while trying to write, %d. **Write did not happen!!!**\n", errno);
} else {
printf("Error while writing data to disk. **File is potentially corrupt!**\n");
}
}
} else {
printf("Could not backup current file. **Write did not happen!!!**\n");
}
}
}
static void initFlashValues(FlashStruct *mem)
{
int i,j,k,m;
float power_of_ten, power_of_two;
float base_number;
base_number=11;
mem->flash_start=1;
mem->turn_on_dly=5;
mem->logic_level_enabled=0;
mem->ChanKey_logic_level=0;
strcpy(mem->model_num,"unprogrammed");
strcpy(mem->serial_num,"no S/N");
strcpy(mem->password,"default");
strcpy(mem->username,"admin");
mem->fully_programmed=Being_Programmed;
mem->gpib_address=8;
mem->channels=1;
mem->web_session_timeout=120; /* two minutes */
mem->telnet_session_timeout=600; /* ten minutes */
mem->telnet_logon_timeout=30; /* thirty seconds */
mem->rcl_rs232=52;
mem->on_off_used=1;
mem->ampl_ranges_for_ch2_only=0;
mem->ChanKey_frequency=0;
mem->ChanKey_delay=0;
mem->ChanKey_pw=0;
mem->ChanKey_current_limit=0;
mem->ChanKey_rise_time=0;
mem->ChanKey_amplitude=0;
mem->ChanKey_offset=0;
mem->ChanKey_Curr_Mon_value=0;
mem->ChanKey_Curr_Mon_offset=0;
mem->ChanKey_zout=0;
mem->ChanKey_hold_setting=0;
mem->ChanKey_double_pulse=0;
mem->ChanKey_ab_mode=0;
mem->ChanKey_route=0;
mem->ChanKey_slew=0;
mem->ChanKey_func_mode=0;
mem->ChanKey_polarity=0;
mem->ChanKey_output_state=0;
mem->ChanKey_gate_type=0;
mem->ChanKey_trigger_source=0;
mem->ChanKey_amp_mode=0;
mem->ChanKey_gate_level=0;
mem->ChanKey_load_type=0;
mem->ChanKey_test_delay_mode=0;
mem->ChanKey_os_mode=0;
mem->ChanKey_Burst_Count=0;
mem->ChanKey_Burst_Time=0;
mem->network_enabled=0;
mem->self_cal=0;
mem->self_cal_interval=5;
mem->self_cal_startups=0;
mem->self_cal_pause=300;
mem->self_cal_typical_time_min=6;
mem->self_cal_typical_time_sec=0;
mem->prf_limiter=1;
mem->pcb116c_mon=1; /* more recent ADC, different reading code */
mem->warn_even_if_output_off=0;
strcpy(mem->spec_func_lib,"Not used");
strcpy(mem->firmware,FW_VERSION);
mem->enable_avrq_extra_ampls=0;
for (i=0; i<points_in_range; i++) {
mem->vcc1_pwl_Vc_norm4095[0][0][0][i]=0;
mem->vcc1_pwl_amp[0][0][0][i]=0.0;
mem->vcc2_pwl_Vc_norm4095[0][0][0][i]=0;
mem->vcc2_pwl_amp[0][0][0][i]=0.0;
}
mem->vcc1_pwl_Vc_norm4095[0][0][0][1]=dac_max;
mem->vcc1_pwl_amp[0][0][0][1]=10.0;
mem->vcc2_pwl_Vc_norm4095[0][0][0][1]=dac_max;
mem->vcc2_pwl_amp[0][0][0][1]=25;
for (i=0; i<max_channels; i++) {
power_of_ten=1.0;
power_of_two=24.0e-9;
for (j=0; j<timing_ranges; j++) {
for (k=0; k<timing_polarities; k++) {
for (m=0; m<points_in_range; m++) {
mem->slew_pwl_time[i][j][k][m]=0.0;
mem->slew_pwl_Vc_norm4095[i][j][k][m]=0;
int temp_int_pw_dly, temp_int_prf;
if (m==0) {
/* these values have been determined by experiment */
temp_int_pw_dly=dac_max;
temp_int_prf=dac_max;
mem->period_pwl_time[i][j][k][m]=(47e-9*power_of_ten)+41e-9;
mem->pw_pwl_time[i][j][k][m]=(base_number*0.7e-9*power_of_ten)+5e-9;
mem->delay_pwl_time[i][j][k][m]=(base_number*0.7e-9*power_of_ten)+7.6e-9;
mem->burst_pwl_time[i][j][k][m]=(2*base_number*1.0e-9*power_of_ten)+25e-9;
} else if (m==1) {
temp_int_pw_dly=dac_max/3;
temp_int_prf=dac_max/2.15;
mem->period_pwl_time[i][j][k][m]=(1e-7*power_of_ten)+50e-9;
mem->pw_pwl_time[i][j][k][m]=(3*base_number*0.7e-9*power_of_ten)+10e-9;
mem->delay_pwl_time[i][j][k][m]=(3*base_number*0.7e-9*power_of_ten)+17e-9;
mem->burst_pwl_time[i][j][k][m]=(3*base_number*1.0e-9*power_of_ten)+10e-9;
} else if (m==2) {
temp_int_pw_dly=dac_min;
temp_int_prf=dac_max/4.6;
mem->period_pwl_time[i][j][k][m]=(2.3e-7*power_of_ten)+100e-9;
mem->pw_pwl_time[i][j][k][m]=(base_number*0.7e-8*power_of_ten)+40e-9;
mem->delay_pwl_time[i][j][k][m]=(base_number*0.7e-8*power_of_ten)+40e-9;
mem->burst_pwl_time[i][j][k][m]=(base_number*1.0e-8*power_of_ten)+10e-9;
} else if (m==3) {
temp_int_pw_dly=0;
temp_int_prf=dac_min;
mem->period_pwl_time[i][j][k][m]=(4.7e-7*power_of_ten)+160e-9;
mem->pw_pwl_time[i][j][k][m]=0.0;
mem->delay_pwl_time[i][j][k][m]=0.0;
mem->burst_pwl_time[i][j][k][m]=0.0;
} else {
temp_int_pw_dly=0;
temp_int_prf=0;
mem->pw_pwl_time[i][j][k][m]=0.0;
mem->delay_pwl_time[i][j][k][m]=0.0;
mem->period_pwl_time[i][j][k][m]=0.0;
mem->burst_pwl_time[i][j][k][m]=0.0;
}
mem->pw_pwl_Vc_norm4095[i][j][k][m]=temp_int_pw_dly;
mem->delay_pwl_Vc_norm4095[i][j][k][m]=temp_int_pw_dly;
mem->burst_pwl_Vc_norm4095[i][j][k][m]=temp_int_pw_dly;
mem->period_pwl_Vc_norm4095[i][j][k][m]=temp_int_prf;
}
}
power_of_ten*=10.0;
power_of_two*=2.0;
}
power_of_two=20.0e-9;
for (j=0; j<ampl_ranges; j++) {
for (k=0; k<ampl_polarities; k++) {
for (m=0; m<points_in_range; m++) {
if (m==0) {
mem->rise_time_pwl_Vc_norm4095[i][j][k][m]=dac_max;
mem->rise_time_pwl_time[i][j][k][m]=(1e-9+power_of_two);
} else if (m==1) {
mem->rise_time_pwl_Vc_norm4095[i][j][k][m]=dac_max/2;
mem->rise_time_pwl_time[i][j][k][m]=(1e-9+(power_of_two*1.5));
} else if (m==2) {
mem->rise_time_pwl_Vc_norm4095[i][j][k][m]=dac_max/4.6;
mem->rise_time_pwl_time[i][j][k][m]=(1e-9+(power_of_two*3.0));
} else {
mem->rise_time_pwl_Vc_norm4095[i][j][k][m]=0;
mem->rise_time_pwl_time[i][j][k][m]=0.0;
}
}
}
power_of_two*=2.0;
}
for (j=0; j<timing_ranges; j++) {
for (k=0; k<ampl_polarities; k++) {
mem->pw_range_pol_tweaks[i][j][k] = 0.0;
}
}
for (j=0; j<10; j++)
for (k=0; k<5; k++)
for (m=0; m<2; m++) {
mem->ampl_pwl_Vc_norm4095[i][k][m][j]=0;
mem->ampl_pwl_amp[i][k][m][j]=0.0;
}
mem->ampl_pwl_Vc_norm4095[i][0][0][1]=dac_max;
mem->ampl_pwl_amp[i][0][0][1]=100.0;
for (j=0; j<max_stored_settings; j++) {
mem->rcl_frequency[i][j]=10000.0;
mem->rcl_delay[i][j]=0e-9;
mem->rcl_pw[i][j]=20e-9;
mem->rcl_amplitude[i][j]=0.0;
mem->rcl_offset[i][j]=0.0;
mem->rcl_misc[i][j]=9;
mem->rcl_misc2[i][j]=0;
mem->rcl_burst_count[i][j]=1 && !mem->burst_func[i];
mem->rcl_burst_time[i][j]=500e-9;
mem->rcl_rise_time[i][j]=50e-9;
mem->rcl_soft_current_limit[i][j]=0.0;
mem->rcl_route_primary[i][j]=1;
mem->rcl_route_secondary[i][j]=1;
mem->rcl_slew[i][j]=100e6;
mem->rcl_load[i][j]=50.0;
mem->rcl_vcc1[i][j]=0.0;
mem->rcl_vcc2[i][j]=0.0;
mem->rcl_vlogic[i][j]=0.0;
}
for (j=0; j<5; j++)
for (k=0; k<2; k++) {
mem->mon_vi_ratio[i][j][k]=0.050*(j+1);
}
mem->load_type_pwl_time[i][0][0][0] = 200;
mem->load_type_pwl_time[i][0][0][1] = 10000;
mem->load_type_pwl_Vc_norm4095[i][0][0][0] = dac_max;
mem->load_type_pwl_Vc_norm4095[i][0][0][1] = dac_max / 60;
for (j=2; j<10; j++) {
mem->load_type_pwl_time[i][0][0][j] = 0;
mem->load_type_pwl_Vc_norm4095[i][0][0][j] = 0;
}
mem->slew_pwl_time[i][4][0][0]=80e6;
mem->slew_pwl_time[i][4][0][1]=240e6;
mem->slew_pwl_time[i][3][0][0]=40e6;
mem->slew_pwl_time[i][3][0][1]=120e6;
mem->slew_pwl_time[i][2][0][0]=20e6;
mem->slew_pwl_time[i][2][0][1]=60e6;
mem->slew_pwl_time[i][1][0][0]=10e6;
mem->slew_pwl_time[i][1][0][1]=30e6;
mem->slew_pwl_time[i][0][0][0]=5e6;
mem->slew_pwl_time[i][0][0][1]=15e6;
mem->slew_pwl_Vc_norm4095[i][0][0][1]=dac_max;
mem->slew_pwl_Vc_norm4095[i][1][0][1]=dac_max;
mem->slew_pwl_Vc_norm4095[i][2][0][1]=dac_max;
mem->slew_pwl_Vc_norm4095[i][3][0][1]=dac_max;
mem->slew_pwl_Vc_norm4095[i][4][0][1]=dac_max;
}
/* special consideration for CH2 delay */
mem->delay_pwl_time[1][0][0][0]=-0.1e-9;
for (i=0; i<max_channels; i++) {
mem->routing_required[i]=0;
mem->routing_max_pins[i]=16;
mem->min_ampl[i]=0.0;
mem->max_ampl[i]=100.0;
mem->min_offset[i]=0.0;
mem->max_offset[i]=100.0;
mem->min_vout[i]=0.0;
mem->max_vout[i]=100.0;
mem->min_freq[i]=1.0;
mem->max_freq[i]=8e6;
mem->min_pw[i]=25e-9;
mem->max_pw[i]=1.0;
mem->min_rise_time[i]=50e-9;
mem->max_rise_time[i]=500e-9;
mem->min_soft_current_limit[i]=10.0;
mem->max_soft_current_limit[i]=530.0;
mem->max_delay[i]=1.0;
mem->min_delay[i]=0.0;
mem->propagation_delay[i]=10.0e-9;
mem->delay_shrink[i]=40.0e-9;
mem->ampl_zero_equiv[i]=0.1;
mem->max_duty_low[i]=110.0;
mem->max_duty_high[i]=110.0;
mem->duty_ampl[i]=30.0;
mem->max_duty_mid1[i]=0.0;
mem->duty_ampl_mid1[i]=0.0;
mem->max_duty_mid2[i]=0.0;
mem->duty_ampl_mid2[i]=0.0;
mem->min_slew[i]=90e6;
mem->max_slew[i]=210e6;
mem->max_high_rl_duty[i]=80.0;
mem->max_peak_power[i]=0.0;
mem->max_avg_power[i]=0.0;
mem->duty_highRL_above_v[i]=110.0;
mem->duty_highRL_below_v[i]=110.0;
mem->mon_pw_threshold[i]=-1.0;
mem->monitor_step[i]=1.0;
mem->sep_posneg_mon_ratio[i]=0;
mem->volt_ctrl_pw[i]=0;
mem->voltage_enabled[i]=1;
mem->voltage_offset_enabled[i]=0;
mem->current_enabled[i]=0;
mem->current_offset_enabled[i]=0;
mem->switchable_zout[i]=1;
mem->dc_mode_allowed[i]=1;
mem->ab_mode_allowed[i]=1;
mem->double_pulse_allowed[i]=1;
mem->invert_allowed[i]=1;
mem->ea_enabled[i]=1;
mem->switchable_load[i]=1;
mem->monitor_enabled[i]=0;
mem->use_pos_ampl_data_only[i]=0;
mem->ampl_min_max_only[i]=0;
mem->eo_enabled[i]=1;
mem->ext_amplify_enabled[i]=1;
mem->zout_min[i]=2;
mem->zout_max[i]=50;
for (j=0; j<10; j++) {
for (k=0; k<5; k++) {
mem->os_pwl_Vc_norm4095[i][k][0][j]=0;
mem->os_pwl_amp[i][k][0][j]=0.0;
}
}
mem->os_pwl_Vc_norm4095[i][0][0][1]=dac_max;
mem->os_pwl_amp[i][0][0][1]=100.0;
mem->ampl_DAC[i]=0;
mem->os_DAC[i]=1;
mem->polarity_xtra_rly[i]=1;
mem->fixed_pw[i]=0;
mem->fixed_rise_time[i]=1;
mem->pcb_203a_rise_time[i]=1;
mem->ext_amplify_xtra_rly[i]=4;
mem->ea_xtra_rly[i]=5;
mem->curr_slew[i]=0;
mem->distort_X[i]=0.0;
mem->distort_Y[i]=0.0;
mem->distort_Z[i]=0.0;
mem->distort_max_ampl[i]=0.0;
mem->distort_max_os[i]=0.0;
mem->ampl_os_ranges_related[i]=0;
mem->ampl_coupled_to_os[i]=0;
mem->pulse_width_pol_tweak[i][0]=0.0;
mem->pulse_width_pol_tweak[i][1]=0.0;
mem->delay_pol_tweak[i][0]=0.0;
mem->delay_pol_tweak[i][1]=0.0;
mem->max_burst_count[i]=1;
mem->max_burst_duty[i]=50.0;
mem->min_burst_per[i]=100e-9;
mem->min_burst_gap[i]=100e-9;
mem->max_burst_gap[i]=1.0;
mem->is_func_gen[i]=0;
mem->burst_func[i]=0;
mem->freq_dac[i]=7;
mem->is_monocycle[i]=0;
mem->monocycle_dac[i]=6;
mem->rise_time_dac[i]=6;
mem->slew_dac[i]=6;
mem->load_type_dac[i]=3;
mem->output_timer[i]=0;
mem->current_limit_pulse_mode[i]=220.0;
mem->current_limit_dc_mode[i]=120.0;
mem->current_limit_full_scale[i]=501.0;
mem->current_limit_dac[i]=3;
mem->hard_current_limit_enabled[i]=0;
mem->soft_current_limit_enabled[i]=0;
mem->invert_by_default[i]=pol_norm;
mem->max_avg_ampl[i]=0.0;
mem->pol_relay_high_for_pos[i]=1;
mem->special_pw_range_minimum[i]=0.0;
mem->pw_shift_below_this_ampl[i]=0.0;
mem->pw_shift_below_ampl_by[i]=0.0;
mem->ampl_min_abs_value[i]=0.0;
mem->ampl_step_size[i]=0.0;
mem->low_load_type[i]=50.0;
mem->high_load_type[i]=10000.0;
mem->fix_pw_dac_val[i]=dac_max/8;
mem->max_pw_pol[i][0]=0.0;
mem->max_pw_pol[i][1]=0.0;
mem->vcc1_max[i]=5.1;
mem->vcc2_max[i]=24.4;
mem->vcc2_min[i]=3.0;
mem->use_high_ampl_ranges_for_high_pw_ranges[i]=0;
}
mem->relay_delay_in_sec=0.5;
mem->extended_relay_delay_in_sec=0.5;
mem->wait_states_after_sock_init=10000;
/*0123456789012345678901234567890123456789*/
strcpy(mem->aux_error_message,"PRF too high! Output disabled.");
/* default PW DACs */
mem->pw_dac[0]=2; /* channel 1: ONLY used for EXTERNAL voltage-controlled PW */
/* DAC 4 is normally used for internally controlled PW */
mem->pw_dac[1]=2; /* channel 2: varies - normally 2 (for control of PCB 107C or 174) */
/* default delay DACs */
mem->delay_dac[0]=5; /* channel 1: on OP1B board - not to be changed, as a rule */
mem->delay_dac[1]=6; /* channel 2: varies (for control of PCB107C) */
mem->flash_end=99;
for (i=0; i<8; i++) {
mem->initial_dac_settings[i]=0L;
}
mem->copy_max_channels=max_channels; /* copy to flash, so it can be read by diag:eprom:int? */
/* avrq tests
mem->enable_avrq_extra_ampls=1;
mem->channels=2;
mem->ChanKey_amplitude=1;
mem->current_enabled[1]=1;
mem->voltage_enabled[1]=0;
mem->fully_programmed=2;
mem->ampl_DAC[0]=-1;
mem->ampl_pwl_amp[1][0][0][1]=0.025;
mem->max_ampl[1]=0.022;
mem->max_vout[1]=0.022;
mem->ampl_zero_equiv[1]=0.001;
*/
}
void initFlash(FlashStruct *mem, gboolean reset_to_defaults, int starting_location)
{
int read_size = readUserBlock(mem);
if ( (read_size == 0) ||
(mem->fully_programmed == Not_Programmed) ||
(reset_to_defaults &&
(starting_location >= 0) &&
(starting_location < sizeof(*mem))) ) {
g_print_debug ("initializing flash memory\n");
LCD_write(0,0,"Initialize Flash Memory ...");
gchar *message = g_strdup_printf ("Initialize Flash Memory, %d - %d", starting_location, (int) sizeof(*mem));
LCD_write(0,0,message);
g_free (message);
// uninitialized device!
initFlashValues(mem);
// save the default Flash config, for nonvolatile persistence
writeUserBlock(mem, starting_location, sizeof(*mem) - starting_location);
if (starting_location > 0) {
readUserBlock(mem);
}
LCD_write(1,0,"Flash Init, Done! ");
}
}
void fixFlash(FlashStruct *mem)
{
int i, fix_initial_constants;
float composite_min_burst_time[max_channels];
for (i=0; i<max_channels; i++) {
composite_min_burst_time[i]=mem->min_burst_gap[i];
if ((mem->min_burst_per[i] - mem->min_pw[i]) > composite_min_burst_time[i]) {
composite_min_burst_time[i] = mem->min_burst_per[i] - mem->min_pw[i];
}
int j;
for (j=0; j<max_stored_settings; j++) {
if (mem->rcl_burst_time[i][j] < composite_min_burst_time[i]) {
mem->rcl_burst_time[i][j]=composite_min_burst_time[i];
++fix_initial_constants;
}
if (mem->rcl_rise_time[i][j] < mem->min_rise_time[i]) {
mem->rcl_rise_time[i][j]=mem->min_rise_time[i];
++fix_initial_constants;
}
if (mem->rcl_slew[i][j] < mem->min_slew[i]) {
mem->rcl_slew[i][j]=mem->min_slew[i];
++fix_initial_constants;
}
if (mem->rcl_soft_current_limit[i][j] < mem->min_soft_current_limit[i]) {
mem->rcl_soft_current_limit[i][j]=mem->max_soft_current_limit[i];
++fix_initial_constants;
}
}
}
if (fix_initial_constants) {
int eprom_loc;
eprom_loc = (char *) &(mem->rcl_burst_time) - (char *) &(mem->flash_start);
writeUserBlock(&globals.Flash, eprom_loc, sizeof(mem->rcl_burst_time));
eprom_loc = (char *) &(mem->rcl_rise_time) - (char *) &(mem->flash_start);
writeUserBlock(&globals.Flash, eprom_loc, sizeof(mem->rcl_rise_time));
eprom_loc = (char *) &(mem->rcl_slew) - (char *) &(mem->flash_start);
writeUserBlock(&globals.Flash, eprom_loc, sizeof(mem->rcl_slew));
eprom_loc = (char *) &(mem->rcl_soft_current_limit) - (char *) &(mem->flash_start);
writeUserBlock(&globals.Flash, eprom_loc, sizeof(mem->rcl_soft_current_limit));
}
}
|