-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrx_gain_dac.kicad_sch
2068 lines (2015 loc) · 74.9 KB
/
rx_gain_dac.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 20230121) (generator eeschema)
(uuid ef028001-4cff-45ef-9405-4f1aad0d2b25)
(paper "A4")
(title_block
(title "${TITLE}")
(date "${DATE}")
(rev "${VERSION}")
(company "${COPYRIGHT}")
(comment 1 "${LICENSE}")
)
(lib_symbols
(symbol "Amplifier_Operational:LMV358" (pin_names (offset 0.127)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LMV358" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/lmv324.pdf" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "single opamp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Dual Low-Voltage Rail-to-Rail Output Operational Amplifiers, SOIC-8/SSOP-8" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* TO*99* OnSemi*Micro8* TSSOP*3x3mm*P0.65mm* TSSOP*4.4x3mm*P0.65mm* MSOP*3x3mm*P0.65mm* SSOP*3.9x4.9mm*P0.635mm* LFCSP*2x2mm*P0.5mm* *SIP* SOIC*5.3x6.2mm*P1.27mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LMV358_1_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "LMV358_2_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "LMV358_3_1"
(pin power_in line (at -2.54 -7.62 90) (length 3.81)
(name "V-" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 7.62 270) (length 3.81)
(name "V+" (effects (font (size 1.27 1.27))))
(number "8" (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" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (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))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(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" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (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))
(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 "GND_2" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND_2" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (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" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_2_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))
(fill (type none))
)
)
(symbol "GND_2_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:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (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" (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))
(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 "support_hardware:3V3RX" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "3V3RX" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"3V3RX\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "3V3RX_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "3V3RX_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "3V3RX" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 104.14 95.25) (diameter 0) (color 0 0 0 0)
(uuid 2632e9e9-7016-4cdb-90b9-3eadde492c7b)
)
(junction (at 91.44 95.25) (diameter 0) (color 0 0 0 0)
(uuid 288f1902-6244-448d-aec0-47afbfd4002c)
)
(junction (at 116.84 95.25) (diameter 0) (color 0 0 0 0)
(uuid 2ca27e53-d278-49a7-90c0-c894757371a0)
)
(junction (at 167.64 105.41) (diameter 0) (color 0 0 0 0)
(uuid 47c611ed-2542-4558-850b-a01bd929d8d8)
)
(junction (at 217.17 87.63) (diameter 0) (color 0 0 0 0)
(uuid 5b4c6526-774b-4ef9-8da5-59f0bae388dc)
)
(junction (at 217.17 100.33) (diameter 0) (color 0 0 0 0)
(uuid 6d9aac0b-2f26-4cbf-867f-3a7dede9a8c9)
)
(junction (at 129.54 95.25) (diameter 0) (color 0 0 0 0)
(uuid 73894d1a-8f5c-40a3-a8e7-8a98a5ce5782)
)
(junction (at 185.42 97.79) (diameter 0) (color 0 0 0 0)
(uuid 775bb3ac-9884-41b3-a841-5d873704139b)
)
(junction (at 167.64 114.3) (diameter 0) (color 0 0 0 0)
(uuid 7c616e02-df4b-4a8f-9938-e8c121d391f3)
)
(junction (at 160.02 95.25) (diameter 0) (color 0 0 0 0)
(uuid 805b6580-0f17-460f-b6ee-7da85013a1c3)
)
(junction (at 199.39 87.63) (diameter 0) (color 0 0 0 0)
(uuid 892199e2-a003-4fae-8f14-8b0494d9a9a8)
)
(junction (at 199.39 97.79) (diameter 0) (color 0 0 0 0)
(uuid 8e874a5f-f7da-43b4-a519-196538596b23)
)
(junction (at 194.31 116.84) (diameter 0) (color 0 0 0 0)
(uuid 9248b59b-8175-41a1-a6bc-e102d6f96171)
)
(junction (at 78.74 95.25) (diameter 0) (color 0 0 0 0)
(uuid a995fef5-56ca-4b0b-8f30-d46f24135d17)
)
(junction (at 185.42 105.41) (diameter 0) (color 0 0 0 0)
(uuid dd6943c4-fbc4-47f9-b8fb-d76ee85067bf)
)
(junction (at 199.39 116.84) (diameter 0) (color 0 0 0 0)
(uuid eaa5d000-adef-4f43-b111-96ca8230e97a)
)
(junction (at 142.24 95.25) (diameter 0) (color 0 0 0 0)
(uuid eade4000-010a-49d5-8051-46d5b15ec049)
)
(bus_entry (at 58.42 73.66) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 301d7564-2d40-4844-944b-fb1f8b946177)
)
(bus_entry (at 58.42 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 3f8ffee5-7b5e-407d-917b-2f32f98fe312)
)
(bus_entry (at 58.42 68.58) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 49b7abcb-8b23-499a-807a-d68b86c14133)
)
(bus_entry (at 58.42 76.2) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 52290479-a7d6-4ba7-9ce3-0d5c1b7be0cb)
)
(bus_entry (at 58.42 66.04) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid b1f25c1c-72e0-4904-8180-b43ab023fd07)
)
(bus_entry (at 58.42 63.5) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid d76e6329-9dd3-4624-83be-134b11f075b4)
)
(wire (pts (xy 194.31 125.73) (xy 194.31 127))
(stroke (width 0) (type default))
(uuid 02c4154a-ca2a-424f-867b-b5e7346f5b9b)
)
(wire (pts (xy 139.7 95.25) (xy 142.24 95.25))
(stroke (width 0) (type default))
(uuid 0600fbb0-6867-4d5c-bb6d-ac88981c6320)
)
(wire (pts (xy 168.91 100.33) (xy 167.64 100.33))
(stroke (width 0) (type default))
(uuid 0655fed5-9dc2-4a3b-bb44-e7b8be02a629)
)
(wire (pts (xy 60.96 71.12) (xy 116.84 71.12))
(stroke (width 0) (type default))
(uuid 0852853f-f220-44f4-9f77-6ea0f0716abb)
)
(wire (pts (xy 104.14 92.71) (xy 104.14 95.25))
(stroke (width 0) (type default))
(uuid 08f7d795-e488-4d3d-924c-f1c3fb8b2af9)
)
(wire (pts (xy 101.6 95.25) (xy 104.14 95.25))
(stroke (width 0) (type default))
(uuid 0b8f58b0-704f-4797-90cb-0a911fe4f98e)
)
(wire (pts (xy 60.96 78.74) (xy 78.74 78.74))
(stroke (width 0) (type default))
(uuid 0d151ad8-57e3-442e-a52d-be193ebfff85)
)
(wire (pts (xy 217.17 100.33) (xy 218.44 100.33))
(stroke (width 0) (type default))
(uuid 0eb9839a-5d5a-455e-a665-a6c9744334af)
)
(bus (pts (xy 58.42 73.66) (xy 58.42 76.2))
(stroke (width 0) (type default))
(uuid 10e5af7e-6d3a-43a0-b66d-543566968f2d)
)
(wire (pts (xy 199.39 87.63) (xy 199.39 97.79))
(stroke (width 0) (type default))
(uuid 12e48d84-3a45-4374-9b7d-0e587b9afce9)
)
(wire (pts (xy 142.24 92.71) (xy 142.24 95.25))
(stroke (width 0) (type default))
(uuid 1478b15a-4ac1-4ea3-b235-ec99d839b3d8)
)
(wire (pts (xy 243.84 132.08) (xy 243.84 133.35))
(stroke (width 0) (type default))
(uuid 15fb1c0d-425e-4a05-9ca6-78febf574064)
)
(wire (pts (xy 91.44 95.25) (xy 93.98 95.25))
(stroke (width 0) (type default))
(uuid 1be9e3ce-7e21-4d60-9195-c1121d683227)
)
(wire (pts (xy 116.84 71.12) (xy 116.84 85.09))
(stroke (width 0) (type default))
(uuid 21c63aa3-dc64-4044-88be-8c95c21b4207)
)
(wire (pts (xy 78.74 105.41) (xy 78.74 106.68))
(stroke (width 0) (type default))
(uuid 24155f94-30c0-4d93-aed1-cf6149c70cb4)
)
(wire (pts (xy 194.31 115.57) (xy 194.31 116.84))
(stroke (width 0) (type default))
(uuid 257fbfa5-6b5c-4273-8899-c01f8196a4ae)
)
(wire (pts (xy 114.3 95.25) (xy 116.84 95.25))
(stroke (width 0) (type default))
(uuid 292c299a-09c7-4b5d-b4ac-549ac0270869)
)
(wire (pts (xy 217.17 78.74) (xy 212.09 78.74))
(stroke (width 0) (type default))
(uuid 2bf485c4-b85e-4d97-92be-f3b4ef0ea6fc)
)
(wire (pts (xy 160.02 95.25) (xy 160.02 97.79))
(stroke (width 0) (type default))
(uuid 2f7a568f-b65b-49e3-be4c-268105d7c8c9)
)
(wire (pts (xy 185.42 105.41) (xy 185.42 114.3))
(stroke (width 0) (type default))
(uuid 32c4fb22-78fa-46e8-ade8-bf3d392a2faf)
)
(wire (pts (xy 60.96 68.58) (xy 129.54 68.58))
(stroke (width 0) (type default))
(uuid 351b5435-f2ba-421f-abcf-cfe869affa64)
)
(wire (pts (xy 167.64 114.3) (xy 167.64 115.57))
(stroke (width 0) (type default))
(uuid 3ae734f9-6cbc-40dd-a320-6ae8e73180fb)
)
(wire (pts (xy 199.39 97.79) (xy 200.66 97.79))
(stroke (width 0) (type default))
(uuid 3cb98a5b-314d-4831-bbd0-41bbda63bc95)
)
(wire (pts (xy 167.64 105.41) (xy 167.64 114.3))
(stroke (width 0) (type default))
(uuid 3f34882c-934f-4ce4-8de9-0609159a2bb4)
)
(wire (pts (xy 129.54 92.71) (xy 129.54 95.25))
(stroke (width 0) (type default))
(uuid 44f81d32-d6a8-43be-9c00-47ca1a8d68f0)
)
(wire (pts (xy 167.64 123.19) (xy 167.64 124.46))
(stroke (width 0) (type default))
(uuid 4a013387-e0bb-42a4-bc91-1f732fa3b8c3)
)
(wire (pts (xy 129.54 95.25) (xy 132.08 95.25))
(stroke (width 0) (type default))
(uuid 4e90328d-d9f2-4961-81db-614c0e9bb531)
)
(wire (pts (xy 228.6 140.97) (xy 228.6 142.24))
(stroke (width 0) (type default))
(uuid 4edd0c1e-f93c-4bb8-95c6-203429ead567)
)
(wire (pts (xy 142.24 66.04) (xy 142.24 85.09))
(stroke (width 0) (type default))
(uuid 525c1644-391e-4433-81e8-1d8022ad2026)
)
(wire (pts (xy 60.96 76.2) (xy 91.44 76.2))
(stroke (width 0) (type default))
(uuid 53b7e7fe-c311-4b04-b32a-0c2682cfca61)
)
(wire (pts (xy 199.39 87.63) (xy 199.39 78.74))
(stroke (width 0) (type default))
(uuid 6229f908-28e3-40ee-b6e9-3efec70a378c)
)
(wire (pts (xy 127 95.25) (xy 129.54 95.25))
(stroke (width 0) (type default))
(uuid 6384bd15-59a9-4db3-848f-ed00f94abca6)
)
(wire (pts (xy 167.64 114.3) (xy 172.72 114.3))
(stroke (width 0) (type default))
(uuid 638fdbe7-a655-4861-9ad0-2dbcfc833f58)
)
(wire (pts (xy 217.17 78.74) (xy 217.17 87.63))
(stroke (width 0) (type default))
(uuid 676a5586-73b1-4289-a13b-d330958feb81)
)
(wire (pts (xy 142.24 95.25) (xy 144.78 95.25))
(stroke (width 0) (type default))
(uuid 69eeaf2c-cfab-4fc2-b5b5-da9320f31178)
)
(bus (pts (xy 58.42 66.04) (xy 58.42 68.58))
(stroke (width 0) (type default))
(uuid 6c773bb0-9237-46a0-8fca-d052c229be2b)
)
(wire (pts (xy 180.34 105.41) (xy 185.42 105.41))
(stroke (width 0) (type default))
(uuid 6f61d49e-99a0-47d8-adc1-95fa7d739f26)
)
(wire (pts (xy 78.74 78.74) (xy 78.74 85.09))
(stroke (width 0) (type default))
(uuid 6fcd1a81-a3fc-45ec-92ff-2cddf6478f63)
)
(wire (pts (xy 160.02 105.41) (xy 160.02 106.68))
(stroke (width 0) (type default))
(uuid 7553f624-f59c-4a08-b871-2aaa5c063711)
)
(wire (pts (xy 91.44 92.71) (xy 91.44 95.25))
(stroke (width 0) (type default))
(uuid 788a3e14-76bc-4d20-ab31-a057b29542a4)
)
(bus (pts (xy 57.15 63.5) (xy 58.42 63.5))
(stroke (width 0) (type default))
(uuid 78ae4a7f-6b6c-4761-818a-56aa850bcf3c)
)
(wire (pts (xy 160.02 95.25) (xy 168.91 95.25))
(stroke (width 0) (type default))
(uuid 79c65084-8741-405b-8740-f0fe5b3b0c9a)
)
(bus (pts (xy 58.42 68.58) (xy 58.42 71.12))
(stroke (width 0) (type default))
(uuid 7d32a233-68ed-4bac-81f1-434d1305d2c3)
)
(wire (pts (xy 194.31 116.84) (xy 194.31 118.11))
(stroke (width 0) (type default))
(uuid 7e3504ed-3348-4898-93c0-6801a48c8e2d)
)
(wire (pts (xy 243.84 140.97) (xy 243.84 142.24))
(stroke (width 0) (type default))
(uuid 81aaeb41-9ccb-4382-926d-91bd42ba66dc)
)
(wire (pts (xy 88.9 95.25) (xy 91.44 95.25))
(stroke (width 0) (type default))
(uuid 879d4e68-947d-494d-83ab-32b66aacb618)
)
(wire (pts (xy 116.84 95.25) (xy 119.38 95.25))
(stroke (width 0) (type default))
(uuid 8da30843-8648-451c-8021-2d41ed88f3e7)
)
(wire (pts (xy 60.96 73.66) (xy 104.14 73.66))
(stroke (width 0) (type default))
(uuid 8f02e42f-e74a-4cbe-b6a1-b6d28cb07190)
)
(bus (pts (xy 58.42 63.5) (xy 58.42 66.04))
(stroke (width 0) (type default))
(uuid 93a0dfea-4bc7-48d1-a100-9225927a9d82)
)
(wire (pts (xy 199.39 116.84) (xy 199.39 118.11))
(stroke (width 0) (type default))
(uuid 9ee5e27b-620c-44fe-aae2-e08bd8057509)
)
(wire (pts (xy 78.74 92.71) (xy 78.74 95.25))
(stroke (width 0) (type default))
(uuid a165592e-8689-4ac1-b721-0358e2d84ee2)
)
(wire (pts (xy 199.39 102.87) (xy 199.39 116.84))
(stroke (width 0) (type default))
(uuid aab683ca-28d9-4781-869f-37b695dd158a)
)
(wire (pts (xy 194.31 97.79) (xy 199.39 97.79))
(stroke (width 0) (type default))
(uuid ad8c040f-1068-4561-a1eb-c129200e135e)
)
(wire (pts (xy 185.42 97.79) (xy 186.69 97.79))
(stroke (width 0) (type default))
(uuid af104039-7e2f-4e7a-a825-cfd03b3ba8ca)
)
(wire (pts (xy 215.9 100.33) (xy 217.17 100.33))
(stroke (width 0) (type default))
(uuid b1310ba5-1fa5-4d06-8244-5ca1c5fde3d5)
)
(wire (pts (xy 185.42 97.79) (xy 185.42 105.41))
(stroke (width 0) (type default))
(uuid bafb2100-040d-4e33-8754-40c096cd9e5c)
)
(wire (pts (xy 199.39 78.74) (xy 204.47 78.74))
(stroke (width 0) (type default))
(uuid c0a70be8-498a-4314-87dd-89689bd01891)
)
(wire (pts (xy 152.4 95.25) (xy 160.02 95.25))
(stroke (width 0) (type default))
(uuid c1af1741-9d1f-4caf-a136-a4a972fb63ef)
)
(bus (pts (xy 58.42 71.12) (xy 58.42 73.66))
(stroke (width 0) (type default))
(uuid c592beb0-292b-42ea-803f-6e0b58b5186d)
)
(wire (pts (xy 199.39 116.84) (xy 194.31 116.84))
(stroke (width 0) (type default))
(uuid c61713e1-799a-4cc2-a337-473598262fa3)
)
(wire (pts (xy 167.64 100.33) (xy 167.64 105.41))
(stroke (width 0) (type default))
(uuid c61bbff5-760d-4a7b-a241-4ea7f12a2ebd)
)
(wire (pts (xy 200.66 102.87) (xy 199.39 102.87))
(stroke (width 0) (type default))
(uuid c8ab1cd7-14b2-440f-85a2-92ad7f95bad4)
)
(wire (pts (xy 104.14 95.25) (xy 106.68 95.25))
(stroke (width 0) (type default))
(uuid c9493e09-f2d6-44ab-95f2-e32d2aa8888d)
)
(wire (pts (xy 167.64 105.41) (xy 172.72 105.41))
(stroke (width 0) (type default))
(uuid cbb72bc1-225f-4564-a7a9-1098a9b81896)
)
(wire (pts (xy 60.96 66.04) (xy 142.24 66.04))
(stroke (width 0) (type default))
(uuid cf80c166-9221-49f2-9e4e-cbc9d56b79c0)
)
(wire (pts (xy 204.47 87.63) (xy 199.39 87.63))
(stroke (width 0) (type default))
(uuid d2a79143-4641-4026-a378-3adafb4703d0)
)
(wire (pts (xy 199.39 125.73) (xy 199.39 127))
(stroke (width 0) (type default))
(uuid d2be9c6c-16f8-40b2-8925-251594c9d024)
)
(wire (pts (xy 116.84 92.71) (xy 116.84 95.25))
(stroke (width 0) (type default))
(uuid d3ade6fc-7eb0-4eee-a4a3-ed055fb28745)
)
(wire (pts (xy 217.17 100.33) (xy 217.17 87.63))
(stroke (width 0) (type default))
(uuid d6548dbd-d06d-4e80-9675-b5a1acfa2005)
)
(wire (pts (xy 129.54 68.58) (xy 129.54 85.09))
(stroke (width 0) (type default))
(uuid dd247888-a584-4d86-a879-0bc3cd1073ed)
)
(wire (pts (xy 180.34 114.3) (xy 185.42 114.3))
(stroke (width 0) (type default))
(uuid dd7ddd34-6a31-4e27-a4aa-1c22a0d516ed)
)
(wire (pts (xy 91.44 76.2) (xy 91.44 85.09))
(stroke (width 0) (type default))
(uuid de79a48d-9dfa-4880-9aa6-04203a4c210c)
)
(wire (pts (xy 194.31 106.68) (xy 194.31 107.95))
(stroke (width 0) (type default))
(uuid df402adc-90ff-4f80-a5e8-416763387bea)
)
(wire (pts (xy 81.28 95.25) (xy 78.74 95.25))
(stroke (width 0) (type default))
(uuid e3c3f1b6-7bb1-4948-a617-4fcbdd88c4ab)
)
(wire (pts (xy 184.15 97.79) (xy 185.42 97.79))
(stroke (width 0) (type default))
(uuid e6cf3ad4-1939-428c-8b8c-ee3fcf881066)
)
(wire (pts (xy 228.6 124.46) (xy 228.6 125.73))
(stroke (width 0) (type default))
(uuid ec430e82-bcfd-419f-abe4-ca37f82b1b28)
)
(wire (pts (xy 78.74 95.25) (xy 78.74 97.79))
(stroke (width 0) (type default))
(uuid ee00713b-e129-4933-9515-8f1dfa380921)
)
(wire (pts (xy 217.17 87.63) (xy 212.09 87.63))
(stroke (width 0) (type default))
(uuid f90c7786-1585-45f7-b1f3-f73145fbd9ef)
)
(wire (pts (xy 104.14 73.66) (xy 104.14 85.09))
(stroke (width 0) (type default))
(uuid febec980-67c2-4c24-96ca-f7f0897f8ac0)
)
(text "0.50-2.67 V" (at 219.71 96.52 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 41a17188-cddb-4ea8-bf89-54c55c974ab4)
)
(text "0-1.62 V" (at 154.94 92.71 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 78f85462-2e16-4c14-aa95-97a9416188a8)
)
(text "The extreme minimum and maximum values\nare not very useful. See the Input Power\nvs. Vgc1 plot in the MAX2120 data sheet.\nThe useful range is linear in dB,\napproximately 1.4 dB of gain per step\nfor about 50 steps."
(at 149.86 60.96 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 90b5da9b-3af6-482b-a826-1b56b2a655d3)
)
(text "Converts 6-bit digital value to analog\ngain control signal for MAX2120.\nMinimum gain is 0b000000 which is\nconverted to 2.67 V. Maximum gain is\n0b111111 which is converted to 0.5 V."
(at 62.23 55.88 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a9088321-aa4d-46f9-91d8-b18f8026c269)
)
(text "0-2.17 V" (at 180.34 86.36 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid aac55d84-ddda-4720-857c-96e7524ea542)
)
(label "RX_RCVR.GAIN2" (at 62.23 73.66 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0e1f4407-1911-497c-838f-4c6c2f69119f)
)
(label "RX_RCVR.GAIN4" (at 62.23 68.58 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1f112ed7-a82d-42f7-a45f-a29bcbb5ba6f)
)
(label "RX_RCVR.GAIN5" (at 62.23 66.04 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6156dd57-3ca0-492f-9cd6-00efeb8f393e)
)
(label "RX_RCVR.GAIN1" (at 62.23 76.2 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7c28b01b-8ef5-4bc4-8806-485606cd1125)
)
(label "RX_RCVR.GAIN3" (at 62.23 71.12 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b5c77d44-35d7-42fd-96f3-13896e866708)
)
(label "RX_RCVR.GAIN0" (at 62.23 78.74 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fc7ae8ee-4f11-4334-aecd-9a0c71747b7f)
)
(hierarchical_label "DAC_OUT" (shape output) (at 218.44 100.33 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bfb3e6c2-5d7d-44c1-b1e0-755f75073adb)
)
(hierarchical_label "RX_RCVR{MAX2120}" (shape input) (at 57.15 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fb4e2ac4-7afd-4a24-8059-55d2121c7c46)
)
(symbol (lib_id "Device:R") (at 78.74 101.6 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0951eebd-da77-4878-bab0-adba97ebfd96)
(property "Reference" "R47" (at 73.6569 101.6 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "37.4k±1%" (at 76.2 101.6 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 80.518 101.6 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 78.74 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "RES 37.4K OHM 1% 1/16W 0402" (at 78.74 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Yageo" (at 78.74 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Number" "RC0402FR-0737K4L" (at 78.74 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Substitution" "any equivalent" (at 78.74 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ce80f375-8d47-4233-8d77-afbaf38ce3f3))
(pin "2" (uuid 7c9035f4-b087-42da-aedc-5fb9f5439974))
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823/4ec621be-184d-4855-a96d-f6fa2a788a77/90da2209-0e18-4bd4-8ef6-3d6f9ed46ff8/7de50682-6b71-4a52-a232-adeadc6fa327"
(reference "R47") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 97.79 95.25 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 18dc8a96-e289-41a8-abd9-bd299b4bc42a)
(property "Reference" "R64" (at 97.79 97.7869 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "18.7k±1%" (at 97.79 100.33 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 97.79 93.472 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 97.79 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "RES SMD 18.7K OHM 1% 1/10W 0402" (at 97.79 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Panasonic" (at 97.79 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Number" "ERJ-2RKF1872X" (at 97.79 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Substitution" "any equivalent" (at 97.79 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6c11e8c6-c75e-423d-8152-95a4532d40cb))
(pin "2" (uuid a4d15a93-d57b-45bb-8360-9d9daa931cba))
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823/4ec621be-184d-4855-a96d-f6fa2a788a77/90da2209-0e18-4bd4-8ef6-3d6f9ed46ff8/7de50682-6b71-4a52-a232-adeadc6fa327"
(reference "R64") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 85.09 95.25 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 201e2516-4b6c-4174-80a8-2a1a156a5069)
(property "Reference" "R48" (at 85.09 97.7869 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "18.7k±1%" (at 85.09 100.33 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 85.09 93.472 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 85.09 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "RES SMD 18.7K OHM 1% 1/10W 0402" (at 85.09 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Panasonic" (at 85.09 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Number" "ERJ-2RKF1872X" (at 85.09 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Substitution" "any equivalent" (at 85.09 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f246b488-2d64-4dea-ba54-0873cdf8eed6))
(pin "2" (uuid 78e45025-34e9-4432-b4b1-dde6fe5005b3))
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823/4ec621be-184d-4855-a96d-f6fa2a788a77/90da2209-0e18-4bd4-8ef6-3d6f9ed46ff8/7de50682-6b71-4a52-a232-adeadc6fa327"
(reference "R48") (unit 1)
)
)
)
)
(symbol (lib_name "GND_2") (lib_id "power:GND") (at 199.39 127 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 418cd773-e42d-4a7a-ae59-5c5761d348ae)
(property "Reference" "#PWR0212" (at 199.39 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 199.39 132.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 199.39 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 199.39 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 01a2793b-74e2-4de4-9c96-6aa4ad57b524))
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823/4ec621be-184d-4855-a96d-f6fa2a788a77/90da2209-0e18-4bd4-8ef6-3d6f9ed46ff8/7de50682-6b71-4a52-a232-adeadc6fa327"
(reference "#PWR0212") (unit 1)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:LMV358") (at 231.14 133.35 0) (unit 3)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 42a17d3a-caa2-4558-a5eb-a5b63875c145)
(property "Reference" "U15" (at 229.87 132.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LMV358" (at 229.87 134.62 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:MSOP-8_3x3mm_P0.65mm" (at 231.14 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2210211730_HANSCHIP-semiconductor-LMV358IDGKRG_C5145253.pdf" (at 231.14 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "HANSCHIP" (at 231.14 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Number" "LMV358IDGKRG" (at 231.14 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "IC OPAMP GP 2 CIRCUIT 8VSSOP" (at 231.14 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Substitution" "TI LMV358AIDGKR" (at 231.14 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bb40579d-d7a1-4407-ade9-ec84f799a646))
(pin "2" (uuid fe01a868-f8b2-42ad-bb0f-d96608fe83e7))
(pin "3" (uuid 45c7d2f8-6f95-485c-9e46-6efd6d2fa968))
(pin "5" (uuid cfbbc084-26b2-456d-874e-313e00de16e0))
(pin "6" (uuid a48b4566-a047-4230-b776-b0a7d2dc78a8))
(pin "7" (uuid 9c935788-be02-40ae-9b0f-84a799e0cb92))
(pin "4" (uuid 59b1cc38-01f4-41ee-8fee-47875d2aa932))
(pin "8" (uuid e700e956-a878-4078-9b0a-649a95fe6536))
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823/4ec621be-184d-4855-a96d-f6fa2a788a77/90da2209-0e18-4bd4-8ef6-3d6f9ed46ff8/7de50682-6b71-4a52-a232-adeadc6fa327"
(reference "U15") (unit 3)
)
)
)
)
(symbol (lib_id "Device:C") (at 243.84 137.16 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 458338c4-1d12-4119-a598-29f85262c8f4)
(property "Reference" "C104" (at 246.761 135.9916 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (at 246.761 138.303 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 244.8052 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 243.84 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Number" "CL05A105KP5NNNC" (at 243.84 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Substitution" "any equivalent" (at 243.84 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "CAP CER 1UF 10V X5R 0402" (at 243.84 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Samsung" (at 243.84 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e948e523-0d16-4010-b770-69da49db06ff))
(pin "2" (uuid 0e1f29f5-4f55-42ed-a9ee-3b933d24d7d1))
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823/4ec621be-184d-4855-a96d-f6fa2a788a77/90da2209-0e18-4bd4-8ef6-3d6f9ed46ff8/7de50682-6b71-4a52-a232-adeadc6fa327"
(reference "C104") (unit 1)
)
)
)
)