-
Notifications
You must be signed in to change notification settings - Fork 0
/
uhf_pa.kicad_sch
2057 lines (2012 loc) · 80.7 KB
/
uhf_pa.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 9b7a6d19-a825-45e3-94e1-101c2ade95ea)
(paper "A4")
(lib_symbols
(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 "Device:C_Polarized_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_Small_0_1"
(rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -1.524 0.6858) (end 1.524 0.3048)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.524)
(xy -0.762 1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.27)
(xy -1.016 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Polarized_Small_1_1"
(pin passive line (at 0 2.54 270) (length 1.8542)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 1.8542)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:FerriteBead" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (id 0) (at -3.81 0.635 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "FerriteBead" (id 1) (at 3.81 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" "L ferrite bead inductor filter" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ferrite bead" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FerriteBead_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -1.2192)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 1.2954)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.7686 0.4064)
(xy -1.7018 2.2606)
(xy 2.7686 -0.3048)
(xy 1.6764 -2.159)
(xy -2.7686 0.4064)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "FerriteBead_1_1"
(pin passive line (at 0 3.81 270) (length 2.54)
(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.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0.762 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "L_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_Small_0_1"
(arc (start 0 -2.032) (mid 0.508 -1.524) (end 0 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -1.016) (mid 0.508 -0.508) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid 0.508 0.508) (end 0 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 1.016) (mid 0.508 1.524) (end 0 2.032)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "L_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.508)
(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 "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "STS1_COBC_V2-rescue:TPS22950CQDDCRQ1" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
(property "Reference" "IC" (id 0) (at 24.13 7.62 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TPS22950CQDDCRQ1" (id 1) (at 24.13 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "SOT95P280X110-6N" (id 2) (at 24.13 2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://www.ti.com/lit/ds/symlink/tps22950-q1.pdf?ts=1694525237215&ref_url=https%253A%252F%252Fwww.ti.com%252Fproduct%252FTPS22950-Q1%252Fpart-details%252FTPS22950CQDDCRQ1" (id 3) (at 24.13 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "Power Switch ICs - Power Distribution Automotive 5.5-V, 2.7-A, 34-mO load switch with adjustable current limit" (id 4) (at 24.13 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "1.1" (id 5) (at 24.13 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "595-TPS22950CQDDCRQ1" (id 6) (at 24.13 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/TPS22950CQDDCRQ1?qs=rQFj71Wb1eUzXvn2C9u1pw%3D%3D" (id 7) (at 24.13 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "Texas Instruments" (id 8) (at 24.13 -12.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "TPS22950CQDDCRQ1" (id 9) (at 24.13 -15.24 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_description" "Power Switch ICs - Power Distribution Automotive 5.5-V, 2.7-A, 34-mO load switch with adjustable current limit" (id 10) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TPS22950CQDDCRQ1_0_0"
(pin passive line (at 0 0 0) (length 5.08)
(name "ON" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 5.08)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 27.94 -5.08 180) (length 5.08)
(name "ILIM" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 27.94 -2.54 180) (length 5.08)
(name "VOUT" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 27.94 0 180) (length 5.08)
(name "FLT" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
(symbol "TPS22950CQDDCRQ1_0_1"
(polyline
(pts
(xy 5.08 2.54)
(xy 22.86 2.54)
(xy 22.86 -7.62)
(xy 5.08 -7.62)
(xy 5.08 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "lsf-kicad-lib:TQP7M9106" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -5.08 11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TQP7M9106" (id 1) (at -8.89 13.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias" (id 2) (at 48.26 3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.qorvo.com/products/d/da005671" (id 3) (at -5.08 11.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Power Amplifier" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "50 - 1500 MHz, 2 Watt High Linearity Amplifier, QFN24" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*QFN*24*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TQP7M9106_0_1"
(rectangle (start -15.24 10.16) (end 15.24 -10.16)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(polyline
(pts
(xy -2.54 2.54)
(xy -2.54 -2.54)
(xy 2.54 0)
(xy -2.54 2.54)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "TQP7M9106_1_1"
(pin input line (at -17.78 7.62 0) (length 2.54)
(name "VBIAS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 2.54 180) (length 2.54)
(name "RFOUT/VCC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 0 180) (length 2.54)
(name "RFOUT/VCC" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -2.54 180) (length 2.54)
(name "RFOUT/VCC" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 5.08 0) (length 2.54)
(name "IREF" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -12.7 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -12.7 90) (length 2.54)
(name "EP" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 0 0) (length 2.54)
(name "RFIN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -2.54 0) (length 2.54)
(name "RFIN" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "9" (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" "global power" (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))))
)
)
)
)
(junction (at 132.08 128.27) (diameter 0) (color 0 0 0 0)
(uuid 120d343a-3f5a-420e-838f-80fc93d29261)
)
(junction (at 175.26 119.38) (diameter 0) (color 0 0 0 0)
(uuid 1aa7f4fc-a7b2-417d-8385-ab7bb7e2a633)
)
(junction (at 175.26 127) (diameter 0) (color 0 0 0 0)
(uuid 1f576819-323e-4ac5-9cbc-4db18e8c9ffa)
)
(junction (at 151.13 142.24) (diameter 0) (color 0 0 0 0)
(uuid 20150865-9211-4118-aff7-875871fdc61c)
)
(junction (at 185.42 110.49) (diameter 0) (color 0 0 0 0)
(uuid 26471f59-d53f-472c-a55f-0924e34a8015)
)
(junction (at 115.57 106.68) (diameter 0) (color 0 0 0 0)
(uuid 363ab659-d368-4cad-b1fa-ed927b23562b)
)
(junction (at 171.45 127) (diameter 0) (color 0 0 0 0)
(uuid 3cafb847-f06d-4161-8170-155a7f48514e)
)
(junction (at 185.42 106.68) (diameter 0) (color 0 0 0 0)
(uuid 4b529720-4a94-4a7e-bdc7-3d4a0e043c5c)
)
(junction (at 185.42 101.6) (diameter 0) (color 0 0 0 0)
(uuid 4f71255f-3ba0-4fb9-afe1-071b1c304b24)
)
(junction (at 119.38 128.27) (diameter 0) (color 0 0 0 0)
(uuid 64cf8f7b-58a8-47b5-9bff-838ee77dc70d)
)
(junction (at 175.26 92.71) (diameter 0) (color 0 0 0 0)
(uuid 7289581f-1a21-4a5a-a06d-0c5aa8a84336)
)
(junction (at 195.58 127) (diameter 0) (color 0 0 0 0)
(uuid 8465c72d-99e6-4a6f-8c65-6915c97599c7)
)
(junction (at 153.67 142.24) (diameter 0) (color 0 0 0 0)
(uuid 965aea7e-9af0-4783-8248-bcb492c7966b)
)
(junction (at 99.06 48.26) (diameter 0) (color 0 0 0 0)
(uuid b6a33982-e1df-447a-b8fd-4c4713f5dc2e)
)
(junction (at 175.26 110.49) (diameter 0) (color 0 0 0 0)
(uuid b9cb2fa6-e0f3-4317-b327-5bcce547627b)
)
(junction (at 110.49 50.8) (diameter 0) (color 0 0 0 0)
(uuid c0e67bdc-010e-4be0-9eba-90727696b255)
)
(junction (at 152.4 48.26) (diameter 0) (color 0 0 0 0)
(uuid e6249dcc-8bcc-4b63-ac00-b73e7d710e61)
)
(junction (at 107.95 106.68) (diameter 0) (color 0 0 0 0)
(uuid f2fe6f1a-f529-4735-9d48-980d7b032f06)
)
(junction (at 175.26 101.6) (diameter 0) (color 0 0 0 0)
(uuid f7f8430f-d53b-4d3a-b077-c3b07be82fa7)
)
(junction (at 162.56 50.8) (diameter 0) (color 0 0 0 0)
(uuid f9b17a4b-46f6-4bbb-a41c-cc5cdb8de186)
)
(wire (pts (xy 90.17 48.26) (xy 99.06 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0030fd2e-e2bb-4732-a0a3-3b90305ba1a8)
)
(wire (pts (xy 133.35 119.38) (xy 115.57 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02f7894d-a7c9-42dc-ad9a-4ecd68304bff)
)
(wire (pts (xy 99.06 59.69) (xy 99.06 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04f2ddc9-9332-4418-a9a6-cbd643138355)
)
(wire (pts (xy 110.49 63.5) (xy 110.49 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05b86939-8f73-4357-9897-17e287d751a1)
)
(wire (pts (xy 189.23 106.68) (xy 185.42 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09765def-a629-4c08-9eb7-2eed044d1c92)
)
(wire (pts (xy 132.08 128.27) (xy 132.08 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09819e0b-96dd-4f95-ba3e-3ab369aa0cb9)
)
(wire (pts (xy 99.06 48.26) (xy 120.65 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a5a75ae-d88d-4dd9-8b9b-587008f571c6)
)
(wire (pts (xy 175.26 118.11) (xy 175.26 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f0e07dc-0df6-4f24-9b57-1e686a9f7a15)
)
(wire (pts (xy 182.88 101.6) (xy 185.42 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f384d1f-1d95-4d63-8eb4-8203c53a7820)
)
(wire (pts (xy 152.4 44.45) (xy 152.4 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1786204f-aa35-43de-a76c-2c0b2c1b480f)
)
(wire (pts (xy 153.67 142.24) (xy 153.67 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18a2663a-6bd2-4930-adcf-d9aea6876073)
)
(wire (pts (xy 175.26 101.6) (xy 175.26 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18cdb91b-07db-4fb3-a2c5-871b2d3d1eae)
)
(wire (pts (xy 151.13 144.78) (xy 151.13 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29085f40-b22d-40a1-bbde-c48225984903)
)
(wire (pts (xy 220.98 127) (xy 217.17 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29d69546-374a-4d0c-8e72-27fde4923de8)
)
(wire (pts (xy 189.23 107.95) (xy 189.23 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3048a044-672d-42c3-af56-fddb21d2b663)
)
(wire (pts (xy 95.25 109.22) (xy 95.25 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31139547-e6f8-46a6-a09d-d4eae78a502e)
)
(wire (pts (xy 148.59 139.7) (xy 148.59 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31fbf7c1-3f69-42a8-b394-516cbbea74a1)
)
(wire (pts (xy 185.42 92.71) (xy 182.88 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38306be0-3c4b-40a0-b289-2a415aa900b6)
)
(wire (pts (xy 119.38 135.89) (xy 119.38 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3db7f6f9-b559-421a-ac88-e7cd98e20032)
)
(wire (pts (xy 152.4 62.23) (xy 152.4 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4110fcf5-f989-4521-a50a-9673f9c0bddf)
)
(wire (pts (xy 152.4 35.56) (xy 152.4 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 436ddff3-eeb0-4db4-ad63-094c9bb5acbf)
)
(wire (pts (xy 168.91 124.46) (xy 171.45 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45781606-9c9c-4e60-9043-bdc293cd5fe1)
)
(wire (pts (xy 177.8 101.6) (xy 175.26 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 459232bf-b0c2-4a5f-b9ff-293d17e8a632)
)
(wire (pts (xy 185.42 101.6) (xy 185.42 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4652b59b-eb48-4b62-b9cb-e70465934afc)
)
(wire (pts (xy 102.87 106.68) (xy 107.95 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b690c70-6f45-44a3-9ebb-d9ca5eff52a0)
)
(wire (pts (xy 162.56 50.8) (xy 175.26 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bdfdeb2-ef84-4c50-adf2-a18a8f0f587f)
)
(wire (pts (xy 195.58 129.54) (xy 195.58 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52aed146-d2a5-4842-955e-0cfff3152eb6)
)
(wire (pts (xy 152.4 48.26) (xy 158.75 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54439bda-338d-4476-8bc8-329474ed306b)
)
(wire (pts (xy 119.38 106.68) (xy 115.57 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5738748d-5577-4ad9-8125-33583d7e60ed)
)
(wire (pts (xy 95.25 106.68) (xy 97.79 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58742057-1cdf-4c2f-b341-8758d8c15610)
)
(wire (pts (xy 171.45 124.46) (xy 171.45 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 587d1579-80ba-48eb-affe-ed6ed19b5e70)
)
(wire (pts (xy 107.95 106.68) (xy 107.95 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a2e085a-3966-4723-876b-cad054a9470b)
)
(wire (pts (xy 152.4 48.26) (xy 148.59 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b229994-5754-483e-8c1a-5b865dd8d6a3)
)
(wire (pts (xy 162.56 63.5) (xy 162.56 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5dae7a58-2536-4f77-8d70-3be76267cf37)
)
(wire (pts (xy 129.54 106.68) (xy 129.54 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 60485100-4d3d-41ef-9a20-3d024da8a89c)
)
(wire (pts (xy 110.49 50.8) (xy 120.65 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7634549c-9bf1-4822-a3d3-95844bb4cf01)
)
(wire (pts (xy 115.57 119.38) (xy 115.57 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 78595f2f-43b7-41ec-a12f-77c202d275e2)
)
(wire (pts (xy 171.45 127) (xy 175.26 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79250684-7dc1-459d-b120-5bc50fe5889f)
)
(wire (pts (xy 177.8 92.71) (xy 175.26 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ba4a405-0003-4d82-8fd4-7151ed607a29)
)
(wire (pts (xy 148.59 50.8) (xy 162.56 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7dbf4cd8-199e-461d-9104-9872e1547214)
)
(wire (pts (xy 175.26 125.73) (xy 175.26 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 85caeb6d-855a-4a79-8fa6-6f4e0357e548)
)
(wire (pts (xy 99.06 48.26) (xy 99.06 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88c3ef48-2547-4e00-af46-cdc2779811ac)
)
(wire (pts (xy 175.26 120.65) (xy 175.26 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a1145c4-8122-4173-ba53-8548812ffd48)
)
(wire (pts (xy 74.93 128.27) (xy 119.38 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b86bdb2-2e3e-4b72-8986-1f0fb40b79fa)
)
(wire (pts (xy 177.8 119.38) (xy 175.26 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d716d49-f58b-48a1-8c6c-5a74d21a6bd7)
)
(wire (pts (xy 171.45 129.54) (xy 168.91 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f2acf93-a2eb-45b6-9891-662c5d30ed50)
)
(wire (pts (xy 195.58 134.62) (xy 195.58 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91054c72-5197-441d-a2f1-81d6c0ebff75)
)
(wire (pts (xy 204.47 127) (xy 212.09 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9196d10c-f827-4627-b961-26db40576f38)
)
(wire (pts (xy 191.77 127) (xy 195.58 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9266f738-cccb-44f4-b581-68dbd59a9754)
)
(wire (pts (xy 175.26 101.6) (xy 175.26 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 931e47b1-a801-473f-b536-92a50ec0fe2f)
)
(wire (pts (xy 171.45 127) (xy 171.45 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93997c34-9209-414c-919c-9eceb01cbee4)
)
(wire (pts (xy 115.57 93.98) (xy 115.57 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 972e6211-95ed-4bf3-927a-e19c9d954cad)
)
(wire (pts (xy 90.17 50.8) (xy 110.49 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9dcee6d2-e36d-41b7-a5fa-187c6587b8ca)
)
(wire (pts (xy 185.42 106.68) (xy 185.42 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e8a19f8-48da-4888-9e87-9c98706e8a25)
)
(wire (pts (xy 120.65 53.34) (xy 120.65 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a724eb2d-12b8-48d2-b5cc-e325c21e3f6e)
)
(wire (pts (xy 119.38 128.27) (xy 124.46 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa743353-a087-446a-8fd1-f10070992ab5)
)
(wire (pts (xy 107.95 114.3) (xy 107.95 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac067454-5451-472e-8304-8afb818402b2)
)
(wire (pts (xy 107.95 99.06) (xy 107.95 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad6a653a-05c8-4e89-bd1c-41d8fd46652d)
)
(wire (pts (xy 115.57 99.06) (xy 115.57 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid adf9e36b-9fbf-4ba9-b670-135f1ca285f6)
)
(wire (pts (xy 185.42 110.49) (xy 185.42 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b02bbf90-512a-45af-8bc2-2f3283bc5480)
)
(wire (pts (xy 107.95 93.98) (xy 107.95 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b46d8236-facb-49f8-a5e4-4c15a8bf94df)
)
(wire (pts (xy 182.88 119.38) (xy 185.42 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b662db98-017b-44fa-983d-89901a682c0a)
)
(wire (pts (xy 132.08 128.27) (xy 132.08 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be0147c8-6f21-456b-a5d8-05c68ecf2c58)
)
(wire (pts (xy 124.46 106.68) (xy 129.54 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bfbb7675-54d8-45b3-868a-c0ea624ef85d)
)
(wire (pts (xy 110.49 50.8) (xy 110.49 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c260afd3-90b3-44af-b0ce-87c63d1e62d1)
)
(wire (pts (xy 119.38 130.81) (xy 119.38 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca546385-b8ba-440c-b896-f6f0c266731f)
)
(wire (pts (xy 132.08 127) (xy 133.35 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid caa45346-d7b7-4255-86e0-d22c62597ccd)
)
(wire (pts (xy 148.59 142.24) (xy 151.13 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd36af6f-4840-4af0-a86f-44ee71027cbf)
)
(wire (pts (xy 177.8 110.49) (xy 175.26 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d075e7f8-daaa-4c08-ad56-59252de11163)
)
(wire (pts (xy 166.37 48.26) (xy 167.64 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d09bdc3a-7b85-42ab-95c2-3993d4692085)
)
(wire (pts (xy 175.26 92.71) (xy 175.26 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d126e1d7-e594-4903-9dc5-902cbb995e80)
)
(wire (pts (xy 107.95 121.92) (xy 133.35 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d2e4568c-b6d5-42a7-8574-afe4eac026f6)
)
(wire (pts (xy 151.13 142.24) (xy 153.67 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e38fd4c6-e091-4758-8458-762b9aadc2f8)
)
(wire (pts (xy 152.4 53.34) (xy 148.59 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e6c45a9a-e81d-472b-9fcd-823828fc0391)
)
(wire (pts (xy 175.26 127) (xy 186.69 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eca7ecef-09d2-4966-8df9-d1bc09914b84)
)
(wire (pts (xy 182.88 110.49) (xy 185.42 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ed8c45a0-9b7c-4550-ad08-202676e7eb13)
)
(wire (pts (xy 132.08 129.54) (xy 133.35 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6b9cd20-953d-4709-b8d3-ca3e37a8c1d4)
)
(wire (pts (xy 168.91 127) (xy 171.45 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f787d120-b415-4646-b4c5-22c4847f13cf)
)
(wire (pts (xy 153.67 142.24) (xy 158.75 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f788bfed-2a44-44bf-88b4-fd46336ad0f3)
)
(wire (pts (xy 129.54 128.27) (xy 132.08 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8a74656-a5ac-4c88-bde8-4ffb56c2b6d8)
)
(wire (pts (xy 152.4 57.15) (xy 152.4 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fbc8e722-8cde-4e9d-bdb1-8d0053a753a6)
)
(wire (pts (xy 162.56 57.15) (xy 162.56 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fbeb3114-917b-421c-abc4-8acb685001e6)
)
(wire (pts (xy 185.42 119.38) (xy 185.42 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fceb983d-4f1c-4597-8e53-025faa3ee61a)
)
(wire (pts (xy 195.58 127) (xy 199.39 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ff549f43-0c66-4f02-acc0-0a9a655030f4)
)
(text "Current limit: 2.65A\nILIM = 1.18 * R^(-1.072)" (at 143.51 73.66 0)
(effects (font (size 1.27 1.27)) (justify left bottom))