-
Notifications
You must be signed in to change notification settings - Fork 0
/
digital_pulseprocessor.kicad_sch
2110 lines (2065 loc) · 80.9 KB
/
digital_pulseprocessor.kicad_sch
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
(kicad_sch (version 20211123) (generator eeschema)
(uuid 3a2579d7-1f30-4aae-a604-c1c588d6e7c9)
(paper "A4")
(lib_symbols
(symbol "74xx:74LS221" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LS221" (id 1) (at -7.62 -8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS221" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "TTL Monostable" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Dual Monostable" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP?16*" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74LS221_1_0"
(pin input line (at -12.7 5.08 0) (length 5.08)
(name "~{A}" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 5.08)
(name "Q" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 12.7 270) (length 5.08)
(name "Cext" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 12.7 270) (length 5.08)
(name "RCext" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 2.54 0) (length 5.08)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 5.08)
(name "~{CLR}" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -5.08 180) (length 5.08)
(name "~{Q}" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS221_1_1"
(rectangle (start -7.62 7.62) (end 7.62 -7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "74LS221_2_0"
(pin input line (at -12.7 2.54 0) (length 5.08)
(name "B" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 5.08)
(name "~{CLR}" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -5.08 180) (length 5.08)
(name "~{Q}" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 5.08)
(name "Q" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 12.7 270) (length 5.08)
(name "Cext" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 12.7 270) (length 5.08)
(name "RCext" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 5.08)
(name "~{A}" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS221_2_1"
(rectangle (start -7.62 7.62) (end 7.62 -7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "74LS221_3_0"
(pin power_in line (at 0 12.7 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -12.7 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS221_3_1"
(rectangle (start -5.08 7.62) (end 5.08 -7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
)
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (id 0) (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (id 1) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x03_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 1.27 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x03_Odd_Even" (id 1) (at 1.27 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x03_Odd_Even_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 3.81) (end 3.81 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_2_Open" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "solder jumper SPST" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Solder Jumper, 2-pole, open" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_2_Open_0_1"
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -0.254 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.016)
(xy 0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_2_Open_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 157.48 129.54) (diameter 1.016) (color 0 0 0 0)
(uuid 0f77f43f-3a88-4d2e-98b4-1d0b86a7bc90)
)
(junction (at 58.42 106.68) (diameter 1.016) (color 0 0 0 0)
(uuid 17231e44-85ac-4aa3-a964-cf2197ceeee6)
)
(junction (at 114.3 71.12) (diameter 1.016) (color 0 0 0 0)
(uuid 2451d668-51ff-44ab-acfe-cfe666fa0c7e)
)
(junction (at 93.98 181.61) (diameter 1.016) (color 0 0 0 0)
(uuid 30d408b7-6af3-4a56-9ac7-f437419bd0d5)
)
(junction (at 213.36 146.05) (diameter 1.016) (color 0 0 0 0)
(uuid 312b1e58-9b66-4b2d-a1b3-1fc15a2c69a6)
)
(junction (at 176.53 88.9) (diameter 1.016) (color 0 0 0 0)
(uuid 3cbf5e00-b482-4934-aa40-30cce8ae8ed1)
)
(junction (at 58.42 96.52) (diameter 1.016) (color 0 0 0 0)
(uuid 3e5b385e-4a64-4053-880e-e0031299a98c)
)
(junction (at 101.6 57.15) (diameter 1.016) (color 0 0 0 0)
(uuid 3edb16a2-55e0-491b-bd50-9c4fc4f45ac1)
)
(junction (at 44.45 181.61) (diameter 1.016) (color 0 0 0 0)
(uuid 54fa6277-207f-48fc-8ba5-08367c4ef83e)
)
(junction (at 114.3 57.15) (diameter 1.016) (color 0 0 0 0)
(uuid 6ac64fb0-ce26-4829-9754-fa3e990c5a4f)
)
(junction (at 240.03 86.36) (diameter 1.016) (color 0 0 0 0)
(uuid 9c7765b1-1026-4264-833e-5fa1c39587b3)
)
(junction (at 93.98 153.67) (diameter 1.016) (color 0 0 0 0)
(uuid b102087c-eb25-4b44-aa8b-3c782cbfd9bc)
)
(junction (at 213.36 140.97) (diameter 1.016) (color 0 0 0 0)
(uuid b6fc183f-bc5d-42e5-8140-8e73917464cc)
)
(junction (at 209.55 76.2) (diameter 1.016) (color 0 0 0 0)
(uuid c0650eb2-979b-4bda-ab40-56676fbfe3b8)
)
(junction (at 200.66 88.9) (diameter 1.016) (color 0 0 0 0)
(uuid c44a1f42-bfb7-4458-84fa-8fa19240d227)
)
(junction (at 256.54 86.36) (diameter 1.016) (color 0 0 0 0)
(uuid c824a5e3-df89-44cd-8628-dfb590cfba5c)
)
(junction (at 58.42 36.83) (diameter 1.016) (color 0 0 0 0)
(uuid cdb664ee-3f00-4c5a-af63-9c9dadcc63d1)
)
(junction (at 44.45 153.67) (diameter 1.016) (color 0 0 0 0)
(uuid d0330d88-bd9d-4fa5-8b89-1b2d95749b04)
)
(junction (at 209.55 66.04) (diameter 1.016) (color 0 0 0 0)
(uuid e7c9f62a-790c-428c-8536-36156cd25e01)
)
(junction (at 58.42 46.99) (diameter 1.016) (color 0 0 0 0)
(uuid f9068831-8f5b-4b4f-886a-9c4e538eb3c4)
)
(no_connect (at 234.95 96.52) (uuid 26b9f90c-bfbc-49e0-a7c8-3b25a2b912bd))
(no_connect (at 83.82 67.31) (uuid 741b32b9-5f1a-4180-b64a-20b9b0b6a395))
(no_connect (at 228.6 130.81) (uuid 741b32b9-5f1a-4180-b64a-20b9b0b6a396))
(no_connect (at 231.14 130.81) (uuid 741b32b9-5f1a-4180-b64a-20b9b0b6a397))
(no_connect (at 241.3 138.43) (uuid 741b32b9-5f1a-4180-b64a-20b9b0b6a398))
(no_connect (at 241.3 148.59) (uuid 741b32b9-5f1a-4180-b64a-20b9b0b6a399))
(no_connect (at 83.82 127) (uuid f4862ea4-dc61-4220-b1a3-519c8a432385))
(wire (pts (xy 73.66 96.52) (xy 58.42 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 02db2384-9235-4e31-a4f6-394bb96c18c4)
)
(wire (pts (xy 209.55 76.2) (xy 209.55 86.36))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 02fd4889-82f1-4768-823d-60e8096f8178)
)
(wire (pts (xy 121.92 71.12) (xy 114.3 71.12))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 052ad74b-4d3e-4b98-a0e4-e4ff2c662646)
)
(wire (pts (xy 240.03 86.36) (xy 245.11 86.36))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 05601306-c768-411c-87f6-586e8f82eef5)
)
(wire (pts (xy 222.25 76.2) (xy 209.55 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 06f93614-73c3-415a-9497-6dc3f732138f)
)
(wire (pts (xy 209.55 76.2) (xy 201.93 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0d987079-9d35-41e8-8117-4c90586ecc4e)
)
(wire (pts (xy 83.82 57.15) (xy 101.6 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0f4df2de-529e-47c6-9cb3-ee77decace0e)
)
(wire (pts (xy 41.91 124.46) (xy 58.42 124.46))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 11cd2259-a8a8-47fc-95fa-6a0ab569350a)
)
(wire (pts (xy 157.48 127) (xy 157.48 129.54))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 12ed0d51-6061-41f0-96f8-740daa741335)
)
(wire (pts (xy 156.21 127) (xy 157.48 127))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 12ed0d51-6061-41f0-96f8-740daa741336)
)
(wire (pts (xy 58.42 25.4) (xy 58.42 27.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 147d8899-6804-4767-9a6e-ede10c0d8a70)
)
(wire (pts (xy 71.12 49.53) (xy 71.12 46.99))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1846167a-ae42-43d0-966f-303ceb8e8814)
)
(wire (pts (xy 58.42 35.56) (xy 58.42 36.83))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 19031999-2dea-4cf9-b633-22122c4d1b82)
)
(wire (pts (xy 73.66 36.83) (xy 73.66 49.53))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 19cc2202-3e0b-474f-95f8-eb82be776328)
)
(wire (pts (xy 58.42 46.99) (xy 50.8 46.99))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1d97d628-3377-4df5-a77c-08c32362ac20)
)
(wire (pts (xy 83.82 116.84) (xy 93.98 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 21451de0-8b96-417a-b6db-326287d4731b)
)
(wire (pts (xy 252.73 86.36) (xy 256.54 86.36))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 218f6264-2952-40d1-ab67-06a02451c994)
)
(wire (pts (xy 256.54 86.36) (xy 259.08 86.36))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 218f6264-2952-40d1-ab67-06a02451c995)
)
(wire (pts (xy 58.42 45.72) (xy 58.42 46.99))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 24d83228-3ffe-4f15-88cb-77b890422bbf)
)
(wire (pts (xy 114.3 81.28) (xy 114.3 71.12))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2643ca27-f195-4702-8696-0d8828664fed)
)
(wire (pts (xy 93.98 180.34) (xy 93.98 181.61))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2742b04c-b365-4afd-8a4e-c7854836aac5)
)
(wire (pts (xy 73.66 96.52) (xy 73.66 109.22))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 29b54be5-114b-41dc-b7c9-0823df52af6c)
)
(wire (pts (xy 71.12 106.68) (xy 58.42 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2c8d9fcd-0e68-4874-b0e1-cb5b5b610c55)
)
(wire (pts (xy 58.42 105.41) (xy 58.42 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 30cb70e0-de1d-46e0-9f33-98e74f8b5771)
)
(wire (pts (xy 114.3 57.15) (xy 121.92 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 319d3f2a-7372-400e-ba1b-1bb93587ff89)
)
(wire (pts (xy 55.88 119.38) (xy 58.42 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 366123d2-aafb-41b7-a6ed-1dafd808be32)
)
(wire (pts (xy 140.97 135.89) (xy 143.51 135.89))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4626e13c-0f16-433f-bec0-ad45e155cf31)
)
(wire (pts (xy 143.51 135.89) (xy 143.51 132.08))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4626e13c-0f16-433f-bec0-ad45e155cf32)
)
(wire (pts (xy 41.91 64.77) (xy 58.42 64.77))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 48759559-abbb-4fa7-90a8-2e908aba0435)
)
(wire (pts (xy 54.61 59.69) (xy 58.42 59.69))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 51ec15d2-7f3f-442c-80de-14835932f4e1)
)
(wire (pts (xy 209.55 74.93) (xy 209.55 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 61e33d81-a95b-45d4-bf3d-e4e63b70d9cc)
)
(wire (pts (xy 58.42 106.68) (xy 50.8 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6316f078-9085-4185-8e65-104451892bcd)
)
(wire (pts (xy 73.66 36.83) (xy 58.42 36.83))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 65ce502c-2dd0-4c00-b963-76eed3e68060)
)
(wire (pts (xy 213.36 140.97) (xy 213.36 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6b55d5b5-162e-40c9-8fc7-d374cb1be216)
)
(wire (pts (xy 215.9 140.97) (xy 213.36 140.97))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6b55d5b5-162e-40c9-8fc7-d374cb1be217)
)
(wire (pts (xy 44.45 153.67) (xy 44.45 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6d53c1f2-2a43-4cc8-92d8-a57a9177aa98)
)
(wire (pts (xy 218.44 113.03) (xy 200.66 113.03))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7078cbb2-cce9-4a53-b159-df17c004b6dd)
)
(wire (pts (xy 101.6 88.9) (xy 176.53 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 71d82ec8-54bb-4ecb-a4b7-e654238d67ea)
)
(wire (pts (xy 71.12 46.99) (xy 58.42 46.99))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 73e43cf4-771d-45ec-abd5-3f6f9d49b74f)
)
(wire (pts (xy 200.66 113.03) (xy 200.66 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 76abe52e-3a7b-4a43-be12-83849db3bb1d)
)
(wire (pts (xy 222.25 78.74) (xy 222.25 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7833bf89-ed44-4712-bc84-efe7fc091741)
)
(wire (pts (xy 256.54 83.82) (xy 256.54 86.36))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7ca22ade-c40e-4ea0-8030-d9061d3559e8)
)
(wire (pts (xy 209.55 101.6) (xy 204.47 101.6))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7cd5bd3b-4d07-4b96-8898-c3e1b479a2c5)
)
(wire (pts (xy 93.98 153.67) (xy 93.98 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7ea0b110-677a-49aa-b6d4-42c56fed89b0)
)
(wire (pts (xy 234.95 86.36) (xy 240.03 86.36))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7efba8ce-f4d3-4858-b3c4-b9c1b5256c46)
)
(wire (pts (xy 209.55 64.77) (xy 209.55 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7f4ad7a3-f62a-4391-b5fe-8bcd015bf5a0)
)
(wire (pts (xy 114.3 57.15) (xy 114.3 59.69))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 80c1b755-b933-424e-90d3-ed1e62f1b57d)
)
(wire (pts (xy 101.6 88.9) (xy 101.6 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8434d5e9-fb32-4525-8270-c1671326c0e4)
)
(wire (pts (xy 176.53 88.9) (xy 200.66 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 87f8633c-dfa1-4bd4-a6b4-f9521e46f3a5)
)
(wire (pts (xy 213.36 138.43) (xy 213.36 140.97))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8f06c529-4694-4f2d-959f-4ca76ea6622a)
)
(wire (pts (xy 215.9 138.43) (xy 213.36 138.43))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8f06c529-4694-4f2d-959f-4ca76ea6622b)
)
(wire (pts (xy 101.6 57.15) (xy 114.3 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 90327201-34ed-4f1c-8263-5297c3e00377)
)
(wire (pts (xy 50.8 46.99) (xy 50.8 48.26))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 930b4bcc-4c64-4f2f-bf2f-d322fef7b0fd)
)
(wire (pts (xy 176.53 87.63) (xy 176.53 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9551e1fe-7d42-4cff-a4d5-3c863619bba2)
)
(wire (pts (xy 24.13 153.67) (xy 24.13 163.83))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9f9984f7-1a5e-4be6-8db7-c12bd0545d42)
)
(wire (pts (xy 44.45 153.67) (xy 24.13 153.67))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9f9984f7-1a5e-4be6-8db7-c12bd0545d43)
)
(wire (pts (xy 58.42 36.83) (xy 58.42 38.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ade75108-5dfe-4dfd-a403-cabd62acce23)
)
(wire (pts (xy 76.2 171.45) (xy 76.2 181.61))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b2a9ebce-a701-413b-9396-d8c2ea8f7f6c)
)
(wire (pts (xy 76.2 181.61) (xy 93.98 181.61))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b2a9ebce-a701-413b-9396-d8c2ea8f7f6d)
)
(wire (pts (xy 58.42 96.52) (xy 58.42 97.79))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b3ddb2c3-4138-449e-b5e8-5215d8cb3c84)
)
(wire (pts (xy 58.42 85.09) (xy 58.42 87.63))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b5ffe8c7-ff76-4bc8-b3e1-d2a95116dbc3)
)
(wire (pts (xy 157.48 129.54) (xy 162.56 129.54))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ba811466-7855-4228-9759-9cf515e6a940)
)
(wire (pts (xy 156.21 129.54) (xy 157.48 129.54))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ba811466-7855-4228-9759-9cf515e6a941)
)
(wire (pts (xy 44.45 180.34) (xy 44.45 181.61))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb07cf5d-722c-43bb-85cd-0ef764a606d3)
)
(wire (pts (xy 58.42 106.68) (xy 58.42 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bbe613d3-f6ef-4768-aa6e-4e48a04b891c)
)
(wire (pts (xy 204.47 101.6) (xy 204.47 100.33))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bddf1a0e-e630-4f39-9ca0-4b05e760e075)
)
(wire (pts (xy 200.66 88.9) (xy 209.55 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c3a986f2-0e14-4f25-b4d3-b91c97bded3e)
)
(wire (pts (xy 121.92 81.28) (xy 114.3 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c6a508ec-331c-4ac5-b11c-32aac9a9a037)
)
(wire (pts (xy 58.42 57.15) (xy 58.42 46.99))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cec0ba4a-e949-4e10-abfd-ac89f7ea1f04)
)
(wire (pts (xy 76.2 153.67) (xy 76.2 163.83))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cecdd9f7-2309-4161-8bde-775602264b7b)
)
(wire (pts (xy 93.98 153.67) (xy 76.2 153.67))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cecdd9f7-2309-4161-8bde-775602264b7c)
)
(wire (pts (xy 114.3 71.12) (xy 114.3 67.31))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d05054ce-2b24-476a-8da5-97ab423fec8d)
)
(wire (pts (xy 209.55 54.61) (xy 209.55 57.15))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d66303a1-7a63-4ce4-9741-67730df422a2)
)
(wire (pts (xy 226.06 113.03) (xy 240.03 113.03))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d9de746a-82f8-476d-a36c-bf829358c61f)
)
(wire (pts (xy 224.79 66.04) (xy 209.55 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d9eb0dac-7cc7-4d29-82b1-d948c944f072)
)
(wire (pts (xy 140.97 123.19) (xy 143.51 123.19))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid dedb74c7-cfcb-4e7e-a72c-35ff3cde0be0)
)
(wire (pts (xy 143.51 123.19) (xy 143.51 127))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid dedb74c7-cfcb-4e7e-a72c-35ff3cde0be1)
)
(wire (pts (xy 215.9 146.05) (xy 213.36 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid df604312-c154-4e0f-88a1-3d5aa0fbef16)
)
(wire (pts (xy 213.36 146.05) (xy 213.36 149.86))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid df604312-c154-4e0f-88a1-3d5aa0fbef17)
)
(wire (pts (xy 201.93 76.2) (xy 201.93 77.47))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e194c854-3efb-4851-8b71-dcb59b6a2c03)
)
(wire (pts (xy 140.97 129.54) (xy 143.51 129.54))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e3f9680d-c434-45d6-bfca-5c5de81780d4)
)
(wire (pts (xy 24.13 181.61) (xy 24.13 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e5cae2c8-b65e-4c8b-a82b-280db09295a2)
)
(wire (pts (xy 44.45 181.61) (xy 24.13 181.61))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e5cae2c8-b65e-4c8b-a82b-280db09295a3)
)
(wire (pts (xy 50.8 106.68) (xy 50.8 107.95))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ec3e2f87-bb17-41fc-8ea2-773c0e7c3a53)
)
(wire (pts (xy 157.48 132.08) (xy 157.48 129.54))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ecdd0aa5-79e3-469a-abbf-4227c1e0434e)
)
(wire (pts (xy 156.21 132.08) (xy 157.48 132.08))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ecdd0aa5-79e3-469a-abbf-4227c1e0434f)
)
(wire (pts (xy 209.55 66.04) (xy 209.55 67.31))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid eec25278-0c81-4fbf-a94f-c59ceb908468)
)
(wire (pts (xy 224.79 66.04) (xy 224.79 78.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f506f07d-f571-4e69-ae30-ca23a1f17a3f)
)
(wire (pts (xy 209.55 93.98) (xy 209.55 101.6))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f5bdd127-82c2-4641-abd2-17e4f2a62c25)
)
(wire (pts (xy 240.03 113.03) (xy 240.03 86.36))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f6f02748-9107-43b1-aee4-c546003071e0)
)
(wire (pts (xy 71.12 109.22) (xy 71.12 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f87e88f2-38d1-4096-a4d9-857adf97d8d7)
)
(wire (pts (xy 58.42 95.25) (xy 58.42 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fed8299a-0701-4584-aadb-acf5aabdab21)
)
(text "tau=50ms" (at 74.93 95.25 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1c65067a-05fd-45bc-882d-01c517075580)
)
(text "tau=100ns" (at 74.93 35.56 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4b32c966-6000-46b8-b8a8-a86f6a920323)
)
(text "EVT_XOR refers to the two detector version of the circuit. \nEVT_XOR and EVT_AND are possible signals there. \nFor reasons of backward compatibility, the naming of\nthe net is the same here."
(at 247.65 96.52 0)
(effects (font (size 0.762 0.762)) (justify left bottom))
(uuid 57a83400-b104-4966-9e4d-f5916aef92bd)
)
(text "tau=1us" (at 226.06 64.77 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 58898a60-9e9b-4802-8950-51c5d099248d)
)
(text "2 Variants\n\na.) with the possibility to add a Peakdetector: as shown in the schematics\nU300A extends the pulse to 100ns. Used as a reset signal for the Peakdetector. This is than extended to 1us\nused as a event signal to the raspberry pi.\n\n\nb.) without Peak Detector:\nU300A extends the pulse to 1us used as a event signal to the raspberry pi. \n \nremove U301, R303, C303\nremove R600, R601, C600, C601, JP601, JP602\n\nreplace C300 33p with 1n\n\nsolder Jumper J300 is connected\n\n"
(at 120.65 49.53 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a2ea2911-dd88-4a80-b858-3707585cb1c4)
)
(global_label "DISCR1.1_TERM" (shape input) (at 140.97 129.54 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 00b6ffe0-7229-475e-ad06-0775e0756934)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 122.5791 129.6194 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "EVT_XOR" (shape input) (at 259.08 86.36 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1054fe2f-d6a7-40da-8d37-c70fb4b41913)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 271 86.2806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "IND_CH1" (shape input) (at 93.98 116.84 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 20c63506-29a2-4e24-82f3-a8f0a5560949)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 105.9 116.7606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DISCR1.1_TERM" (shape input) (at 121.92 81.28 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 226e6d49-80ab-4658-b937-4d441950c58d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 140.3109 81.2006 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "DISCR1.1" (shape input) (at 121.92 57.15 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 56414d7b-b595-4020-a980-20f7b37fa1dd)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 134.5052 57.0706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TIME_MEAS" (shape input) (at 162.56 129.54 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 598b64d1-a2f5-4ed1-9304-445614ffa2aa)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 176.5361 129.4606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TIMEPULSE" (shape input) (at 140.97 123.19 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 884f2913-d7f7-4a85-96ef-07649c37bbe5)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.8729 123.1106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DISCR1.1" (shape input) (at 55.88 119.38 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 96e48e84-77d8-4882-a669-e99584cc3c50)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 43.2948 119.4594 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)