-
Notifications
You must be signed in to change notification settings - Fork 7
/
MIPI_Conn.kicad_sch
1313 lines (1290 loc) · 50.6 KB
/
MIPI_Conn.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 a00f74d0-60f4-44bd-a0dc-453feb9acd53)
(paper "A4")
(title_block
(title "Top Sheet")
(date "2023-12-21")
(rev "1.00")
(company "ApotheoTech LLC")
(comment 1 "SCH: APT-KRIA-FMC")
(comment 2 "Author: Chance Reimer")
)
(lib_symbols
(symbol "ApotheoTech:FH12-22S-0.5SH_55_" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 21.59 7.62 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "FH12-22S-0.5SH_55_" (at 21.59 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "ApotheoTech_CXP_Lib:FH1222S05SH55" (at 21.59 2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://www.hirose.com/product/download/?distributor=digikey&type=2d&lang=en&num=FH12-22S-0.5SH(55)" (at 21.59 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "Hirose FH12 Series 0.5mm Pitch 22 Way 1 Row Right Angle SMT Female FPC Connector, Gold Plated Contacts" (at 21.59 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "2.2" (at 21.59 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "798-FH12-22S-0.5SH55" (at 21.59 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Hirose-Connector/FH12-22S-05SH55?qs=Ux3WWAnHpjDjN9JNAugKTA%3D%3D" (at 21.59 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "Hirose" (at 21.59 -12.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "FH12-22S-0.5SH(55)" (at 21.59 -15.24 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(symbol "FH12-22S-0.5SH_55__0_0"
(pin passive line (at 25.4 0 180) (length 5.08)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -22.86 180) (length 5.08)
(name "10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -25.4 180) (length 5.08)
(name "11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -27.94 180) (length 5.08)
(name "12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -30.48 180) (length 5.08)
(name "13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -33.02 180) (length 5.08)
(name "14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -35.56 180) (length 5.08)
(name "15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -38.1 180) (length 5.08)
(name "16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -40.64 180) (length 5.08)
(name "17" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -43.18 180) (length 5.08)
(name "18" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -45.72 180) (length 5.08)
(name "19" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -2.54 180) (length 5.08)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -48.26 180) (length 5.08)
(name "20" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -50.8 180) (length 5.08)
(name "21" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -53.34 180) (length 5.08)
(name "22" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -5.08 180) (length 5.08)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -7.62 180) (length 5.08)
(name "4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -10.16 180) (length 5.08)
(name "5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -12.7 180) (length 5.08)
(name "6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -15.24 180) (length 5.08)
(name "7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -17.78 180) (length 5.08)
(name "8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -20.32 180) (length 5.08)
(name "9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 0 0) (length 5.08)
(name "MP1" (effects (font (size 1.27 1.27))))
(number "MP1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 5.08)
(name "MP2" (effects (font (size 1.27 1.27))))
(number "MP2" (effects (font (size 1.27 1.27))))
)
)
(symbol "FH12-22S-0.5SH_55__0_1"
(polyline
(pts
(xy 5.08 2.54)
(xy 20.32 2.54)
(xy 20.32 -55.88)
(xy 5.08 -55.88)
(xy 5.08 2.54)
)
(stroke (width 0.1524) (type solid))
(fill (type none))
)
)
)
(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 "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))))
)
)
)
)
(junction (at 167.64 68.58) (diameter 0) (color 0 0 0 0)
(uuid 3a6d3417-e6d4-4c63-9182-00fdbb526af8)
)
(junction (at 66.04 83.82) (diameter 0) (color 0 0 0 0)
(uuid 49d11e3f-dff8-4b6f-b7ba-c4bc98d56cbe)
)
(junction (at 57.15 106.68) (diameter 0) (color 0 0 0 0)
(uuid 61100a26-e12c-421a-8f56-6c52914e1585)
)
(junction (at 66.04 60.96) (diameter 0) (color 0 0 0 0)
(uuid 61e59a5e-1082-433b-b4c9-873de74ca4d3)
)
(junction (at 167.64 99.06) (diameter 0) (color 0 0 0 0)
(uuid 73d78321-cadc-4f4b-a944-21bb74f4dffa)
)
(junction (at 167.64 91.44) (diameter 0) (color 0 0 0 0)
(uuid 755e255c-f9a2-41e0-8600-50f69df7c5c0)
)
(junction (at 66.04 91.44) (diameter 0) (color 0 0 0 0)
(uuid 780becb4-a98d-42c8-a6fb-cfd8fbcd0564)
)
(junction (at 66.04 76.2) (diameter 0) (color 0 0 0 0)
(uuid 82e0bdcd-2035-4dd8-9c62-21f5344546d4)
)
(junction (at 167.64 83.82) (diameter 0) (color 0 0 0 0)
(uuid 831d49a8-9d77-466b-b4a3-25dff46584ea)
)
(junction (at 158.75 106.68) (diameter 0) (color 0 0 0 0)
(uuid ad2b044e-1df8-4fae-a194-4ab7520213c8)
)
(junction (at 167.64 76.2) (diameter 0) (color 0 0 0 0)
(uuid b88a6e42-cd4f-4494-91d6-41f4fc4fe0d4)
)
(junction (at 167.64 60.96) (diameter 0) (color 0 0 0 0)
(uuid c3d55fdb-3de8-45b4-8943-5b35d3bacd4e)
)
(junction (at 138.43 93.98) (diameter 0) (color 0 0 0 0)
(uuid c87b54f5-f0f1-47ca-806c-b8d5da558866)
)
(junction (at 66.04 99.06) (diameter 0) (color 0 0 0 0)
(uuid ca5d0314-e035-4589-8d39-7cf3913db6c1)
)
(junction (at 66.04 68.58) (diameter 0) (color 0 0 0 0)
(uuid e7c965d3-ab78-4f9a-99cd-b1339f4f194b)
)
(junction (at 36.83 93.98) (diameter 0) (color 0 0 0 0)
(uuid fd7d077b-b6ab-47eb-8606-20e692809c11)
)
(no_connect (at 195.58 55.88) (uuid 0d965f84-210d-4fae-a6d6-ac0509516209))
(no_connect (at 93.98 53.34) (uuid 1791dfe0-34eb-4878-852b-0f89c2e7ac1d))
(no_connect (at 93.98 55.88) (uuid 4a7913d3-c363-4982-9d8a-6b5a43b286a2))
(no_connect (at 195.58 53.34) (uuid ed029bbf-ad12-4d36-892e-9248ce6cb3f3))
(wire (pts (xy 158.75 96.52) (xy 157.48 96.52))
(stroke (width 0) (type default))
(uuid 01fb8216-8ff2-496b-8ee0-c47e54436396)
)
(wire (pts (xy 158.75 107.95) (xy 158.75 106.68))
(stroke (width 0) (type default))
(uuid 03356010-ec93-439d-8b7e-d59700562f54)
)
(wire (pts (xy 68.58 58.42) (xy 55.88 58.42))
(stroke (width 0) (type default))
(uuid 042d50c9-4ba4-4a15-ac1b-ba3cebbd4288)
)
(wire (pts (xy 68.58 106.68) (xy 57.15 106.68))
(stroke (width 0) (type default))
(uuid 0517a3a3-a79f-4279-817c-23c9f375a57e)
)
(wire (pts (xy 167.64 76.2) (xy 167.64 83.82))
(stroke (width 0) (type default))
(uuid 067ba38a-3098-4048-901b-ef59c967b7c6)
)
(wire (pts (xy 170.18 55.88) (xy 157.48 55.88))
(stroke (width 0) (type default))
(uuid 0ca48ce5-c338-45b2-a8b9-3fbd8d32ed41)
)
(wire (pts (xy 137.16 93.98) (xy 138.43 93.98))
(stroke (width 0) (type default))
(uuid 0cc836ee-01c1-4c6f-8ab5-09957e4e807b)
)
(wire (pts (xy 66.04 60.96) (xy 68.58 60.96))
(stroke (width 0) (type default))
(uuid 0d65ef87-7ec6-4ff1-b5eb-7519b2d37f79)
)
(wire (pts (xy 66.04 99.06) (xy 66.04 114.3))
(stroke (width 0) (type default))
(uuid 12fc325d-52bd-41d9-a37c-a48409686bb3)
)
(wire (pts (xy 66.04 68.58) (xy 68.58 68.58))
(stroke (width 0) (type default))
(uuid 1557c434-4414-4a3a-84c5-d69c2897369b)
)
(wire (pts (xy 68.58 78.74) (xy 55.88 78.74))
(stroke (width 0) (type default))
(uuid 18998c54-d3dd-4eb3-bd35-22a84fe8748f)
)
(wire (pts (xy 167.64 53.34) (xy 167.64 60.96))
(stroke (width 0) (type default))
(uuid 1b363534-e9c5-4d8b-bc20-7f503af79cbc)
)
(wire (pts (xy 57.15 115.57) (xy 57.15 116.84))
(stroke (width 0) (type default))
(uuid 1d4f109a-e012-44e6-be79-d96dfe81eb89)
)
(wire (pts (xy 170.18 73.66) (xy 157.48 73.66))
(stroke (width 0) (type default))
(uuid 1e62fbbc-15a2-4a41-b49a-7ed77315363f)
)
(wire (pts (xy 170.18 53.34) (xy 167.64 53.34))
(stroke (width 0) (type default))
(uuid 1f5e58c7-dfd2-4461-8b49-b081ece3b8bc)
)
(wire (pts (xy 66.04 83.82) (xy 66.04 91.44))
(stroke (width 0) (type default))
(uuid 25920996-92f1-48aa-8c5c-07afb6fb4a23)
)
(wire (pts (xy 170.18 101.6) (xy 157.48 101.6))
(stroke (width 0) (type default))
(uuid 2f078531-1b34-4815-9bba-758577a6dd7a)
)
(wire (pts (xy 167.64 68.58) (xy 167.64 76.2))
(stroke (width 0) (type default))
(uuid 2fdf6531-e214-4844-85e8-84570d8ecc38)
)
(wire (pts (xy 66.04 68.58) (xy 66.04 76.2))
(stroke (width 0) (type default))
(uuid 305ea1fa-8009-47b4-aac7-de1ef17ac147)
)
(wire (pts (xy 170.18 88.9) (xy 157.48 88.9))
(stroke (width 0) (type default))
(uuid 30c42b3e-a59f-4f47-8131-3167ad2895c3)
)
(wire (pts (xy 170.18 78.74) (xy 157.48 78.74))
(stroke (width 0) (type default))
(uuid 31f635e9-1dc3-4ace-ba5e-8a4cde159475)
)
(wire (pts (xy 167.64 60.96) (xy 167.64 68.58))
(stroke (width 0) (type default))
(uuid 3308cf75-ea6c-417c-8d26-94f14f8f1e1d)
)
(wire (pts (xy 66.04 76.2) (xy 66.04 83.82))
(stroke (width 0) (type default))
(uuid 3b5426f3-447a-4887-a000-c3434a3f785a)
)
(wire (pts (xy 170.18 58.42) (xy 157.48 58.42))
(stroke (width 0) (type default))
(uuid 3eeb0694-8ee1-4db4-bc95-07f3746996db)
)
(wire (pts (xy 35.56 93.98) (xy 36.83 93.98))
(stroke (width 0) (type default))
(uuid 3f388357-0ad6-411f-96a9-c56dd46a12e7)
)
(wire (pts (xy 68.58 63.5) (xy 55.88 63.5))
(stroke (width 0) (type default))
(uuid 4153b1d9-cb2d-4922-8753-cd1a9679d1af)
)
(wire (pts (xy 68.58 101.6) (xy 55.88 101.6))
(stroke (width 0) (type default))
(uuid 49a70842-2e75-476c-9fed-ec7ec360872a)
)
(wire (pts (xy 170.18 96.52) (xy 166.37 96.52))
(stroke (width 0) (type default))
(uuid 4ea64116-dcdf-4e7e-bf83-ae5ff915bb7e)
)
(wire (pts (xy 158.75 106.68) (xy 157.48 106.68))
(stroke (width 0) (type default))
(uuid 4f48accf-0f0f-49f8-b89a-ea497b524271)
)
(wire (pts (xy 66.04 91.44) (xy 68.58 91.44))
(stroke (width 0) (type default))
(uuid 52b5e229-5be8-4e7b-a6af-4a264eba4ed3)
)
(wire (pts (xy 170.18 104.14) (xy 157.48 104.14))
(stroke (width 0) (type default))
(uuid 5850fe31-34ee-4805-9076-2eba680dbf5a)
)
(wire (pts (xy 68.58 73.66) (xy 55.88 73.66))
(stroke (width 0) (type default))
(uuid 59542cca-cb31-46eb-a9e9-4c3287a58288)
)
(wire (pts (xy 68.58 86.36) (xy 55.88 86.36))
(stroke (width 0) (type default))
(uuid 59616cb2-c420-4888-9341-9876051e4770)
)
(wire (pts (xy 57.15 96.52) (xy 55.88 96.52))
(stroke (width 0) (type default))
(uuid 5a0c5969-2613-4121-8a8d-c9028335a2db)
)
(wire (pts (xy 167.64 60.96) (xy 170.18 60.96))
(stroke (width 0) (type default))
(uuid 5ab18c0f-77fe-4de9-a3b6-85de43cfa8e5)
)
(wire (pts (xy 167.64 91.44) (xy 170.18 91.44))
(stroke (width 0) (type default))
(uuid 5cef765d-118a-4297-bc0d-dcb1d58e490f)
)
(wire (pts (xy 68.58 81.28) (xy 55.88 81.28))
(stroke (width 0) (type default))
(uuid 61c6817e-7a18-4a4c-ac45-3279dae27ee0)
)
(wire (pts (xy 66.04 91.44) (xy 66.04 99.06))
(stroke (width 0) (type default))
(uuid 625cc6dc-b001-46b1-b8c6-2d937eb55512)
)
(wire (pts (xy 66.04 99.06) (xy 68.58 99.06))
(stroke (width 0) (type default))
(uuid 69b2335c-5907-474f-82e8-51a6b83769a4)
)
(wire (pts (xy 36.83 93.98) (xy 68.58 93.98))
(stroke (width 0) (type default))
(uuid 6eaaa662-1b7c-46ec-8625-27dd2adfd1ba)
)
(wire (pts (xy 170.18 81.28) (xy 157.48 81.28))
(stroke (width 0) (type default))
(uuid 7b7e6190-5c2d-42ac-8cfc-546006305942)
)
(wire (pts (xy 170.18 71.12) (xy 157.48 71.12))
(stroke (width 0) (type default))
(uuid 7b9631d7-89fd-4808-ae5e-23a4efb9c830)
)
(wire (pts (xy 167.64 76.2) (xy 170.18 76.2))
(stroke (width 0) (type default))
(uuid 7c67d506-295e-4307-b534-0010eb1f963b)
)
(wire (pts (xy 170.18 86.36) (xy 157.48 86.36))
(stroke (width 0) (type default))
(uuid 7d6f153f-a57e-497f-afd0-4aa3d3c435bb)
)
(wire (pts (xy 66.04 76.2) (xy 68.58 76.2))
(stroke (width 0) (type default))
(uuid 82582a43-f16c-463d-9849-b1c4f24cd652)
)
(wire (pts (xy 36.83 96.52) (xy 36.83 93.98))
(stroke (width 0) (type default))
(uuid 82fa6f2f-617f-4c4d-bc90-2ecc378dc1b1)
)
(wire (pts (xy 68.58 71.12) (xy 55.88 71.12))
(stroke (width 0) (type default))
(uuid 8b6bcb9d-7278-43a2-bc64-5930e8b17f2a)
)
(wire (pts (xy 57.15 106.68) (xy 55.88 106.68))
(stroke (width 0) (type default))
(uuid 8d7c79c9-4454-41d1-adc0-df044fb07173)
)
(wire (pts (xy 167.64 83.82) (xy 167.64 91.44))
(stroke (width 0) (type default))
(uuid 8f2ea213-b137-4249-ac3e-a4705df35853)
)
(wire (pts (xy 68.58 104.14) (xy 55.88 104.14))
(stroke (width 0) (type default))
(uuid 91193956-22bf-4a92-8222-20b1d6870b0f)
)
(wire (pts (xy 68.58 55.88) (xy 55.88 55.88))
(stroke (width 0) (type default))
(uuid 965049c9-6d57-4ee6-bd10-ed79ce96efb1)
)
(wire (pts (xy 68.58 66.04) (xy 55.88 66.04))
(stroke (width 0) (type default))
(uuid af548256-58b6-4405-b8d7-15ef33e4bd35)
)
(wire (pts (xy 68.58 53.34) (xy 66.04 53.34))
(stroke (width 0) (type default))
(uuid afd1afed-e0e7-49e4-9be5-1dc108719940)
)
(wire (pts (xy 68.58 96.52) (xy 64.77 96.52))
(stroke (width 0) (type default))
(uuid b9569742-d330-43ba-8755-fa1ff2632f94)
)
(wire (pts (xy 68.58 88.9) (xy 55.88 88.9))
(stroke (width 0) (type default))
(uuid c1207d8b-d762-4830-9b22-73b50bfa0bc0)
)
(wire (pts (xy 57.15 107.95) (xy 57.15 106.68))
(stroke (width 0) (type default))
(uuid ca046f08-0192-4440-9c46-b1f090d82724)
)
(wire (pts (xy 36.83 104.14) (xy 36.83 106.68))
(stroke (width 0) (type default))
(uuid cbd15918-37b8-4cc3-8f65-c5f4ebc3ed22)
)
(wire (pts (xy 66.04 60.96) (xy 66.04 68.58))
(stroke (width 0) (type default))
(uuid cdbc2f54-c56f-4452-8e06-7922f77efb89)
)
(wire (pts (xy 170.18 66.04) (xy 157.48 66.04))
(stroke (width 0) (type default))
(uuid d66f5184-5d2c-474d-8f79-d09b6c1667a8)
)
(wire (pts (xy 66.04 53.34) (xy 66.04 60.96))
(stroke (width 0) (type default))
(uuid d8d680f4-48e9-408a-8552-9c96c434357d)
)
(wire (pts (xy 167.64 91.44) (xy 167.64 99.06))
(stroke (width 0) (type default))
(uuid df52063e-7eff-424e-839a-3fa0759b1df7)
)
(wire (pts (xy 170.18 63.5) (xy 157.48 63.5))
(stroke (width 0) (type default))
(uuid e3edff33-abcc-4e2c-9eaf-95e4060daf38)
)
(wire (pts (xy 167.64 68.58) (xy 170.18 68.58))
(stroke (width 0) (type default))
(uuid e49df1ef-3035-41b8-a6e1-581f73c39c3d)
)
(wire (pts (xy 170.18 106.68) (xy 158.75 106.68))
(stroke (width 0) (type default))
(uuid e5305c6e-be69-48e0-8d63-38a9d5819721)
)
(wire (pts (xy 167.64 99.06) (xy 167.64 114.3))
(stroke (width 0) (type default))
(uuid e854ff0f-0c5f-4114-805d-2a81ee54b235)
)
(wire (pts (xy 167.64 99.06) (xy 170.18 99.06))
(stroke (width 0) (type default))
(uuid eb9f2f92-1377-42cb-bb21-0c1f6bd307b8)
)
(wire (pts (xy 66.04 83.82) (xy 68.58 83.82))
(stroke (width 0) (type default))
(uuid ebb62cfe-4b08-40c6-8173-bb1ef954d63c)
)
(wire (pts (xy 158.75 115.57) (xy 158.75 116.84))
(stroke (width 0) (type default))
(uuid ed9f70d2-aaec-472a-bcf8-bf0e63b2dfe2)
)
(wire (pts (xy 167.64 83.82) (xy 170.18 83.82))
(stroke (width 0) (type default))
(uuid ede99174-34c3-49f5-859c-eef20ee5e1ae)
)
(wire (pts (xy 138.43 93.98) (xy 170.18 93.98))
(stroke (width 0) (type default))
(uuid f5b05fef-d23c-497f-b4ae-5f02c8078cad)
)
(wire (pts (xy 138.43 96.52) (xy 138.43 93.98))
(stroke (width 0) (type default))
(uuid fa923715-35c2-4182-9180-29f0718342f4)
)
(wire (pts (xy 138.43 104.14) (xy 138.43 106.68))
(stroke (width 0) (type default))
(uuid ff948e6b-2bd6-4647-84e6-5700253e75da)
)
(text "Referenced from https://www.arducam.com/raspberry-pi-camera-pinout/\nAnd from CM4IOV5 schematic for MIPI connectors"
(at 124.079 24.003 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 887a9799-224b-49da-b77a-311167ea28a4)
)
(text "ALL MIPI CONNECTORS" (at 17.399 26.035 0)
(effects (font (size 5.9944 5.9944) (thickness 1.1989) bold) (justify left bottom))
(uuid 93be6fd7-e790-45fd-afdf-065f70167c67)
)
(text "Mipi PCB guidelines on Page 203/347 of UG 583" (at 125.222 39.497 0)
(effects (font (size 2.9972 2.9972)) (justify left bottom))
(uuid a88afc8f-2252-4a6a-a498-123ac79d00a5)
)
(text "MIPI CSI-2 Connectors" (at 37.084 38.481 0)
(effects (font (size 3.9878 3.9878)) (justify left bottom))
(uuid f618177d-e476-4c0e-809a-82ff556ce088)
)
(label "CAM1_SCL" (at 157.48 101.6 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0d96afaa-e7c5-49b8-b86c-422e1e2ec9ee)
)
(label "CAM0_SCL" (at 55.88 101.6 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid be07c066-5154-4485-92cd-e1e0847c88d0)
)
(label "CAM0_SDA" (at 55.88 104.14 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fce47799-f1e9-41a7-9736-8a56a04d65dc)
)
(label "CAM1_SDA" (at 157.48 104.14 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ff429cea-199f-4f18-bfb3-389cf7197e17)
)
(global_label "CAM0_SDA" (shape bidirectional) (at 55.88 104.14 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0ba93bc5-bd71-4a66-b1b8-6a7ab86bc060)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 55.88 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "PL_3V3" (shape input) (at 138.43 106.68 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8c5ef56d-85d8-41ed-8d45-e786faeaac2e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 138.43 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "CAM1_SCL" (shape input) (at 157.48 101.6 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9ca7cf21-8f6b-4667-9143-d4edb05211c1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 157.48 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "CAM0_SCL" (shape input) (at 55.88 101.6 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid aa6d7c7a-8c16-4f30-8dc7-5355bbeed44a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 55.88 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "PL_3V3" (shape input) (at 157.48 106.68 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d68ef7da-37ac-4050-90e5-c32eb49cbc28)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 157.48 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "CAM1_SDA" (shape bidirectional) (at 157.48 104.14 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dbfba09a-740b-402a-9bbf-6e6f382c66df)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 157.48 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "PL_3V3" (shape input) (at 36.83 106.68 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ee4d1446-f6ee-4172-a4f8-84f4e3350ba3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 36.83 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "PL_3V3" (shape input) (at 55.88 106.68 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fa101c91-f8cd-48f7-b6bc-e1afc721b76c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 55.88 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(hierarchical_label "CAM0_RESET_N" (shape input) (at 35.56 93.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1ff0f8dc-0abb-4295-a745-d70d1e38d5c3)
)
(hierarchical_label "HPA02_MIPI_A0_D1_P" (shape output) (at 55.88 66.04 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2ecd0455-1585-4ca3-94f3-56c4cd5d3ffd)
)
(hierarchical_label "HPA04_MIPI_A0_D3_N" (shape output) (at 55.88 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 32101a12-3b0e-47ed-9e65-59e190b8f6cc)
)
(hierarchical_label "HPA01_MIPI_A0_D0_N" (shape output) (at 55.88 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 33c6800b-fe79-4ab0-a161-779b9e5b40f6)
)
(hierarchical_label "HPA07_MIPI_A1_D1_N" (shape output) (at 157.48 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3cb5ed24-e686-48e1-9d25-c7820ec37aff)
)
(hierarchical_label "HPA00_CC_MIPI_A0_CLK_N" (shape output) (at 55.88 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4ffc0bcb-4628-4672-995c-76b4ee1bc0cb)
)
(hierarchical_label "HPA09_MIPI_A1_D3_P" (shape output) (at 157.48 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 50f6efc6-a97f-4439-b8cd-aff91e56656c)
)
(hierarchical_label "HPA05_CC_MIPI_A1_CLK_N" (shape output) (at 157.48 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 531af77e-91f7-4d8a-8f6c-588d4777fcbb)
)
(hierarchical_label "HPA02_MIPI_A0_D1_N" (shape output) (at 55.88 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5ae016ca-0f3d-482b-92fc-f2bd60ee3ef9)
)
(hierarchical_label "CAM1_RESET_N" (shape input) (at 137.16 93.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5ec715e0-214c-4fb9-a05b-09ecf5c4afa2)
)
(hierarchical_label "HPA08_MIPI_A1_D2_N" (shape output) (at 157.48 78.74 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6dbcd92b-03f4-47a1-85db-d3281ed401ea)
)
(hierarchical_label "HPA03_MIPI_A0_D2_N" (shape output) (at 55.88 78.74 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 702ceca8-0787-42a8-bfe0-3af17f8dbf73)
)
(hierarchical_label "HPA09_MIPI_A1_D3_N" (shape output) (at 157.48 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 70aa3e09-443e-435c-ad11-4f76d200baac)
)
(hierarchical_label "HPA03_MIPI_A0_D2_P" (shape output) (at 55.88 81.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8e0e2448-90e6-477f-9215-311fc82d3852)
)
(hierarchical_label "HPA08_MIPI_A1_D2_P" (shape output) (at 157.48 81.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 99888804-a2f1-4672-9aac-521f3429de05)
)
(hierarchical_label "HPA06_MIPI_A1_D0_P" (shape output) (at 157.48 58.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9d663bc1-0a49-497a-bfea-dde5f8b88749)
)
(hierarchical_label "HPA04_MIPI_A0_D3_P" (shape output) (at 55.88 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a2d962e7-7671-47e3-b2a1-f9dd355c4562)
)
(hierarchical_label "HPA06_MIPI_A1_D0_N" (shape output) (at 157.48 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a8cce684-d9ad-4c96-8531-7ee0c14bdd51)
)
(hierarchical_label "HDC13_CAM1_GPIO_1" (shape input) (at 157.48 96.52 180) (fields_autoplaced)
(effects (font (size 0.9906 0.9906)) (justify right))
(uuid ac0d63b5-15fa-4bc1-ba67-2f613b0e9498)
)
(hierarchical_label "HPA05_CC_MIPI_A1_CLK_P" (shape output) (at 157.48 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c149c41c-d463-44ec-899d-31d8ad476847)
)
(hierarchical_label "HDA01_CAM0_GPIO_1" (shape input) (at 55.88 96.52 180) (fields_autoplaced)
(effects (font (size 0.9906 0.9906)) (justify right))
(uuid e8a17dd1-9826-4cf8-9a79-3aead6ca9c74)
)
(hierarchical_label "HPA00_CC_MIPI_A0_CLK_P" (shape output) (at 55.88 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid eddb4a1c-7b7e-4778-b671-1d7efe7a8bf2)
)
(hierarchical_label "HPA01_MIPI_A0_D0_P" (shape output) (at 55.88 58.42 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f035217f-8642-48b1-856c-8a998fdec5ab)
)
(hierarchical_label "HPA07_MIPI_A1_D1_P" (shape output) (at 157.48 66.04 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f8dbca43-9767-486a-9dc7-eb918e666cb1)
)
(symbol (lib_id "Device:R") (at 138.43 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061510e00)
(property "Reference" "R?" (at 140.208 98.0186 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10K" (at 140.208 100.33 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 136.652 100.33 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 138.43 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Tolerance" "1%" (at 140.208 102.6414 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Power" "1/10W" (at 138.43 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PartNumber" "ERJ-2RKF1002X" (at 138.43 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "URL" "https://www.digikey.com/en/products/detail/panasonic-electronic-components/ERJ-2RKF1002X/192073" (at 138.43 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 084afb3d-94b1-4cec-8f73-620208c18d29))
(pin "2" (uuid b301184f-5576-4303-9b6e-4ec8caf81258))
(instances
(project "APT-KRIA-FMC"
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-00006314f1aa"
(reference "R?") (unit 1)
)
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-00006314dea9"
(reference "R?") (unit 1)
)
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-0000619c2b3c"
(reference "R153") (unit 1)
)
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-00006314f719"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 36.83 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000061536f8c)
(property "Reference" "R?" (at 38.608 98.0186 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10K" (at 38.608 100.33 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 35.052 100.33 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 36.83 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Tolerance" "1%" (at 38.608 102.6414 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Power" "1/10W" (at 36.83 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PartNumber" "ERJ-2RKF1002X" (at 36.83 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "URL" "https://www.digikey.com/en/products/detail/panasonic-electronic-components/ERJ-2RKF1002X/192073" (at 36.83 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e2e132a8-3e9b-4175-869a-81cf7c73c3fa))
(pin "2" (uuid c2bc4f50-9951-49e9-951b-cacf87d671ab))
(instances
(project "APT-KRIA-FMC"
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-00006314f1aa"
(reference "R?") (unit 1)
)
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-00006314dea9"
(reference "R?") (unit 1)
)
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-0000619c2b3c"
(reference "R151") (unit 1)
)
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-00006314f719"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 57.15 111.76 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000615f5e06)
(property "Reference" "C177" (at 60.96 109.855 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1uF" (at 61.595 111.506 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 56.1848 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 57.15 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PartNumber" "C1005X5R1E105K050BE " (at 57.15 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Tolerance" "+-10%" (at 57.15 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Voltage" "25V" (at 61.722 113.284 0)
(effects (font (size 1.27 1.27)))
)
(property "Temp_Val" "X5R" (at 57.15 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "URL" "https://www.digikey.com/en/products/detail/C1005X5R1E105K050BE/445-175215-1-ND/7907779?itemSeq=374777296" (at 57.15 111.76 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Alt" "N/A" (at 57.15 111.76 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7223d1c6-5aaf-4d52-a08d-ec9f7f30ab7d))
(pin "2" (uuid e4e147a4-3383-482c-87ce-17ca2c6b3dec))
(instances
(project "APT-KRIA-FMC"
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-0000619c2b3c"
(reference "C177") (unit 1)
)
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-000062c99a69"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 57.15 116.84 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000616336c8)
(property "Reference" "#PWR0196" (at 57.15 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 57.277 121.2342 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 57.15 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 57.15 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d9a9d0b8-9b1f-4157-9202-293e26707da2))
(instances
(project "APT-KRIA-FMC"
(path "/fa98ecbf-7e4d-41d2-9c93-0ad23d3b22ef/00000000-0000-0000-0000-0000619c2b3c"
(reference "#PWR0196") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 158.75 111.76 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000616791c9)
(property "Reference" "C178" (at 162.56 109.855 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1uF" (at 163.195 111.506 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 157.7848 107.95 0)
(effects (font (size 1.27 1.27)) hide)