-
Notifications
You must be signed in to change notification settings - Fork 3
/
AntennaAnalyser.vbd
1237 lines (1041 loc) · 22.2 KB
/
AntennaAnalyser.vbd
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
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[VeroDes board definition file v0.01]
DEFBOARD
{
filename "AntennaAnalyser.vbd"
created "25/05/2014 17:01:23"
lastsaved "30/05/2014 08:02:09"
boardsize 31 holes, 38 tracks
components 42
{
defcompo 1
devid "DDSMOD"
label ""
lblopp False
position 2,4
rotation none
value "AD9850 Module"
userdev True
defcompo 2
devid "ARDMIC"
label ""
lblopp True
position 5,21
rotation none
value "Arduino Micro"
userdev True
defcompo 3
devid "CN_SINGLEPIN"
label ""
lblopp False
position 15,24
rotation none
userdev False
defcompo 4
devid "CN_SINGLEPIN"
label ""
lblopp False
position 15,23
rotation none
userdev False
defcompo 5
devid "CN_SINGLEPIN"
label ""
lblopp False
position 15,27
rotation none
userdev False
defcompo 6
devid "CN_SINGLEPIN"
label ""
lblopp False
position 31,26
rotation none
userdev False
defcompo 7
devid "CN_SINGLEPIN"
label ""
lblopp False
position 31,25
rotation none
userdev False
defcompo 8
devid "VREG"
label ""
lblopp False
position 26,25
rotation none
userdev True
defcompo 9
devid "VREG"
label ""
lblopp True
position 23,25
rotation invert
userdev True
defcompo 10
devid "CN_SINGLEPIN"
label ""
lblopp False
position 13,5
rotation none
userdev False
defcompo 11
devid "DI_NEW"
label ""
lblopp True
position 2,26
rotation invert
userdev True
defcompo 12
devid "CA_NEW"
label ""
lblopp False
position 17,5
rotation left
value "1uF"
userdev True
defcompo 13
devid "CA_ELECSMALL"
label ""
lblopp False
position 29,26
rotation invert
value "10uF"
userdev False
defcompo 14
devid "CA_ELECSMALL"
label ""
lblopp True
position 21,26
rotation none
value "10uF"
userdev False
defcompo 15
devid "CA_ELECSMALL"
label ""
lblopp True
position 20,24
rotation invert
value "10uF"
userdev False
defcompo 16
devid "RE_4_SMALL"
label ""
lblopp False
position 14,10
rotation none
value "649"
userdev True
defcompo 17
devid "DP_8PIN03"
label ""
lblopp False
position 19,12
rotation none
userdev False
defcompo 18
devid "RE_STD2"
label ""
lblopp True
position 17,12
rotation none
value "10k"
userdev False
defcompo 19
devid "RE_STD2"
label ""
lblopp False
position 18,12
rotation none
value "10k"
userdev False
defcompo 20
devid "CAPA"
label ""
lblopp False
position 23,10
rotation none
value "10n"
userdev True
defcompo 21
devid "RE_STD2"
label ""
lblopp False
position 23,13
rotation none
value "10k"
userdev False
defcompo 22
devid "RE_STD2"
label ""
lblopp False
position 24,13
rotation none
value "10k"
userdev False
defcompo 23
devid "CAPA"
label ""
lblopp False
position 16,8
rotation none
value "100n"
userdev True
defcompo 24
devid "DIODE"
label ""
lblopp False
position 17,8
rotation none
userdev True
defcompo 25
devid "DIODE"
label ""
lblopp False
position 26,8
rotation invert
userdev True
defcompo 26
devid "RE_3SMALL"
label ""
lblopp True
position 21,10
rotation invert
value "50"
userdev True
defcompo 27
devid "RE_4_SMALL"
label ""
lblopp True
position 22,8
rotation invert
value "50"
userdev True
defcompo 28
devid "CAP4"
label ""
lblopp False
position 27,8
rotation invert
value "100n"
userdev True
defcompo 29
devid "RE_4_SMALL"
label ""
lblopp False
position 26,5
rotation left
value "50"
userdev True
defcompo 30
devid "CN_SINGLEPIN"
label ""
lblopp False
position 28,5
rotation left
userdev False
defcompo 31
devid "CN_SINGLEPIN"
label ""
lblopp False
position 31,5
rotation left
userdev False
defcompo 32
devid "CAP4"
label ""
lblopp False
position 15,14
rotation none
value "10n"
userdev True
defcompo 33
devid "RE_4_SMALL"
label ""
lblopp False
position 17,14
rotation none
value "100k"
userdev True
defcompo 34
devid "RE_STD3"
label ""
lblopp False
position 23,15
rotation none
value "100k"
userdev False
defcompo 35
devid "RE_4_SMALL"
label ""
lblopp False
position 27,14
rotation none
value "649"
userdev True
defcompo 36
devid "CAPA"
label ""
lblopp False
position 24,15
rotation none
value "10n"
userdev True
defcompo 37
devid "CN_SINGLEPIN"
label ""
lblopp False
position 24,34
rotation none
userdev False
defcompo 38
devid "CN_SINGLEPIN"
label ""
lblopp False
position 15,33
rotation none
userdev False
defcompo 39
devid "RES8SM"
label ""
lblopp False
position 29,8
rotation none
value "10k"
userdev True
defcompo 40
devid "RES7SM"
label ""
lblopp False
position 13,8
rotation none
value "10k"
userdev True
defcompo 41
devid "RES10SM"
label ""
lblopp False
position 1,24
rotation none
value "10k"
userdev True
defcompo 42
devid "CN_SINGLEPIN"
label ""
lblopp False
position 14,17
rotation none
userdev False
}
wirelinks 22
{
deflink 1
startpos 18,24
endpos 18,26
deflink 2
startpos 27,26
endpos 27,24
deflink 3
startpos 1,4
endpos 1,10
deflink 4
startpos 1,11
endpos 1,12
deflink 5
startpos 3,12
endpos 3,13
deflink 6
startpos 1,13
endpos 1,20
deflink 7
startpos 4,10
endpos 4,17
deflink 8
startpos 3,17
endpos 3,26
deflink 9
startpos 6,34
endpos 6,12
deflink 10
startpos 7,11
endpos 7,35
deflink 11
startpos 8,10
endpos 8,36
deflink 12
startpos 9,9
endpos 9,37
deflink 13
startpos 12,17
endpos 12,10
deflink 14
startpos 13,17
endpos 13,24
deflink 15
startpos 17,27
endpos 17,20
deflink 16
startpos 18,15
endpos 18,17
deflink 17
startpos 16,33
endpos 16,12
deflink 18
startpos 25,13
endpos 25,34
deflink 19
startpos 30,20
endpos 30,12
deflink 20
startpos 31,17
endpos 31,10
deflink 21
startpos 30,10
endpos 30,5
deflink 22
startpos 5,10
endpos 5,8
}
trackbreaks 66
{
defbreak 1
position 12,37
defbreak 2
position 9,36
defbreak 3
position 8,35
defbreak 4
position 7,34
defbreak 5
position 6,33
defbreak 6
position 6,32
defbreak 7
position 6,31
defbreak 8
position 6,30
defbreak 9
position 6,29
defbreak 10
position 6,28
defbreak 11
position 6,27
defbreak 12
position 6,26
defbreak 13
position 6,25
defbreak 14
position 6,24
defbreak 15
position 6,23
defbreak 16
position 6,22
defbreak 17
position 6,21
defbreak 18
position 12,25
defbreak 19
position 12,21
defbreak 20
position 12,22
defbreak 21
position 12,27
defbreak 22
position 12,28
defbreak 23
position 12,29
defbreak 24
position 12,30
defbreak 25
position 12,31
defbreak 26
position 12,32
defbreak 27
position 26,34
defbreak 28
position 12,35
defbreak 29
position 3,4
defbreak 30
position 3,6
defbreak 31
position 3,7
defbreak 32
position 3,8
defbreak 33
position 3,9
defbreak 34
position 5,12
defbreak 35
position 4,13
defbreak 36
position 6,11
defbreak 37
position 7,10
defbreak 38
position 8,9
defbreak 39
position 11,4
defbreak 40
position 11,6
defbreak 41
position 11,7
defbreak 42
position 11,8
defbreak 43
position 11,9
defbreak 44
position 11,10
defbreak 45
position 11,11
defbreak 46
position 11,12
defbreak 47
position 11,13
defbreak 48
position 12,36
defbreak 49
position 12,26
defbreak 50
position 3,24
defbreak 51
position 16,5
defbreak 52
position 10,37
defbreak 53
position 19,8
defbreak 54
position 24,8
defbreak 55
position 24,5
defbreak 56
position 29,5
defbreak 57
position 17,33
defbreak 58
position 20,12
defbreak 59
position 20,13
defbreak 60
position 20,14
defbreak 61
position 20,15
defbreak 62
position 9,5
defbreak 63
position 3,5
defbreak 64
position 9,4
defbreak 65
position 9,6
defbreak 66
position 9,7
}
annotations 47
{
defanno 1
message " < GND"
txtstyle "Courier New" 10pt bold
position 31,17
defanno 2
message " < +5v"
txtstyle "Courier New" 10pt bold
position 31,20
defanno 3
message "FWD"
txtstyle "Courier New" 10pt bold
position 14,34
defanno 4
message "REV"
txtstyle "Courier New" 10pt bold
position 23,35
defanno 5
message "+5v"
txtstyle "Courier New" 10pt bold
position 14,28
defanno 6
message "+9v"
txtstyle "Courier New" 10pt bold
position 14,22
defanno 7
message "RF"
txtstyle "Courier New" 10pt bold
position 12,3
defanno 8
message "GND"
txtstyle "Courier New" 10pt bold
position 14,25
defanno 9
message "In"
txtstyle "Courier New" 10pt bold
position 24,25
defanno 10
message "7809"
txtstyle "Courier New" 10pt bold
position 22,21
defanno 11
message "7805"
txtstyle "Courier New" 10pt bold
position 26,29
defanno 12
message "Out"
txtstyle "Courier New" 10pt bold
position 24,23
defanno 13
message "Out"
txtstyle "Courier New" 10pt bold
position 24,27
defanno 14
message "AD9850 DDS"
txtstyle "Courier New" 10pt bold
position 2,2
defanno 15
message "C5"
txtstyle "Courier New" 10pt bold
position 13,15
defanno 16
message " < GND"
txtstyle "Courier New" 10pt bold
position 31,10
defanno 17
message "R1"
txtstyle "Courier New" 10pt bold
position 24,4
defanno 18
message "ANT"
txtstyle "Courier New" 10pt bold
position 27,3
defanno 19
message "ANT"
txtstyle "Courier New" 10pt bold
position 30,3
defanno 20
message "R2"
txtstyle "Courier New" 10pt bold
position 20,6
defanno 21
message "C2"
txtstyle "Courier New" 10pt bold
position 25,6
defanno 22
message "D1"
txtstyle "Courier New" 10pt bold
position 24,7
defanno 23
message "D2"
txtstyle "Courier New" 10pt bold
position 18,7
defanno 24
message "R4"
txtstyle "Courier New" 10pt bold
position 28,11
defanno 25
message "C3"
txtstyle "Courier New" 10pt bold
position 23,18
defanno 26
message "R7"
txtstyle "Courier New" 10pt bold
position 26,13
defanno 27
message "C4"
txtstyle "Courier New" 10pt bold
position 15,7
defanno 28
message "R10"
txtstyle "Courier New" 10pt bold
position 17,11
defanno 29
message "R6"
txtstyle "Courier New" 10pt bold
position 24,12
defanno 30
message "R11"
txtstyle "Courier New" 10pt bold
position 14,11
defanno 31
message "LED1"
txtstyle "Courier New" 10pt bold
position 1,22
defanno 32
message "R12"
txtstyle "Courier New" 10pt bold
position 2,29
defanno 33
message "R8"
txtstyle "Courier New" 10pt bold
position 12,7
defanno 34
message "C1"
txtstyle "Courier New" 10pt bold
position 18,5
defanno 35
message "R3"
txtstyle "Courier New" 10pt bold
position 19,9
defanno 36
message "C6"
txtstyle "Courier New" 10pt bold
position 24,10
defanno 37
message "R5"
txtstyle "Courier New" 10pt bold
position 21,16
defanno 38
message "R9"
txtstyle "Courier New" 10pt bold
position 16,16
defanno 39
message "U2"
txtstyle "Courier New" 10pt bold
position 20,14
defanno 40
message "U1"
txtstyle "Courier New" 10pt bold
position 6,37
defanno 41
message "C9"
txtstyle "Courier New" 10pt bold
position 19,22
defanno 42
message "C8"
txtstyle "Courier New" 10pt bold
position 20,28
defanno 43
message "C7"
txtstyle "Courier New" 10pt bold
position 28,24
defanno 44
message " +12v IN"
txtstyle "Courier New" 10pt bold
position 31,25
defanno 45
message " GND IN"
txtstyle "Courier New" 10pt bold
position 31,26
defanno 46
message "TEST"
txtstyle "Courier New" 10pt bold
position 12,4
defanno 47
message "GND"
txtstyle "Courier New" 10pt bold
position 13,18
}
}
; ###########################
; ### EMBEDDED COMPONENTS ###
; ###########################
DEFCOMPONENT
{
name "AD9850 Module"
identifier "DDSMOD"
category "Miscellaneous"
pins 20
{
pin 1 at 2,4 home
pin 2 at 2,5
pin 3 at 2,6
pin 4 at 2,7
pin 5 at 2,8
pin 6 at 2,9
pin 7 at 2,10
pin 8 at 2,11
pin 9 at 2,12
pin 10 at 2,13
pin 11 at 10,4
pin 12 at 10,5
pin 13 at 10,6
pin 14 at 10,7
pin 15 at 10,8
pin 16 at 10,9
pin 17 at 10,10
pin 18 at 10,11
pin 19 at 10,12
pin 20 at 10,13
}
rects 1
{
rect 1 at 4,8 - 136,212
}
circs 0
lines 0
}
DEFCOMPONENT
{
name "Arduino Micro"
identifier "ARDMIC"
category "Miscellaneous"
pins 34
{
pin 1 at 1,2 home
pin 2 at 1,3
pin 3 at 1,4
pin 4 at 1,5
pin 5 at 1,6
pin 6 at 1,7
pin 7 at 1,8
pin 8 at 1,9
pin 9 at 1,10
pin 10 at 1,11
pin 11 at 1,12
pin 12 at 1,13
pin 13 at 1,14
pin 14 at 1,15
pin 15 at 1,16
pin 16 at 1,17
pin 17 at 1,18
pin 18 at 7,2
pin 19 at 7,3
pin 20 at 7,4
pin 21 at 7,5
pin 22 at 7,6
pin 23 at 7,7
pin 24 at 7,8
pin 25 at 7,9
pin 26 at 7,10
pin 27 at 7,11
pin 28 at 7,12
pin 29 at 7,13
pin 30 at 7,14
pin 31 at 7,15
pin 32 at 7,16
pin 33 at 7,17
pin 34 at 7,18
}
rects 1
{
rect 1 at 4,8 - 88,224
}
circs 0
lines 0
}
DEFCOMPONENT
{
name "78xx Voltage Regulator"