-
Notifications
You must be signed in to change notification settings - Fork 11
/
PCIe.kicad_sch
1198 lines (1175 loc) · 45.2 KB
/
PCIe.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 fb9177d9-5a2c-47b4-80e8-740c8259d0b6)
(paper "A4")
(title_block
(title "PCIe slot")
(date "2022-11-06")
(rev "1.3b")
(company "Nabu Casa")
(comment 1 "www.nabucasa.com")
(comment 2 "Yellow")
)
(lib_symbols
(symbol "Connector:Bus_M.2_Socket_M" (in_bom yes) (on_board yes)
(property "Reference" "J" (at -22.86 46.99 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Bus_M.2_Socket_M" (at 16.51 46.99 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://read.pudn.com/downloads794/doc/project/3133918/PCIe_M.2_Electromechanical_Spec_Rev1.0_Final_11012013_RS_Clean.pdf#page=155" (at 0 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "M2 NGNF PCI-E" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "M.2 Socket 3 Mechanical Key M" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*M*2*M*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Bus_M.2_Socket_M_0_1"
(rectangle (start -22.86 45.72) (end 22.86 -45.72)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "Bus_M.2_Socket_M_1_1"
(pin power_in line (at 0 -48.26 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
(name "DAS/~{DSS}/~{LED1}" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 0 0) (length 2.54)
(name "PETn3" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 48.26 270) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 2.54 0) (length 2.54)
(name "PETp3" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 48.26 270) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 48.26 270) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 5.08 0) (length 2.54)
(name "PERn2" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 48.26 270) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 7.62 0) (length 2.54)
(name "PERp2" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 48.26 270) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 2.54 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 5.08 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 10.16 0) (length 2.54)
(name "PETn2" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 7.62 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 12.7 0) (length 2.54)
(name "PETp2" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 10.16 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 12.7 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 15.24 0) (length 2.54)
(name "PERn1" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 15.24 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 17.78 0) (length 2.54)
(name "PERp1" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 17.78 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 20.32 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 20.32 0) (length 2.54)
(name "PETn1" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 22.86 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 22.86 0) (length 2.54)
(name "PETp1" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 -22.86 0) (length 2.54)
(name "DEVSLP" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 48.26 270) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 25.4 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 25.4 0) (length 2.54)
(name "PERn0/SATA-B+" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 27.94 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 27.94 0) (length 2.54)
(name "PERp0/SATA-B-" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 30.48 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 33.02 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 30.48 0) (length 2.54)
(name "PETn0/SATA-A-" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 35.56 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 33.02 0) (length 2.54)
(name "PETp0/SATA-A+" (effects (font (size 1.27 1.27))))
(number "49" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 -5.08 0) (length 2.54)
(name "PERn3" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 43.18 0) (length 2.54)
(name "~{PERST}" (effects (font (size 1.27 1.27))))
(number "50" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "51" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 40.64 0) (length 2.54)
(name "~{CLKREQ}" (effects (font (size 1.27 1.27))))
(number "52" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 -38.1 0) (length 2.54)
(name "REFCLKn" (effects (font (size 1.27 1.27))))
(number "53" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 38.1 0) (length 2.54)
(name "~{PEWAKE}" (effects (font (size 1.27 1.27))))
(number "54" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 -35.56 0) (length 2.54)
(name "REFCLKp" (effects (font (size 1.27 1.27))))
(number "55" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 38.1 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "56" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "57" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 40.64 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "58" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 -2.54 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 -5.08 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "67" (effects (font (size 1.27 1.27))))
)
(pin output line (at 25.4 -27.94 180) (length 2.54)
(name "SUSCLK" (effects (font (size 1.27 1.27))))
(number "68" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 -20.32 180) (length 2.54)
(name "PEDET" (effects (font (size 1.27 1.27))))
(number "69" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 -2.54 0) (length 2.54)
(name "PERp3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 48.26 270) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "70" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "71" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 48.26 270) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "72" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "73" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 48.26 270) (length 2.54) hide
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "74" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "75" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 22.86 0 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "9" (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" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 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" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(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:LED_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at -1.27 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LED_Small" (at -4.445 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode light-emitting-diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_Small_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy -0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy -0.508 1.27)
(xy -0.254 1.27)
(xy -0.508 1.27)
(xy -0.508 1.016)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.508 1.27)
(xy 0 1.778)
(xy 0.254 1.778)
(xy 0 1.778)
(xy 0 1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "LED_Small_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (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" (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (at 0.762 -1.016 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" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default))
(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 "power:+3.3VP" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 3.81 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3VP" (at 0 2.54 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" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3VP\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3VP_0_0"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3VP" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "+3.3VP_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 "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" "power-flag" (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 152.4 35.56) (diameter 0.9144) (color 0 0 0 0)
(uuid 360bedc1-8522-4c8c-bbbd-baca6d69d40e)
)
(junction (at 152.4 27.94) (diameter 0.9144) (color 0 0 0 0)
(uuid 4406c962-ad4e-4078-b602-6c519257203f)
)
(junction (at 163.83 27.94) (diameter 0.9144) (color 0 0 0 0)
(uuid 520fd06c-b6b9-4c42-9bfc-5c3d2d29f14b)
)
(junction (at 163.83 35.56) (diameter 0.9144) (color 0 0 0 0)
(uuid 7bd6fa35-9259-4a2d-8279-ba81ed2069f9)
)
(no_connect (at 88.9 114.3) (uuid 0f4cee02-9454-4e4e-8245-a14730c298a5))
(no_connect (at 139.7 111.76) (uuid 4811d492-d355-4283-8c0b-e9bfc829e58a))
(no_connect (at 88.9 91.44) (uuid 4d536f5e-0f1a-4be8-b850-2d65c3776365))
(no_connect (at 139.7 119.38) (uuid 4d637dd8-eb18-4b84-b20d-a880b2b039c7))
(no_connect (at 88.9 96.52) (uuid 5af1856b-bb35-4b3a-9f24-183c511d329b))
(no_connect (at 88.9 76.2) (uuid 668f6267-409a-455e-98bc-a502cce3cdb7))
(no_connect (at 88.9 88.9) (uuid 6ce8f29a-c6b7-4dc2-bf43-961ebc55e246))
(no_connect (at 88.9 71.12) (uuid 6f9a0274-09cf-4988-922d-b4fcba2fdd99))
(no_connect (at 88.9 78.74) (uuid 74ed5f74-90c7-4dec-a854-f552f203c875))
(no_connect (at 88.9 68.58) (uuid 77014390-8dd1-40a1-8f8e-d4fd815134a2))
(no_connect (at 88.9 93.98) (uuid 88c87e07-6287-4c31-890b-2ccf59985f5d))
(no_connect (at 88.9 86.36) (uuid 89d1adb9-58a5-458d-86d9-57f658e83a6f))
(no_connect (at 88.9 83.82) (uuid d0b28588-cd70-4843-8601-edacb482a654))
(no_connect (at 88.9 81.28) (uuid e287e1b7-dc2a-4c28-9311-4ab0ab6c0c14))
(no_connect (at 88.9 73.66) (uuid eaf28989-35cf-496c-97d8-fc8247e02b7f))
(no_connect (at 88.9 53.34) (uuid eb310822-ad23-42fa-8403-dc389a3de910))
(bus_entry (at 68.58 45.72) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid 1412d500-5f46-4734-8291-7bd893f466e1)
)
(bus_entry (at 68.58 63.5) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid 5ab5f906-5bb2-4e0c-8d1d-7d033b12310c)
)
(bus_entry (at 68.58 127) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid 5b3edccb-fbcb-4401-b1ae-fc7b5f25e9b8)
)
(bus_entry (at 68.58 124.46) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid 68c274c9-3286-405e-8bf4-02e8c781894a)
)
(bus_entry (at 68.58 60.96) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid 6a5be399-0b86-47d1-aac5-fab1e9c933fc)
)
(bus_entry (at 68.58 58.42) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid c72080fc-cadb-4551-8aa0-30d87dfb8569)
)
(bus_entry (at 68.58 55.88) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid e6a4eacf-45c0-49c2-b6dd-d4a0b7879aa7)
)
(bus_entry (at 68.58 48.26) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid fed6bac9-8b67-4db5-88e4-362c7a2a01e9)
)
(wire (pts (xy 163.83 34.29) (xy 163.83 35.56))
(stroke (width 0) (type solid))
(uuid 05b2d6cc-4e21-413a-930c-cc89d562e643)
)
(wire (pts (xy 173.99 27.94) (xy 173.99 29.21))
(stroke (width 0) (type solid))
(uuid 14382f67-0fa9-4a96-ad9e-2fe8de22af1b)
)
(wire (pts (xy 163.83 27.94) (xy 163.83 29.21))
(stroke (width 0) (type solid))
(uuid 152c8106-5c59-4cea-8b56-90c3adc3a32a)
)
(wire (pts (xy 147.32 35.56) (xy 147.32 36.83))
(stroke (width 0) (type solid))
(uuid 26302660-f52c-4f00-a9ff-65a3dfdbf294)
)
(wire (pts (xy 144.78 96.52) (xy 144.78 101.6))
(stroke (width 0) (type solid))
(uuid 2859f850-c1c9-4e3a-b8bd-8c0a9695a012)
)
(wire (pts (xy 147.32 26.67) (xy 147.32 27.94))
(stroke (width 0) (type solid))
(uuid 2f914ce9-a403-46af-9c9d-c2e9edb42389)
)
(wire (pts (xy 71.12 58.42) (xy 88.9 58.42))
(stroke (width 0) (type solid))
(uuid 3ab48622-09a3-4f90-a76a-617f547f8033)
)
(wire (pts (xy 152.4 27.94) (xy 152.4 29.21))
(stroke (width 0) (type solid))
(uuid 40f62bc2-41aa-4bcc-90a4-7017c3e3cec7)
)
(wire (pts (xy 147.32 27.94) (xy 152.4 27.94))
(stroke (width 0) (type solid))
(uuid 46a204d8-24eb-4659-bbc5-d2b66f65596e)
)
(wire (pts (xy 71.12 60.96) (xy 88.9 60.96))
(stroke (width 0) (type solid))
(uuid 52d320dd-6220-4cd6-b095-bb86132f9b5c)
)
(wire (pts (xy 139.7 101.6) (xy 144.78 101.6))
(stroke (width 0) (type solid))
(uuid 5e67093b-a04d-4874-a32b-5fc61a898ab9)
)
(wire (pts (xy 71.12 66.04) (xy 88.9 66.04))
(stroke (width 0) (type solid))
(uuid 609c74ad-fa9f-4ff9-920f-de02a90b08e7)
)
(wire (pts (xy 71.12 127) (xy 88.9 127))
(stroke (width 0) (type solid))
(uuid 622f72fc-5c86-4526-a1c2-a1f1c3588fba)
)
(wire (pts (xy 152.4 27.94) (xy 163.83 27.94))
(stroke (width 0) (type solid))
(uuid 625f156f-e0ee-4584-935a-6e0d1d36d989)
)
(wire (pts (xy 163.83 27.94) (xy 173.99 27.94))
(stroke (width 0) (type solid))
(uuid 63671979-ff7f-41ca-8d2f-7986b34811cd)
)
(bus (pts (xy 63.5 43.18) (xy 68.58 43.18))
(stroke (width 0) (type solid))
(uuid 677b351c-441e-4668-8993-d72fd51841bf)
)
(wire (pts (xy 144.78 86.36) (xy 144.78 91.44))
(stroke (width 0) (type solid))
(uuid 6aa32697-6b95-4e42-9e94-0e4c0d07204e)
)
(wire (pts (xy 173.99 34.29) (xy 173.99 35.56))
(stroke (width 0) (type solid))
(uuid 7669434b-77bd-447d-84c5-800038bd08f5)
)
(wire (pts (xy 152.4 34.29) (xy 152.4 35.56))
(stroke (width 0) (type solid))
(uuid 902701ad-3557-4908-a225-928368dd2d7a)
)
(wire (pts (xy 71.12 63.5) (xy 88.9 63.5))
(stroke (width 0) (type solid))
(uuid 978db519-4f9f-46f6-aa4b-3ce721d59b85)
)
(wire (pts (xy 114.3 139.7) (xy 114.3 142.24))
(stroke (width 0) (type solid))
(uuid 9d745344-efe0-4435-a2c5-df3065c41f00)
)
(wire (pts (xy 147.32 35.56) (xy 152.4 35.56))
(stroke (width 0) (type solid))
(uuid a5a96cfc-f5ae-4c45-8218-c841ef447b69)
)
(wire (pts (xy 71.12 129.54) (xy 88.9 129.54))
(stroke (width 0) (type solid))
(uuid a63288fb-262b-4b95-864b-3bed1d03c87b)
)
(wire (pts (xy 163.83 35.56) (xy 173.99 35.56))
(stroke (width 0) (type solid))
(uuid b011c176-4ce0-40b0-b9c0-83ed70ce0d10)
)
(wire (pts (xy 152.4 35.56) (xy 163.83 35.56))
(stroke (width 0) (type solid))
(uuid b15be878-a875-4898-8d01-f5fb46392641)
)
(wire (pts (xy 144.78 76.2) (xy 144.78 81.28))
(stroke (width 0) (type solid))
(uuid b77875f9-ed98-4434-bed3-f57093e8d4af)
)
(wire (pts (xy 114.3 40.64) (xy 114.3 43.18))
(stroke (width 0) (type solid))
(uuid b825203d-fa72-4cfe-8395-27a58fdad7f2)
)
(bus (pts (xy 68.58 55.88) (xy 68.58 58.42))
(stroke (width 0) (type solid))
(uuid e4009c61-5ce0-40c1-8698-cf21c00fe274)
)
(bus (pts (xy 68.58 58.42) (xy 68.58 60.96))
(stroke (width 0) (type solid))
(uuid e4009c61-5ce0-40c1-8698-cf21c00fe275)
)
(bus (pts (xy 68.58 60.96) (xy 68.58 63.5))
(stroke (width 0) (type solid))
(uuid e4009c61-5ce0-40c1-8698-cf21c00fe276)
)
(bus (pts (xy 68.58 43.18) (xy 68.58 45.72))
(stroke (width 0) (type solid))
(uuid e4009c61-5ce0-40c1-8698-cf21c00fe277)
)
(bus (pts (xy 68.58 45.72) (xy 68.58 48.26))
(stroke (width 0) (type solid))
(uuid e4009c61-5ce0-40c1-8698-cf21c00fe278)
)
(bus (pts (xy 68.58 48.26) (xy 68.58 55.88))
(stroke (width 0) (type solid))
(uuid e4009c61-5ce0-40c1-8698-cf21c00fe279)
)
(bus (pts (xy 68.58 63.5) (xy 68.58 124.46))
(stroke (width 0) (type solid))
(uuid e4009c61-5ce0-40c1-8698-cf21c00fe27a)
)
(bus (pts (xy 68.58 124.46) (xy 68.58 127))
(stroke (width 0) (type solid))
(uuid e4009c61-5ce0-40c1-8698-cf21c00fe27b)
)
(wire (pts (xy 71.12 48.26) (xy 88.9 48.26))
(stroke (width 0) (type solid))
(uuid e6aa5feb-983a-4f6a-b79d-7f916297d86d)
)
(wire (pts (xy 71.12 50.8) (xy 88.9 50.8))
(stroke (width 0) (type solid))
(uuid e92e1632-2361-45e8-8099-f2e663e71cdf)
)
(label "PCIe.CLK-" (at 76.2 129.54 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 46fcf545-4cc1-42fe-b318-a64849b10e12)
)
(label "PCIe.~{CLKREQ}" (at 74.93 50.8 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 79fe2150-61eb-403b-8c6e-6c6d5701499a)
)
(label "PCIe.RX-" (at 74.93 66.04 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7b794a91-283e-4f4d-820e-2c949a677092)
)
(label "PCIe.RX+" (at 74.93 63.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 89ff1350-8220-4279-83c2-ab3b13412526)
)
(label "PCIe.TX-" (at 74.93 60.96 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8a932e9b-62d1-4701-8224-c4c6c0b70db8)
)
(label "PCIe.~{RST}" (at 74.93 48.26 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a1ff7461-f7ed-4c9c-baba-8e3448925b66)
)
(label "PCIe.TX+" (at 74.93 58.42 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ebf530e5-9176-44f0-9d72-17539435a961)
)
(label "PCIe.CLK+" (at 76.2 127 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f90f4770-6e22-4cb6-a1ce-67f1ebb8c1a1)
)
(hierarchical_label "PCIe{PCIe}" (shape bidirectional) (at 63.5 43.18 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 10e89e50-332a-4452-8af0-4035ef2c94f0)
)
(symbol (lib_id "Device:C_Small") (at 152.4 31.75 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 030e6ae8-452c-47f5-b669-7c02c683dee4)
(property "Reference" "C33" (at 154.7242 30.6006 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (at 154.724 32.899 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 152.4 31.75 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 152.4 31.75 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9f56867b-ed57-4e8d-919a-faf460c78ea3))
(pin "2" (uuid 92207e04-3c6b-4967-8642-8dbb179156f1))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/a1a835e0-c072-4609-9cb4-4b95bf746f54"
(reference "C33") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 163.83 31.75 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 08197240-4e46-42ca-bbbb-6a1c3e242b9e)
(property "Reference" "C34" (at 166.1542 30.6006 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (at 166.154 32.899 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 163.83 31.75 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 163.83 31.75 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 14747f6c-8e0b-4ccc-a6f4-3c01e8cec3de))
(pin "2" (uuid 42581acd-9e79-464b-8ffd-06b54eb85cbc))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/a1a835e0-c072-4609-9cb4-4b95bf746f54"
(reference "C34") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:Bus_M.2_Socket_M") (at 114.3 91.44 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1247548e-da2d-4da5-8e9d-cdb0bd0eeb39)
(property "Reference" "J12" (at 92.71 44.45 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Bus_M.2_Socket_M" (at 128.27 44.45 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Yellow:TE_1-2199230-3_Bus_M.2_M_H4.2mm_P0.5mm_2280_Horizontal" (at 114.3 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://read.pudn.com/downloads794/doc/project/3133918/PCIe_M.2_Electromechanical_Spec_Rev1.0_Final_11012013_RS_Clean.pdf#page=155" (at 114.3 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "TE" (at 114.3 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PartNumber" "1-2199119-5" (at 114.3 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a886f0ac-f221-4cc1-907a-7798e22496d5))
(pin "10" (uuid 6cc10212-21e3-4085-857e-75179edb1e73))
(pin "11" (uuid 6185e564-e781-4981-a49a-8411d981346c))
(pin "12" (uuid 930309b9-ec12-4a35-af75-be59a324bad3))
(pin "13" (uuid 3bb5b448-e4d2-4a35-b1e3-cb410c4d5d3b))
(pin "14" (uuid ebf08187-ccec-4628-b3ab-fdd0bdcdc04b))
(pin "15" (uuid dbdc5b8f-d022-4ede-89f3-eb94066a47b9))
(pin "16" (uuid 80848199-8fca-440a-8957-0ae00bc9e10b))
(pin "17" (uuid 8a7988e2-5181-4a6d-9095-3b7d1847c98a))
(pin "18" (uuid 03aa69fa-0f8c-4688-a5d0-ac82ee68c1c4))
(pin "19" (uuid edf9ac22-dc28-48d9-8403-ce441ac84bfd))
(pin "2" (uuid bb1d1eac-37c6-4e52-96c6-bdcd5550a9f6))
(pin "20" (uuid 3829a7a6-1566-41e6-9f48-670ead196db4))
(pin "21" (uuid 7c8309da-4c99-42c5-8211-929c17c890de))
(pin "22" (uuid 221651d7-1f1d-4a2a-a598-6deffc338e8e))
(pin "23" (uuid 578ed05d-6ecc-4232-afa5-5d023351c9df))
(pin "24" (uuid 5d52d157-4156-4215-90e8-37deeeb783cd))
(pin "25" (uuid 8c994a19-7c9a-495f-aa40-7fdfb053793c))
(pin "26" (uuid a9659c34-de68-46c5-b216-402cf4d943ea))
(pin "27" (uuid 36c65ef0-8272-4047-a0d9-19024765c784))
(pin "28" (uuid 0d3ab755-49dc-4c68-b88f-f7a05e95fc87))
(pin "29" (uuid bcc45052-b588-448f-80df-5a8d1fb1ff19))
(pin "3" (uuid 2c809a22-5c18-4557-9b26-fad6681ec1fb))
(pin "30" (uuid 42141e40-b10b-4fbc-99fb-9f5d1af36db9))
(pin "31" (uuid c719e19c-a24a-4e48-ad2c-6fe792dfc399))
(pin "32" (uuid bb283441-6cbc-49b0-a7ac-61bba4cb5867))
(pin "33" (uuid b208dcf8-4a6d-4070-8c55-1720fe529919))
(pin "34" (uuid d9f8aecc-5a6c-4032-a811-27c72c8e0244))
(pin "35" (uuid 70dbe883-6ea6-43c9-875c-04ec456b2c49))
(pin "36" (uuid 67d8d649-ecd4-4e32-9183-d269b40d28d8))
(pin "37" (uuid 8fd825ac-2034-4078-87eb-09186da89cec))
(pin "38" (uuid 7ab67027-5328-4e51-b708-82ea05a27a13))
(pin "39" (uuid abb92681-5ef5-44d0-b9a7-703a1a18d570))
(pin "4" (uuid 57e079c7-0a78-4195-89c0-6a176c9fb11a))
(pin "40" (uuid 97e25d94-47d0-4ae9-a650-26abc05b9280))
(pin "41" (uuid 04eb02a7-a183-44df-b9a6-495b9c22cd4e))
(pin "42" (uuid f3bbd6e2-49c7-4efd-a7ca-44f89c4fd2ed))
(pin "43" (uuid 74e569ec-b20b-4dcc-8c1b-edd8cd9648ee))
(pin "44" (uuid 46075459-3d2b-483c-970c-f458cdf5d33c))
(pin "45" (uuid e44ae530-916a-4c88-a960-b4f6f6c4ca9b))
(pin "46" (uuid 9d4f8170-0dcf-4395-be4b-bf50ea6aaa07))
(pin "47" (uuid fe030519-bf2e-40bd-bddd-a4027de1fc73))
(pin "48" (uuid b8e08c5b-a572-4915-8725-13bd99cd8e74))
(pin "49" (uuid 99646923-6ad0-4200-b558-153d1ab3c2ed))
(pin "5" (uuid f705af3d-2055-439a-b351-34cb7f1ca22d))
(pin "50" (uuid 5e02727a-9efe-458d-818b-81122c23f893))
(pin "51" (uuid 76423cea-81bc-4766-96aa-27934e89d226))
(pin "52" (uuid 13740b3c-c617-4c27-92aa-807e418b091b))
(pin "53" (uuid a138756e-0949-4a25-aca6-e9e3a70e8338))
(pin "54" (uuid 5d276dcd-54a8-4c87-ad3c-0937818a5832))
(pin "55" (uuid fafa38ff-5d78-4c30-8e55-326b93715994))
(pin "56" (uuid 32a2160c-bb15-4a0c-a545-827ce4740308))
(pin "57" (uuid e949cf15-accf-401e-8356-6c1fef05e578))
(pin "58" (uuid cf092023-7318-438b-8dbc-9a0f57952bc4))
(pin "6" (uuid 3308a6ca-0065-4ca9-a123-0781d49c483c))
(pin "67" (uuid 2ad1b55f-ef16-4390-a938-c12df77c8936))
(pin "68" (uuid 2188acdb-aa10-432f-8a83-f618acad59de))
(pin "69" (uuid d179a4d8-13ab-4946-b4a6-026b99633f90))
(pin "7" (uuid 26244371-a1d2-4818-bacb-8225cbc320ee))
(pin "70" (uuid 283febf3-24a2-4f87-b9f4-91d84418b556))
(pin "71" (uuid 298fe857-acfc-401f-8a8b-1243f966593d))
(pin "72" (uuid 84ea7929-1d23-4b89-ae92-f4c44bb7be42))
(pin "73" (uuid 0a92923a-88e2-45ca-b1aa-a1726075c8cb))
(pin "74" (uuid 73693cfd-bc0a-403d-8fe3-eab56f2bbfde))
(pin "75" (uuid 36817482-3989-4475-8dd1-9877693b51de))
(pin "8" (uuid f433bf45-b66b-489e-acb6-2ba1c5e9caba))
(pin "9" (uuid 1ccf94e9-47dc-43c8-abed-86fa3d785550))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/a1a835e0-c072-4609-9cb4-4b95bf746f54"
(reference "J12") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED_Small") (at 144.78 93.98 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 14257d11-70b4-4524-bbc7-c9c364d35ee5)
(property "Reference" "D1" (at 147.32 92.71 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "LED_Small" (at 147.32 95.25 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 144.78 93.98 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 144.78 93.98 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Config" "DNP" (at 140.97 93.98 90)
(effects (font (size 1.27 1.27)))