-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwifimodule.kicad_sch
1462 lines (1437 loc) · 57.6 KB
/
wifimodule.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 0e719858-f609-4c51-811f-98ad970c3461)
(paper "A4")
(title_block
(title "Jetson Xavier/Orin NX + PX4 Board")
(date "2023-09-28")
(rev "1.0")
(company "NYU ARPL")
(comment 1 "https://wp.nyu.edu/arpl/")
)
(lib_symbols
(symbol "Connector:Bus_M.2_Socket_E" (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_E" (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=150" (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 1-SD Mechanical Key E" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*M*2*E*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Bus_M.2_Socket_E_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_E_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 5.08 180) (length 2.54)
(name "PCM_SYNC/I2S_WS" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 -15.24 0) (length 2.54)
(name "SDIO_CMD" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at 25.4 2.54 180) (length 2.54)
(name "PCM_IN/I2S_SD_IN" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 -17.78 0) (length 2.54)
(name "SDIO_DATA0" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 25.4 0 180) (length 2.54)
(name "PCM_OUT/I2S_SD_OUT" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 -20.32 0) (length 2.54)
(name "SDIO_DATA1" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 25.4 -22.86 180) (length 2.54)
(name "~{LED_2}" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 -22.86 0) (length 2.54)
(name "SDIO_DATA2" (effects (font (size 1.27 1.27))))
(number "17" (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 "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 -25.4 0) (length 2.54)
(name "SDIO_DATA3" (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 input line (at 25.4 -5.08 180) (length 2.54)
(name "~{UART_WAKE}" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 -27.94 0) (length 2.54)
(name "~{SDIO_WAKE}" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 25.4 -7.62 180) (length 2.54)
(name "UART_RXD" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 -30.48 0) (length 2.54)
(name "~{SDIO_RESET}" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 10.16 0) (length 2.54)
(name "USB_D+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 25.4 -10.16 180) (length 2.54)
(name "UART_TXD" (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 input line (at 25.4 -12.7 180) (length 2.54)
(name "UART_CTS" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 33.02 0) (length 2.54)
(name "PETp0" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin output line (at 25.4 -15.24 180) (length 2.54)
(name "UART_RTS" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 30.48 0) (length 2.54)
(name "PETn0" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 38.1 180) (length 2.54)
(name "VENDOR_DEFINED" (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 passive line (at 25.4 35.56 180) (length 2.54)
(name "VENDOR_DEFINED" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 27.94 0) (length 2.54)
(name "PERp0" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 33.02 180) (length 2.54)
(name "VENDOR_DEFINED" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 25.4 0) (length 2.54)
(name "PERn0" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 25.4 -38.1 180) (length 2.54)
(name "COEX3" (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 bidirectional line (at 25.4 -35.56 180) (length 2.54)
(name "COEX2" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 -35.56 0) (length 2.54)
(name "REFCLKp0" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
(name "COEX1" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 -38.1 0) (length 2.54)
(name "REFCLKn0" (effects (font (size 1.27 1.27))))
(number "49" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 7.62 0) (length 2.54)
(name "USB_D-" (effects (font (size 1.27 1.27))))
(number "5" (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 "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 output line (at -25.4 43.18 0) (length 2.54)
(name "~{PERST0}" (effects (font (size 1.27 1.27))))
(number "52" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 40.64 0) (length 2.54)
(name "~{CLKREQ0}" (effects (font (size 1.27 1.27))))
(number "53" (effects (font (size 1.27 1.27))))
)
(pin output line (at 25.4 15.24 180) (length 2.54)
(name "~{W_DISABLE2}" (effects (font (size 1.27 1.27))))
(number "54" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 38.1 0) (length 2.54)
(name "~{PEWAKE0}" (effects (font (size 1.27 1.27))))
(number "55" (effects (font (size 1.27 1.27))))
)
(pin output line (at 25.4 17.78 180) (length 2.54)
(name "~{W_DISABLE1}" (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 bidirectional line (at 25.4 27.94 180) (length 2.54)
(name "I2C_DATA" (effects (font (size 1.27 1.27))))
(number "58" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 22.86 0) (length 2.54)
(name "RESERVED/PETp1" (effects (font (size 1.27 1.27))))
(number "59" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 25.4 -20.32 180) (length 2.54)
(name "~{LED_1}" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 25.4 25.4 180) (length 2.54)
(name "I2C_CLK" (effects (font (size 1.27 1.27))))
(number "60" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 20.32 0) (length 2.54)
(name "RESERVED/PETn1" (effects (font (size 1.27 1.27))))
(number "61" (effects (font (size 1.27 1.27))))
)
(pin input line (at 25.4 22.86 180) (length 2.54)
(name "~{ALERT}" (effects (font (size 1.27 1.27))))
(number "62" (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 "63" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 25.4 43.18 180) (length 2.54)
(name "RESERVED" (effects (font (size 1.27 1.27))))
(number "64" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 17.78 0) (length 2.54)
(name "RESERVED/PERp1" (effects (font (size 1.27 1.27))))
(number "65" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 -2.54 0) (length 2.54)
(name "UIM_SWP/~{PERST1}" (effects (font (size 1.27 1.27))))
(number "66" (effects (font (size 1.27 1.27))))
)
(pin input line (at -25.4 15.24 0) (length 2.54)
(name "RESERVED/PERn1" (effects (font (size 1.27 1.27))))
(number "67" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 -5.08 0) (length 2.54)
(name "UIM_POWER_SNK/~{CLKREQ1}" (effects (font (size 1.27 1.27))))
(number "68" (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 "69" (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 "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -25.4 -7.62 0) (length 2.54)
(name "UIM_POWER_SRC/GPIO1/~{PEWAKE1}" (effects (font (size 1.27 1.27))))
(number "70" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 -40.64 0) (length 2.54)
(name "RESERVED/REFCLKp1" (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 output line (at -25.4 -43.18 0) (length 2.54)
(name "RESERVED/REFCLKn1" (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 bidirectional line (at 25.4 7.62 180) (length 2.54)
(name "PCM_CLK/I2S_SCK" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin output line (at -25.4 -12.7 0) (length 2.54)
(name "SDIO_CLK" (effects (font (size 1.27 1.27))))
(number "9" (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:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (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" "LED diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (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_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (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 "jetson-nano-baseboard:9774040151" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "SP" (at -2.54 2.54 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Value" "9774040151" (at -2.54 -5.08 0)
(effects (font (size 1.524 1.524)) (justify left bottom))
)
(property "Footprint" "jetson-nano-baseboard-footprints:M2.5-4mm" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Manufacturer" "Wurth Elektronik" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "9774040151" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "9774040151_0_1"
(rectangle (start -2.54 -2.54) (end 2.54 2.54)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start -1.27 -1.27) (end 1.27 1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 0.0254 0.0254))))
(number "1" (effects (font (size 0.0254 0.0254))))
)
)
)
(symbol "jetson-nano-baseboard: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)
)
(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 "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 233.934 28.448) (diameter 0) (color 0 0 0 0)
(uuid 32a20866-17de-4fe1-9cc3-254cd46cf4af)
)
(junction (at 250.317 45.72) (diameter 0) (color 0 0 0 0)
(uuid 413fe4bf-e2f7-4932-962e-07ee19442cfc)
)
(junction (at 232.918 48.26) (diameter 0) (color 0 0 0 0)
(uuid 63a89b2e-4fd0-455d-93df-cd8fd7f38f75)
)
(junction (at 147.32 127.254) (diameter 0) (color 0 0 0 0)
(uuid 6891d9a0-4965-49ab-bfca-cba2aa83cfb2)
)
(junction (at 147.32 118.745) (diameter 0) (color 0 0 0 0)
(uuid 742fbc41-6ea6-437d-813a-64127b502648)
)
(no_connect (at 181.102 101.6) (uuid 079144d3-07ef-46e1-b085-cdd863ea04b8))
(no_connect (at 231.902 66.04) (uuid 1493d2d8-1f6e-469b-9ba9-20397aaed891))
(no_connect (at 181.102 58.42) (uuid 15bd061c-fe88-4948-94d9-178afc0ac868))
(no_connect (at 231.902 71.12) (uuid 218de434-117c-40ea-bae5-43f69a1bd64c))
(no_connect (at 181.102 71.12) (uuid 27380b04-3477-42f3-8bba-7bf72bae943c))
(no_connect (at 181.102 91.44) (uuid 2add6caa-e5df-4ac3-8c45-46228349d720))
(no_connect (at 181.102 119.38) (uuid 2b7b6282-0eb8-49c0-a78a-df97aa379ffe))
(no_connect (at 181.102 48.26) (uuid 2e371bbe-bfcd-446b-877a-9b029c5e2007))
(no_connect (at 181.102 114.3) (uuid 2f5b1e39-ae27-406f-bbbb-e80111c29749))
(no_connect (at 231.902 111.76) (uuid 31d3ebac-f1f8-4356-a273-96eb8244dd28))
(no_connect (at 231.902 91.44) (uuid 34d47505-9f8d-494b-b9b4-ae586382a8de))
(no_connect (at 231.902 104.14) (uuid 3570a9b4-9f03-4286-ad41-2ac3026e86e1))
(no_connect (at 231.902 93.98) (uuid 39cb6670-1cd3-406f-85c4-432f2800d784))
(no_connect (at 231.902 129.54) (uuid 3e25d3a5-5e37-4eb1-9fd6-93b8f80cb745))
(no_connect (at 231.902 101.6) (uuid 4780921a-b204-4800-b24e-a043d96db4fe))
(no_connect (at 231.902 68.58) (uuid 4ecd3377-cdc7-4839-b824-c83377bbdcbc))
(no_connect (at 181.102 83.82) (uuid 583fbb0e-97fa-4a50-b53b-cc50961a4386))
(no_connect (at 231.902 88.9) (uuid 58e2a427-f0a5-4352-9336-5e60c70e3db9))
(no_connect (at 231.902 78.74) (uuid 5b8fc50c-6415-4011-9f97-0ac44e56370f))
(no_connect (at 231.902 109.22) (uuid 5ffb2164-6610-4689-abbc-eaa4a0b9067d))
(no_connect (at 181.102 99.06) (uuid 73827b1e-e0ac-4657-81ad-d3e6531083ee))
(no_connect (at 231.902 116.84) (uuid 79105ad6-10f6-43dc-8cb4-d5f7f332b1d3))
(no_connect (at 181.102 53.34) (uuid 79463897-f4d4-4a0b-b899-29c1edeaa62a))
(no_connect (at 181.102 96.52) (uuid 84a5c43b-22fb-43c9-b11c-440daa2d4031))
(no_connect (at 181.102 93.98) (uuid 87b0caf0-a8a4-497b-9f19-67af56a5a081))
(no_connect (at 181.102 50.8) (uuid 898bf584-6134-4917-b258-9126ec5c0c81))
(no_connect (at 181.102 60.96) (uuid a53d98f4-b8c6-46b9-927b-9b866da5d16c))
(no_connect (at 181.102 68.58) (uuid a9aab0fe-7665-4883-927f-82a381bfa2f9))
(no_connect (at 231.902 63.5) (uuid b41de169-0aa7-441c-9e2d-f183ed5d3cf0))
(no_connect (at 231.902 127) (uuid b7d2266c-5978-4e9a-9fc6-1e0f58bd56ef))
(no_connect (at 231.902 106.68) (uuid c2eb88ca-557a-4056-b64b-3a5c82e89636))
(no_connect (at 181.102 43.18) (uuid c56ddaa1-73ee-4f83-a344-698643c5ce64))
(no_connect (at 181.102 78.74) (uuid c77a17ec-24b0-4d72-bede-f452b67d2175))
(no_connect (at 181.102 86.36) (uuid c788e640-e46d-4218-846a-d55aeb892813))
(no_connect (at 231.902 114.3) (uuid d0a78cab-8d0c-495a-af64-bede60e02d02))
(no_connect (at 181.102 121.92) (uuid d7350224-50e8-4b69-9e4c-f157791f0215))
(no_connect (at 231.902 99.06) (uuid d7904d63-5ed9-415d-927d-fd41f32e9cf8))
(no_connect (at 181.102 63.5) (uuid e0fb126a-c258-4d7e-aae0-8e84e7e00a16))
(no_connect (at 181.102 124.46) (uuid e717e0a8-e60b-4b4e-949a-0ba576fda364))
(no_connect (at 181.102 81.28) (uuid fa0a7cdc-0848-4c1f-bee8-d77814ad501d))
(no_connect (at 231.902 76.2) (uuid fa59960f-9011-4a73-b8f6-613abcca9fb5))
(wire (pts (xy 231.902 121.92) (xy 240.919 121.92))
(stroke (width 0) (type default))
(uuid 039d5327-878c-4c74-9e25-a5a4c5ba481b)
)
(wire (pts (xy 231.902 124.46) (xy 240.919 124.46))
(stroke (width 0) (type default))
(uuid 0683bb65-efa9-4196-b9e6-6ae64b9c9d99)
)
(wire (pts (xy 223.901 147.828) (xy 226.441 147.828))
(stroke (width 0) (type default))
(uuid 0dea0240-6066-4a00-9e2e-1e553fe322fc)
)
(wire (pts (xy 238.125 38.862) (xy 238.125 48.26))
(stroke (width 0) (type default))
(uuid 127c8230-5b73-465f-860e-ffc135d11a4d)
)
(wire (pts (xy 107.823 127.508) (xy 121.666 127.508))
(stroke (width 0) (type default))
(uuid 1a5c1072-9732-4416-8110-3ca28f8adff3)
)
(wire (pts (xy 147.32 127.254) (xy 147.32 137.287))
(stroke (width 0) (type default))
(uuid 1b0e5cad-d6ce-433e-94d2-3d1ce90c503c)
)
(wire (pts (xy 239.141 65.405) (xy 265.176 65.405))
(stroke (width 0) (type default))
(uuid 287744b1-7480-40bc-b3c9-fbd9152da3c5)
)
(wire (pts (xy 250.317 38.862) (xy 250.317 45.72))
(stroke (width 0) (type default))
(uuid 2b79201c-c7ac-4d5e-ad7f-3095c5571e46)
)
(wire (pts (xy 250.19 55.88) (xy 260.223 55.88))
(stroke (width 0) (type default))
(uuid 2e52c55f-f0bd-43bd-a98b-dff0ebb18417)
)
(wire (pts (xy 250.317 45.72) (xy 260.223 45.72))
(stroke (width 0) (type default))
(uuid 3d3c7c7d-9b2c-45b3-83d5-92528b3693a6)
)
(wire (pts (xy 147.32 113.792) (xy 147.32 118.745))
(stroke (width 0) (type default))
(uuid 3ef1e1f5-98ce-408a-bc0f-088ce4e660c6)
)
(wire (pts (xy 181.102 106.68) (xy 171.196 106.68))
(stroke (width 0) (type default))
(uuid 45bb5097-5aee-46f8-bda9-744986bea41d)
)
(wire (pts (xy 132.588 118.872) (xy 132.588 118.745))
(stroke (width 0) (type default))
(uuid 47f4c016-b410-4b2a-adad-56f1a0ea7e12)
)
(wire (pts (xy 264.668 62.484) (xy 264.668 61.976))
(stroke (width 0) (type default))
(uuid 48fac67e-a164-4bc9-bcc4-fdce7036b890)
)
(wire (pts (xy 226.441 147.828) (xy 226.441 150.368))
(stroke (width 0) (type default))
(uuid 50f1ca56-b714-48c0-ab9b-0fce4aa9fe12)
)
(wire (pts (xy 251.968 51.562) (xy 251.968 51.054))
(stroke (width 0) (type default))
(uuid 5721d5cf-b771-435b-bc1e-576919b3d77f)
)
(wire (pts (xy 121.666 127.508) (xy 121.666 127.254))
(stroke (width 0) (type default))
(uuid 57be9ee8-3e05-4809-afcd-cc9da3ed8353)
)
(wire (pts (xy 239.649 63.627) (xy 252.984 63.627))
(stroke (width 0) (type default))
(uuid 60c07b3f-095d-4c3b-a5a7-5f83312b39ac)
)
(wire (pts (xy 239.522 51.562) (xy 239.522 53.34))
(stroke (width 0) (type default))
(uuid 6114330c-4620-4169-911e-f26bfd3bd66b)
)
(wire (pts (xy 147.32 137.287) (xy 140.716 137.287))
(stroke (width 0) (type default))
(uuid 6778c083-a3ad-4293-ab76-443e877db379)
)
(wire (pts (xy 231.902 45.72) (xy 250.317 45.72))
(stroke (width 0) (type default))
(uuid 67e9b5d3-ae97-42b4-83db-42efef80bd1a)
)
(wire (pts (xy 231.902 43.18) (xy 259.969 43.18))
(stroke (width 0) (type default))
(uuid 6ab62fd6-e4cc-4a74-87c9-d74a90b592f3)
)
(wire (pts (xy 147.32 118.745) (xy 140.208 118.745))
(stroke (width 0) (type default))
(uuid 6f84a33f-989f-49bc-9850-9a90f94e26c5)
)
(wire (pts (xy 231.902 55.88) (xy 242.57 55.88))
(stroke (width 0) (type default))
(uuid 73e53b4c-bbe5-42ba-9949-f0f6b1688d21)
)
(wire (pts (xy 233.934 31.242) (xy 238.125 31.242))
(stroke (width 0) (type default))
(uuid 73e54089-8887-4abd-9901-9f62b680c9aa)
)
(wire (pts (xy 233.934 25.273) (xy 233.934 28.448))
(stroke (width 0) (type default))
(uuid 74aed96c-2a84-4fd5-88a0-c1739e3ad61d)
)
(wire (pts (xy 252.984 63.627) (xy 252.984 62.484))
(stroke (width 0) (type default))
(uuid 7f74760b-ff65-4e6d-976f-be0886d90ed5)
)
(wire (pts (xy 122.301 136.906) (xy 122.301 137.287))
(stroke (width 0) (type default))
(uuid 86c55474-aad6-4959-b8e2-d3de877b8429)
)
(wire (pts (xy 233.934 28.448) (xy 250.317 28.448))
(stroke (width 0) (type default))
(uuid 8842c42f-e38d-46a9-858d-82ad3b7ac8b0)
)
(wire (pts (xy 232.918 48.387) (xy 232.918 48.26))
(stroke (width 0) (type default))
(uuid 89f7d36d-55db-4a67-93fd-5e5457b125f3)
)
(wire (pts (xy 259.969 43.18) (xy 259.969 42.164))
(stroke (width 0) (type default))
(uuid 9022339c-35d1-4595-9a55-ca618712274b)
)
(wire (pts (xy 239.141 62.103) (xy 231.902 62.103))
(stroke (width 0) (type default))
(uuid 9663f1f6-c6d1-425b-9532-263749cce0ec)
)
(wire (pts (xy 233.934 28.448) (xy 233.934 31.242))
(stroke (width 0) (type default))
(uuid 977cc927-5066-4c8a-97b2-2d898d5f3b98)
)
(wire (pts (xy 107.823 136.906) (xy 122.301 136.906))
(stroke (width 0) (type default))
(uuid 989affab-55bc-49f7-8cd9-598573a01870)
)
(wire (pts (xy 240.919 124.46) (xy 240.919 124.333))
(stroke (width 0) (type default))
(uuid 9a6e83d3-d4de-4cbe-85ac-be28eea78ce8)
)
(wire (pts (xy 260.223 55.88) (xy 260.223 56.007))
(stroke (width 0) (type default))
(uuid 9bab9b8b-c4b6-4d35-b0bd-cb5163c2b9dc)
)
(wire (pts (xy 260.223 45.72) (xy 260.223 46.482))
(stroke (width 0) (type default))
(uuid 9c5adfc4-e3ba-45d5-89cd-ce8a701292fb)
)
(wire (pts (xy 231.902 48.26) (xy 232.918 48.26))
(stroke (width 0) (type default))
(uuid 9ce88304-9b1d-4ad2-8f9e-e8066fae6480)
)
(wire (pts (xy 206.502 134.62) (xy 206.502 136.144))
(stroke (width 0) (type default))
(uuid 9d2bc4a6-37e0-4e24-88a9-ba179710d775)
)
(wire (pts (xy 147.32 127.254) (xy 140.335 127.254))
(stroke (width 0) (type default))
(uuid 9e25da43-a40c-45ac-81c6-90361b3e5e05)
)
(wire (pts (xy 240.919 121.92) (xy 240.919 121.793))
(stroke (width 0) (type default))
(uuid abf3ca69-e046-4a2a-921e-0452a23b3cd4)
)
(wire (pts (xy 264.668 62.484) (xy 252.984 62.484))
(stroke (width 0) (type default))
(uuid b5ee6f3a-0ad5-4e49-af7c-29c2ce20200b)
)
(wire (pts (xy 265.176 65.405) (xy 265.176 65.278))
(stroke (width 0) (type default))
(uuid ba994f13-7581-47c7-bbea-ed1fb730bc95)
)
(wire (pts (xy 250.317 28.448) (xy 250.317 31.242))
(stroke (width 0) (type default))
(uuid c15044a4-ed77-4e69-8411-9caa5ba59908)
)
(wire (pts (xy 128.905 118.872) (xy 132.588 118.872))
(stroke (width 0) (type default))
(uuid c2c1e240-8c5d-408e-bfdc-7a187455724f)
)
(wire (pts (xy 171.196 106.68) (xy 171.196 106.553))
(stroke (width 0) (type default))
(uuid cd87ebd2-8cf7-4881-b747-198b0193ebb2)
)
(wire (pts (xy 129.286 127.254) (xy 132.715 127.254))
(stroke (width 0) (type default))
(uuid d006e39f-4647-4709-b34c-f95b011fdf89)
)
(wire (pts (xy 171.069 109.22) (xy 181.102 109.22))
(stroke (width 0) (type default))
(uuid d4972b3f-6027-4e82-940c-ab3d5057ad9b)
)
(wire (pts (xy 206.502 27.686) (xy 206.502 38.1))
(stroke (width 0) (type default))
(uuid d5e0960a-2d27-4555-b66d-3ac86ab254be)
)
(wire (pts (xy 239.649 58.42) (xy 231.902 58.42))
(stroke (width 0) (type default))
(uuid d78680da-b913-46ed-9668-604895f7d06f)
)
(wire (pts (xy 239.522 53.34) (xy 231.902 53.34))
(stroke (width 0) (type default))
(uuid d83edd75-5f1e-4694-b27c-f14f6093e254)
)
(wire (pts (xy 129.921 137.287) (xy 133.096 137.287))
(stroke (width 0) (type default))
(uuid df284b5b-8792-49f8-b849-39cd9e50c6a2)
)
(wire (pts (xy 232.918 48.26) (xy 238.125 48.26))
(stroke (width 0) (type default))
(uuid e31fb6d0-98c2-4074-9165-12c922194025)
)
(wire (pts (xy 147.32 118.745) (xy 147.32 127.254))
(stroke (width 0) (type default))
(uuid e5cf0f71-6ba4-44e9-8804-b2d368cee2dc)
)
(wire (pts (xy 239.649 63.627) (xy 239.649 58.42))
(stroke (width 0) (type default))
(uuid e7131e4e-0f27-4e28-80f8-f3aec02c2bec)
)
(wire (pts (xy 115.824 118.872) (xy 121.285 118.872))
(stroke (width 0) (type default))
(uuid eaed8736-52b8-41c1-9fe1-a3c6a7667b73)
)
(wire (pts (xy 231.902 62.103) (xy 231.902 60.96))
(stroke (width 0) (type default))
(uuid f05c5ad7-d2ce-409c-823d-84b64254ab83)
)
(wire (pts (xy 247.142 51.562) (xy 251.968 51.562))
(stroke (width 0) (type default))
(uuid fa03a7c8-38f9-4c19-bb1e-79b52b72d00b)
)
(wire (pts (xy 239.141 62.103) (xy 239.141 65.405))
(stroke (width 0) (type default))
(uuid ffb39783-1f82-4d46-8253-71827ada6eed)
)
(text "WIFI Module" (at 16.637 21.082 0)
(effects (font (size 2 2) (thickness 0.4) bold) (justify left bottom))
(uuid 36a7562f-f849-4a9b-ac40-78afdd213135)
)
(label "LED 2" (at 107.823 136.906 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3a95a93e-9bc2-40c1-9030-b4793698b299)
)
(label "LED 1" (at 107.823 127.508 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5bfc6200-4516-4206-8d15-99400b7b8242)
)
(label "WAKE" (at 232.918 48.387 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 78652e66-4591-4cb7-82e0-6d1e3c63cd59)
)
(label "LED 2" (at 171.069 109.22 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b0d57e73-33b5-415d-baee-326d861e46a1)
)
(label "LED 1" (at 171.196 106.553 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid db9440f5-48a7-4479-b1dc-044820964432)
)
(global_label "3V3_SYS" (shape input) (at 206.502 27.686 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2e1b357f-dfdd-4b5c-9229-c0ff75bacda9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 206.502 17.3722 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PCIE1_RX0_P" (shape input) (at 264.668 61.976 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 58271fff-978c-4656-890c-37055db55009)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 279.3965 61.976 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PCIE1_CLKREQ" (shape input) (at 260.223 46.482 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 61b6b0ca-5162-49dc-b6d5-47190e94e6da)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 276.3425 46.482 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PCIE1_CLK_P" (shape input) (at 240.919 121.793 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 64194526-3bd5-489a-9c0f-c0a2de735bd7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 255.5266 121.793 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "3V3_SYS" (shape input) (at 147.32 113.792 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 64272a12-6926-49b5-bce9-6f6b4f7e6b84)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.32 103.4782 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "3V3_SYS" (shape input) (at 233.934 25.273 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 80dc018b-e555-4879-bd94-57618f3b9b07)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 233.934 14.9592 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PCIE1_TX0_N" (shape input) (at 260.223 56.007 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 860f7a6a-6cb1-45cc-8ba4-9f3cddcc0950)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 274.7096 56.007 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PCIE1_RST" (shape input) (at 259.969 42.164 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c49747e5-880a-4cfd-b1e6-6e7f82b26b59)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 272.218 42.164 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PCIE1_CLK_N" (shape input) (at 240.919 124.333 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e7746782-9913-4ac9-82bd-9ab5a6136f37)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 255.5871 124.333 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PCIE1_TX0_P" (shape input) (at 251.968 51.054 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid eeed93a3-c9f6-4bcc-bc64-15e850a6b078)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 266.3941 51.054 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PCIE1_RX0_N" (shape input) (at 265.176 65.278 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid fa81fc54-3349-470c-89f1-0d2f3d0dd91d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 279.965 65.278 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "Device:R") (at 136.525 127.254 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 017fef8c-abd4-4720-99e0-6ff4cf7d796c)
(property "Reference" "R170" (at 136.525 121.92 90)