-
Notifications
You must be signed in to change notification settings - Fork 1
/
gpio_exp.kicad_sch
1672 lines (1634 loc) · 70.2 KB
/
gpio_exp.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 976577d0-38f2-408e-87bd-f9c2c6c44bc0)
(paper "A3")
(title_block
(title "Com Express 7 baseboard")
(date "2024-03-28")
(rev "1.0.0")
(company "Antmicro Ltd.")
)
(lib_symbols
(symbol "antmicroCapacitors0402:C_100n_0402" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 20.32 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "C_100n_0402" (at 20.32 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "antmicro-footprints:C_0402_1005Metric" (at 20.32 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://www.murata.com/products/productdetail?partno=GRM155R61H104KE14%23" (at 20.32 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "GRM155R61H104KE14D" (at 20.32 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Murata" (at 20.32 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 20.32 -22.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 20.32 -25.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "100n" (at 20.32 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Voltage" "50V" (at 20.32 -27.94 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Dielectric" "X5R" (at 20.32 -30.48 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Public" "False" (at 20.32 -33.02 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_keywords" "0402, SMT, CAPACITOR, PASSIVE, CERAMIC, MLCC" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "SMD Multilayer Ceramic Capacitor, 0.1 µF, 50 V, 0402 [1005 Metric], ± 10%, X5R, GRM Series" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_100n_0402_0_1"
(polyline
(pts
(xy 2.032 -1.524)
(xy 2.032 1.524)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.048 -1.524)
(xy 3.048 1.524)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
)
(symbol "C_100n_0402_1_1"
(pin passive line (at 0 0 0) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "antmicroInterfaceIOExpanders:PCA9539AHF" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 36.83 -3.81 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "PCA9539AHF" (at 36.83 -8.89 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "antmicro-footprints:QFN-24-1EP_4x4mm_P0.5_EP2.1x2.1mm" (at 36.83 -11.43 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://www.nxp.com/docs/en/data-sheet/PCA9539A.pdf" (at 36.83 -13.97 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "PCA9539AHF,128" (at 36.83 -6.35 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Manufacturer" "NXP" (at 36.83 -16.51 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 36.83 -19.05 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 36.83 -21.59 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "ki_keywords" "SMT, INTERFACE, IC, I2C" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "I/O Expanders 16bit I2C IO Port" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "VFQFN-16-1EP_3x3mm" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PCA9539AHF_1_1"
(rectangle (start 2.54 2.54) (end 20.32 -43.18)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin bidirectional line (at 22.86 0 180) (length 2.54)
(name "IO0_0" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -22.86 180) (length 2.54)
(name "IO1_0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -25.4 180) (length 2.54)
(name "IO1_1" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -27.94 180) (length 2.54)
(name "IO1_2" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -30.48 180) (length 2.54)
(name "IO1_3" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -33.02 180) (length 2.54)
(name "IO1_4" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -35.56 180) (length 2.54)
(name "IO1_5" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -38.1 180) (length 2.54)
(name "IO1_6" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -40.64 180) (length 2.54)
(name "IO1_7" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -35.56 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -7.62 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -2.54 180) (length 2.54)
(name "IO0_1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -5.08 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 0 0) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin output line (at 0 -10.16 0) (length 2.54)
(name "~{INT}" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -38.1 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -22.86 0) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -40.64 0) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -5.08 180) (length 2.54)
(name "IO0_2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -7.62 180) (length 2.54)
(name "IO0_3" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -10.16 180) (length 2.54)
(name "IO0_4" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -12.7 180) (length 2.54)
(name "IO0_5" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -15.24 180) (length 2.54)
(name "IO0_6" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -17.78 180) (length 2.54)
(name "IO0_7" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -40.64 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "antmicroResistors0402:R_0R_0402" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 20.32 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "R_0R_0402" (at 20.32 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "antmicro-footprints:R_0402_1005Metric" (at 20.32 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C301.pdf" (at 20.32 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "ERJ2GE0R00X" (at 20.32 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Panasonic" (at 20.32 -22.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 20.32 -25.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 20.32 -27.94 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "0R" (at 20.32 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Tolerance" "~" (at 20.32 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Current" "1A" (at 20.32 -30.48 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Public" "False" (at 20.32 -30.48 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_keywords" "0402, SMT, RESISTOR, PASSIVE" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "SMD Chip Resistor, Jumper, 0 ohm, 100 mW, 0402 [1005 Metric], Thick Film, General Purpose" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0R_0402_0_1"
(rectangle (start 0.635 0.889) (end 4.445 -0.889)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_0R_0402_1_1"
(pin passive line (at 0 0 0) (length 0.635)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 0.635)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "antmicropower:+3V3" (power) (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 15.24 0 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Value" "+3V3" (at -3.175 2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "" (at 15.24 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 15.24 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 15.24 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 15.24 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(symbol "+3V3_0_1"
(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))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "antmicropower:GND" (power) (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 8.89 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Value" "GND" (at 8.89 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "" (at 8.89 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 8.89 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 8.89 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 8.89 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(symbol "GND_1_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))
)
(pin power_in line (at 0 0 270) (length 0)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 180.34 121.92) (diameter 0) (color 0 0 0 0)
(uuid 89f02298-0821-4683-8cd2-430fd6d20d13)
)
(junction (at 180.34 167.64) (diameter 0) (color 0 0 0 0)
(uuid 98c397f9-792f-4d33-8f96-c2321a2912d8)
)
(junction (at 189.23 121.92) (diameter 0) (color 0 0 0 0)
(uuid c696bb23-a477-4b6d-9f5f-55b45358a534)
)
(no_connect (at 223.52 160.02) (uuid 03235392-f0c3-41d6-83b3-4a95541e7724))
(no_connect (at 223.52 162.56) (uuid 134971e9-ba8e-4779-81ae-e12176af6a94))
(no_connect (at 223.52 170.18) (uuid 13a4f85f-accc-474f-b5a9-f6b4c65da5c4))
(no_connect (at 223.52 167.64) (uuid 22b9718d-e953-4b09-b0f1-574c124c7482))
(no_connect (at 223.52 157.48) (uuid 65c8b218-6ac7-4a3c-a4a5-188b6ceb752c))
(no_connect (at 223.52 172.72) (uuid 886c66ed-8170-4fbc-bcb2-13972ee7ba60))
(no_connect (at 223.52 154.94) (uuid 9fb94bfd-dea9-4372-9a06-df337ae54f90))
(no_connect (at 223.52 165.1) (uuid ccab6104-a729-46e2-8d58-039f33e4fe98))
(bus_entry (at 163.83 139.7) (size -1.27 -1.27)
(stroke (width 0) (type default))
(uuid 3acca82a-a6f0-45d0-801c-8125b8429bab)
)
(bus_entry (at 163.83 142.24) (size -1.27 -1.27)
(stroke (width 0) (type default))
(uuid 8358db7d-07bf-45c5-9da5-d3cff6283aee)
)
(bus_entry (at 163.83 137.16) (size -1.27 -1.27)
(stroke (width 0) (type default))
(uuid e150a4f4-186a-4d58-9bc9-3d3cb69163f7)
)
(wire (pts (xy 194.31 139.7) (xy 200.66 139.7))
(stroke (width 0) (type default))
(uuid 07962a7e-1af9-4afc-b6e4-e192113da58f)
)
(wire (pts (xy 238.76 142.24) (xy 232.41 142.24))
(stroke (width 0) (type default))
(uuid 0aaadd78-39b4-4701-bb1b-90d0f11aecc6)
)
(bus (pts (xy 162.56 138.43) (xy 162.56 140.97))
(stroke (width 0) (type default))
(uuid 121c092c-e4cd-4f91-8960-13ee28372dc5)
)
(wire (pts (xy 238.76 144.78) (xy 232.41 144.78))
(stroke (width 0) (type default))
(uuid 160e57e1-d6c5-43da-a4ea-f22d2688c1a0)
)
(wire (pts (xy 238.76 139.7) (xy 232.41 139.7))
(stroke (width 0) (type default))
(uuid 17914daa-a9ed-4113-941f-6ce93d35121f)
)
(wire (pts (xy 163.83 142.24) (xy 189.23 142.24))
(stroke (width 0) (type default))
(uuid 19d90620-2e9e-4342-83d1-173c8c8f8b9c)
)
(bus (pts (xy 162.56 135.89) (xy 162.56 138.43))
(stroke (width 0) (type default))
(uuid 1c4e60c6-9ace-4748-bc3d-baa6ed8c7042)
)
(wire (pts (xy 180.34 167.64) (xy 180.34 171.45))
(stroke (width 0) (type default))
(uuid 266bcf31-97d4-419c-9e69-8bf6b6184272)
)
(bus (pts (xy 162.56 134.62) (xy 162.56 135.89))
(stroke (width 0) (type default))
(uuid 30e7eccb-9319-4f63-9882-f18434451c4c)
)
(wire (pts (xy 194.31 142.24) (xy 200.66 142.24))
(stroke (width 0) (type default))
(uuid 48b026ad-9bcf-4b7f-a2cc-a2a10f6ceb20)
)
(wire (pts (xy 238.76 134.62) (xy 232.41 134.62))
(stroke (width 0) (type default))
(uuid 50a7a647-2210-4a8d-ae3a-dfcb505d77d6)
)
(bus (pts (xy 162.56 134.62) (xy 161.29 133.35))
(stroke (width 0) (type default))
(uuid 5121c545-5e20-46cb-a1a8-644fbc5715e4)
)
(wire (pts (xy 238.76 137.16) (xy 232.41 137.16))
(stroke (width 0) (type default))
(uuid 5b21b6c0-c24c-4c64-810c-f9b8b1632949)
)
(wire (pts (xy 227.33 132.08) (xy 223.52 132.08))
(stroke (width 0) (type default))
(uuid 5f926301-bf74-44bb-92e4-be83078eabdb)
)
(wire (pts (xy 180.34 121.92) (xy 189.23 121.92))
(stroke (width 0) (type default))
(uuid 657f25b8-65c2-43e5-a294-a89c4902511d)
)
(wire (pts (xy 162.56 154.94) (xy 189.23 154.94))
(stroke (width 0) (type default))
(uuid 6c2be2a4-db19-48d3-a045-d85ca6de7444)
)
(wire (pts (xy 163.83 139.7) (xy 189.23 139.7))
(stroke (width 0) (type default))
(uuid 6df27357-3581-4bcf-b584-080c124e910b)
)
(wire (pts (xy 163.83 137.16) (xy 189.23 137.16))
(stroke (width 0) (type default))
(uuid 7bb651fd-ab3c-45ff-baa0-ea2b635880de)
)
(wire (pts (xy 189.23 176.53) (xy 189.23 177.8))
(stroke (width 0) (type default))
(uuid 7e16df43-4eb7-4a8b-b25d-49afb3c747ad)
)
(wire (pts (xy 238.76 147.32) (xy 232.41 147.32))
(stroke (width 0) (type default))
(uuid 7ecba744-8f21-4e3c-abae-9e57b10a3189)
)
(wire (pts (xy 227.33 149.86) (xy 223.52 149.86))
(stroke (width 0) (type default))
(uuid 81e83bc0-ef03-4aa9-82dd-925a57cd89ce)
)
(wire (pts (xy 180.34 120.65) (xy 180.34 121.92))
(stroke (width 0) (type default))
(uuid 8c47a210-2aaa-4181-aa7a-ed48f96ceb2a)
)
(wire (pts (xy 180.34 176.53) (xy 180.34 177.8))
(stroke (width 0) (type default))
(uuid 8edf28fb-17d1-4867-876d-d0e0cedf8c33)
)
(wire (pts (xy 194.31 154.94) (xy 200.66 154.94))
(stroke (width 0) (type default))
(uuid 8ee068d4-587c-4395-9dbe-1e97e062942c)
)
(wire (pts (xy 180.34 121.92) (xy 180.34 158.75))
(stroke (width 0) (type default))
(uuid 90fecc33-a0bc-44c3-a1bc-543dbaf34375)
)
(wire (pts (xy 198.12 172.72) (xy 198.12 177.8))
(stroke (width 0) (type default))
(uuid 92639fc9-c1fb-40fb-821c-df4eb5778f48)
)
(wire (pts (xy 180.34 163.83) (xy 180.34 167.64))
(stroke (width 0) (type default))
(uuid 95211a83-8cfb-4ebb-9774-02a858d4c771)
)
(wire (pts (xy 227.33 142.24) (xy 223.52 142.24))
(stroke (width 0) (type default))
(uuid 983d85e3-4bdf-4c03-8d9e-8f995b990e46)
)
(wire (pts (xy 198.12 132.08) (xy 200.66 132.08))
(stroke (width 0) (type default))
(uuid a03bb817-eeba-4508-b266-425021380521)
)
(wire (pts (xy 180.34 167.64) (xy 200.66 167.64))
(stroke (width 0) (type default))
(uuid a547818d-4c01-426f-9c50-057685e6a1e1)
)
(wire (pts (xy 238.76 132.08) (xy 232.41 132.08))
(stroke (width 0) (type default))
(uuid a601afb0-a9a6-4e72-b3cc-a49df646d932)
)
(bus (pts (xy 139.7 133.35) (xy 161.29 133.35))
(stroke (width 0) (type default))
(uuid a6e8b34b-0c45-43fb-ad78-55f5b7e607f5)
)
(wire (pts (xy 227.33 147.32) (xy 223.52 147.32))
(stroke (width 0) (type default))
(uuid b4a10512-11c1-4f8f-ad4d-84fdbfb87b19)
)
(wire (pts (xy 227.33 139.7) (xy 223.52 139.7))
(stroke (width 0) (type default))
(uuid b4b80391-f788-41af-8e4d-4f54c72e6d3f)
)
(wire (pts (xy 198.12 172.72) (xy 200.66 172.72))
(stroke (width 0) (type default))
(uuid c53545b5-963e-42c3-a994-bed3e0c57dc5)
)
(wire (pts (xy 227.33 137.16) (xy 223.52 137.16))
(stroke (width 0) (type default))
(uuid cc3e23d7-f9a4-4def-9309-8d02b6438dc3)
)
(wire (pts (xy 189.23 170.18) (xy 200.66 170.18))
(stroke (width 0) (type default))
(uuid dbc49848-2cd1-4869-ab2d-cb1017f76474)
)
(wire (pts (xy 227.33 144.78) (xy 223.52 144.78))
(stroke (width 0) (type default))
(uuid dbf434a4-3d37-4e4b-b3e3-d15e05b06cca)
)
(wire (pts (xy 194.31 137.16) (xy 200.66 137.16))
(stroke (width 0) (type default))
(uuid e3ec1f64-dbd0-499c-aec8-b2e17f4fecaa)
)
(wire (pts (xy 227.33 134.62) (xy 223.52 134.62))
(stroke (width 0) (type default))
(uuid e59ca6f0-2539-4b25-a439-83ca55468c58)
)
(wire (pts (xy 189.23 121.92) (xy 189.23 123.19))
(stroke (width 0) (type default))
(uuid e93090b8-e686-4af5-b5cb-1d42eee42ff7)
)
(wire (pts (xy 238.76 149.86) (xy 232.41 149.86))
(stroke (width 0) (type default))
(uuid f213e8fc-c42a-4639-be1f-dcb2a61b5d1d)
)
(wire (pts (xy 189.23 170.18) (xy 189.23 171.45))
(stroke (width 0) (type default))
(uuid f2ebe7d2-6281-44e9-8f34-78cd22d3405a)
)
(wire (pts (xy 189.23 121.92) (xy 198.12 121.92))
(stroke (width 0) (type default))
(uuid fb1d8ba3-7e36-48ae-9559-2ae9072bfdee)
)
(wire (pts (xy 198.12 121.92) (xy 198.12 132.08))
(stroke (width 0) (type default))
(uuid ffc901a5-f18c-48c0-a3ef-3b11405488cf)
)
(text "Address 0x74\n" (at 212.09 177.8 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6b68ff0d-ce0d-4eb9-a057-b1afb34e0606)
)
(label "SMBus.~{INT}" (at 165.1 142.24 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4bb718b8-5979-40e6-9435-afb33cc61ce0)
)
(label "SMBus.SCL" (at 165.1 139.7 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b2611d16-4cea-4b2a-bb57-3b1a3d1c3f5b)
)
(label "SMBus.SDA" (at 165.1 137.16 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b59ed318-183b-4004-9873-265341081c05)
)
(hierarchical_label "GPIOEX2" (shape output) (at 238.76 137.16 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 03dde6ff-7150-4340-a0e2-8805b38642ec)
)
(hierarchical_label "GPIOEX1" (shape output) (at 238.76 134.62 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 163d2531-c568-40f7-9075-0971c9bf77be)
)
(hierarchical_label "SMBus{I2C}" (shape input) (at 139.7 133.35 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1cae2c65-7df9-4dd3-9364-57ee537c9cf0)
)
(hierarchical_label "GPIOEX3" (shape output) (at 238.76 139.7 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 50c5abbd-dbe0-46e2-a2e5-fe4f035d09c8)
)
(hierarchical_label "GPIOEX7" (shape output) (at 238.76 149.86 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6c3a2fb3-9635-406e-a28a-23ec9b4a2134)
)
(hierarchical_label "GPIOEX4" (shape output) (at 238.76 142.24 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6c94ebf2-cf39-45d5-8f40-714a5576e935)
)
(hierarchical_label "GPIOEX5" (shape output) (at 238.76 144.78 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 843c7e37-1d4b-41a9-91db-4f061bdf3058)
)
(hierarchical_label "GPIOEX0" (shape output) (at 238.76 132.08 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8ac2adc6-b4b7-434e-be30-1d1a85542a93)
)
(hierarchical_label "GPIOEX6" (shape output) (at 238.76 147.32 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid cd99ae44-d4d0-4613-9bcb-48a79011ada1)
)
(hierarchical_label "~{RESET}" (shape input) (at 162.56 154.94 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d85e0fef-f519-4b40-9d2a-70e50edc8d47)
)
(symbol (lib_id "antmicroResistors0402:R_0R_0402") (at 227.33 149.86 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 05305bd6-73f2-4a25-90e7-a7d86c106c0a)
(property "Reference" "R245" (at 234.95 148.59 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Value" "R_0R_0402" (at 247.65 162.56 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "antmicro-footprints:R_0402_1005Metric" (at 247.65 165.1 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C301.pdf" (at 247.65 167.64 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "ERJ2GE0R00X" (at 247.65 170.18 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Panasonic" (at 247.65 172.72 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 247.65 175.26 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 247.65 177.8 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "0R" (at 226.06 148.59 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Tolerance" "~" (at 247.65 160.02 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Current" "1A" (at 247.65 180.34 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Public" "False" (at 247.65 180.34 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(pin "1" (uuid 5afae773-2e77-4ec0-8e52-0c772370b27a))
(pin "2" (uuid 2a615e23-bd9a-4510-ac6e-0fec0168fa71))
(instances
(project "com-express-7-baseboard"
(path "/1b8c34da-dad5-4b0b-8c4b-45db766c4dfa/50145e18-6fda-4310-8f05-c3e546b9d1d3"
(reference "R245") (unit 1)
)
)
)
)
(symbol (lib_id "antmicropower:GND") (at 189.23 177.8 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0a8afee0-a5d2-40b5-963b-2ed13eec3e25)
(property "Reference" "#PWR0325" (at 198.12 180.34 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Value" "GND" (at 189.23 181.61 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Footprint" "" (at 198.12 185.42 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 198.12 190.5 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 198.12 185.42 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 198.12 187.96 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(pin "1" (uuid 848c9407-d09e-45c0-a04d-a9612bcc604c))
(instances
(project "com-express-7-baseboard"
(path "/1b8c34da-dad5-4b0b-8c4b-45db766c4dfa/50145e18-6fda-4310-8f05-c3e546b9d1d3"
(reference "#PWR0325") (unit 1)
)
)
)
)
(symbol (lib_id "antmicroResistors0402:R_0R_0402") (at 227.33 139.7 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 21384614-54c4-43fa-a1c7-ad1f76aab698)
(property "Reference" "R241" (at 234.95 138.43 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Value" "R_0R_0402" (at 247.65 152.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "antmicro-footprints:R_0402_1005Metric" (at 247.65 154.94 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C301.pdf" (at 247.65 157.48 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "ERJ2GE0R00X" (at 247.65 160.02 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Panasonic" (at 247.65 162.56 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 247.65 165.1 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 247.65 167.64 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "0R" (at 226.06 138.43 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Tolerance" "~" (at 247.65 149.86 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Current" "1A" (at 247.65 170.18 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Public" "False" (at 247.65 170.18 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(pin "1" (uuid ccda630f-1e93-4716-b653-99522ace67bd))
(pin "2" (uuid f40a5cd3-7ca5-4012-88a1-bb5a10c1c526))
(instances
(project "com-express-7-baseboard"
(path "/1b8c34da-dad5-4b0b-8c4b-45db766c4dfa/50145e18-6fda-4310-8f05-c3e546b9d1d3"
(reference "R241") (unit 1)
)
)
)
)
(symbol (lib_id "antmicroResistors0402:R_0R_0402") (at 227.33 137.16 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2db3dbd6-9b00-4bc8-ac2a-048f4468b815)
(property "Reference" "R240" (at 234.95 135.89 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Value" "R_0R_0402" (at 247.65 149.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "antmicro-footprints:R_0402_1005Metric" (at 247.65 152.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C301.pdf" (at 247.65 154.94 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "ERJ2GE0R00X" (at 247.65 157.48 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Panasonic" (at 247.65 160.02 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 247.65 162.56 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 247.65 165.1 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "0R" (at 226.06 135.89 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Tolerance" "~" (at 247.65 147.32 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Current" "1A" (at 247.65 167.64 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Public" "False" (at 247.65 167.64 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(pin "1" (uuid 4ad11cfb-1546-462b-8960-b79a8a54fd78))
(pin "2" (uuid 96eb2a59-8ffa-45ff-ab07-c56d16916a48))
(instances
(project "com-express-7-baseboard"
(path "/1b8c34da-dad5-4b0b-8c4b-45db766c4dfa/50145e18-6fda-4310-8f05-c3e546b9d1d3"
(reference "R240") (unit 1)
)
)
)
)
(symbol (lib_id "antmicropower:GND") (at 189.23 128.27 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 548ea3ea-57bd-4587-b8df-f6f70e5cb6ed)
(property "Reference" "#PWR0324" (at 198.12 130.81 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Value" "GND" (at 189.23 132.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Footprint" "" (at 198.12 135.89 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 198.12 140.97 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 198.12 135.89 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 198.12 138.43 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(pin "1" (uuid 10f7eab9-1912-44dd-9037-b44a8d97b1bd))
(instances
(project "com-express-7-baseboard"
(path "/1b8c34da-dad5-4b0b-8c4b-45db766c4dfa/50145e18-6fda-4310-8f05-c3e546b9d1d3"
(reference "#PWR0324") (unit 1)
)
)
)
)
(symbol (lib_id "antmicroResistors0402:R_0R_0402") (at 227.33 147.32 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5652a53c-cbb9-4610-9967-e223acb055be)
(property "Reference" "R244" (at 234.95 146.05 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Value" "R_0R_0402" (at 247.65 160.02 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "antmicro-footprints:R_0402_1005Metric" (at 247.65 162.56 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C301.pdf" (at 247.65 165.1 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "ERJ2GE0R00X" (at 247.65 167.64 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Panasonic" (at 247.65 170.18 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 247.65 172.72 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 247.65 175.26 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "0R" (at 226.06 146.05 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Tolerance" "~" (at 247.65 157.48 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Current" "1A" (at 247.65 177.8 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Public" "False" (at 247.65 177.8 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(pin "1" (uuid 5128d2bf-2a18-445d-b04a-312311bba171))
(pin "2" (uuid b2256e5b-1191-4144-806a-c11490b49915))
(instances
(project "com-express-7-baseboard"
(path "/1b8c34da-dad5-4b0b-8c4b-45db766c4dfa/50145e18-6fda-4310-8f05-c3e546b9d1d3"
(reference "R244") (unit 1)
)
)
)
)
(symbol (lib_id "antmicroResistors0402:R_0R_0402") (at 189.23 154.94 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 57b32b5f-1e1d-466e-8357-920cacc80d19)
(property "Reference" "R236" (at 186.69 153.67 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Value" "R_0R_0402" (at 209.55 167.64 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "antmicro-footprints:R_0402_1005Metric" (at 209.55 170.18 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C301.pdf" (at 209.55 172.72 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "ERJ2GE0R00X" (at 209.55 175.26 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Panasonic" (at 209.55 177.8 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 209.55 180.34 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 209.55 182.88 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "0R" (at 195.58 153.67 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Tolerance" "~" (at 209.55 165.1 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Current" "1A" (at 209.55 185.42 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Public" "False" (at 209.55 185.42 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(pin "1" (uuid 57ab60d7-50d3-4c80-b414-190fbc620a8e))
(pin "2" (uuid 96e0f7a0-b599-46bc-9722-91c8a1a6f67a))
(instances
(project "com-express-7-baseboard"
(path "/1b8c34da-dad5-4b0b-8c4b-45db766c4dfa/50145e18-6fda-4310-8f05-c3e546b9d1d3"
(reference "R236") (unit 1)
)
)
)
)
(symbol (lib_id "antmicroResistors0402:R_0R_0402") (at 189.23 139.7 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 656691b9-cd34-4384-b1a6-000477987522)
(property "Reference" "R234" (at 186.69 138.43 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Value" "R_0R_0402" (at 209.55 152.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "antmicro-footprints:R_0402_1005Metric" (at 209.55 154.94 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C301.pdf" (at 209.55 157.48 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "ERJ2GE0R00X" (at 209.55 160.02 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Panasonic" (at 209.55 162.56 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 209.55 165.1 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 209.55 167.64 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "0R" (at 195.58 138.43 0)
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(property "Tolerance" "~" (at 209.55 149.86 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)