-
Notifications
You must be signed in to change notification settings - Fork 9
/
ram.kicad_sch
1312 lines (1277 loc) · 46.6 KB
/
ram.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 87b557c6-d256-4b5d-a9f0-c333e847f872)
(paper "A4")
(title_block
(title "${TITLE}")
(date "${DATE}")
(rev "${VERSION}")
(company "${COPYRIGHT}")
(comment 1 "${LICENSE}")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "support_hardware:S27KS0641" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 20.32 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "S27KS0641" (at 0 -20.32 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "pkl_housings_bga:BGA-24_5x5_6.0x8.0mm" (at 15.24 -22.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.cypress.com/file/183506/download" (at 0 -22.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "S27KS0641_0_1"
(rectangle (start -10.16 19.05) (end 10.16 -19.05)
(stroke (width 0.2032) (type default))
(fill (type background))
)
)
(symbol "S27KS0641_1_1"
(pin passive line (at 15.24 -12.7 180) (length 5.08)
(name "RFU" (effects (font (size 1.27 1.27))))
(number "A2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 2.54 0) (length 5.08)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "A3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 7.62 0) (length 5.08)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "A4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -15.24 180) (length 5.08)
(name "RFU" (effects (font (size 1.27 1.27))))
(number "A5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -2.54 0) (length 5.08)
(name "~{CK}" (effects (font (size 1.27 1.27))))
(number "B1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 0 0) (length 5.08)
(name "CK" (effects (font (size 1.27 1.27))))
(number "B2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -12.7 0) (length 5.08)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "B3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 17.78 0) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "B4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -5.08 0) (length 5.08)
(name "RFU/PSC" (effects (font (size 1.27 1.27))))
(number "B5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -15.24 0) (length 5.08)
(name "VSSQ" (effects (font (size 1.27 1.27))))
(number "C1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -17.78 180) (length 5.08)
(name "RFU" (effects (font (size 1.27 1.27))))
(number "C2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -7.62 180) (length 5.08)
(name "RWDS" (effects (font (size 1.27 1.27))))
(number "C3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 0 180) (length 5.08)
(name "DQ2" (effects (font (size 1.27 1.27))))
(number "C4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -7.62 0) (length 5.08)
(name "RFU/~{PSC}" (effects (font (size 1.27 1.27))))
(number "C5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 15.24 0) (length 5.08)
(name "VCCQ" (effects (font (size 1.27 1.27))))
(number "D1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -2.54 180) (length 5.08)
(name "DQ1" (effects (font (size 1.27 1.27))))
(number "D2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -5.08 180) (length 5.08)
(name "DQ0" (effects (font (size 1.27 1.27))))
(number "D3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 2.54 180) (length 5.08)
(name "DQ3" (effects (font (size 1.27 1.27))))
(number "D4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 5.08 180) (length 5.08)
(name "DQ4" (effects (font (size 1.27 1.27))))
(number "D5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 12.7 180) (length 5.08)
(name "DQ7" (effects (font (size 1.27 1.27))))
(number "E1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 10.16 180) (length 5.08)
(name "DQ6" (effects (font (size 1.27 1.27))))
(number "E2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 7.62 180) (length 5.08)
(name "DQ5" (effects (font (size 1.27 1.27))))
(number "E3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 12.7 0) (length 5.08)
(name "VCCQ" (effects (font (size 1.27 1.27))))
(number "E4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -17.78 0) (length 5.08)
(name "VSSQ" (effects (font (size 1.27 1.27))))
(number "E5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "support_hardware:VCCRAM" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCCRAM" (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 \"VCCRAM\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCCRAM_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 "VCCRAM_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCCRAM" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(bus_alias "HyperRAM" (members "DQ[0..7]" "CK" "~{CK}" "~{CS}" "RWDS" "~{RESET}"))
(junction (at 234.95 99.06) (diameter 0) (color 0 0 0 0)
(uuid 03bceecc-fc6c-47ae-bd46-06cca85c7e04)
)
(junction (at 196.85 88.9) (diameter 0) (color 0 0 0 0)
(uuid 07eefac9-6c08-4b0c-bc29-3850d844ae6e)
)
(junction (at 154.94 118.11) (diameter 0) (color 0 0 0 0)
(uuid 27c319ae-bace-46ea-9974-baab1a09ead9)
)
(junction (at 212.09 99.06) (diameter 0) (color 0 0 0 0)
(uuid 4792e859-88d6-41d4-a344-9860519a6d66)
)
(junction (at 168.91 95.25) (diameter 0) (color 0 0 0 0)
(uuid 51c66097-683a-4ec5-9c09-73fb2340fdcc)
)
(junction (at 234.95 88.9) (diameter 0) (color 0 0 0 0)
(uuid 757db0d2-005a-48bd-bc33-a67adc54bd8a)
)
(junction (at 219.71 99.06) (diameter 0) (color 0 0 0 0)
(uuid 7e38c8c1-e308-4cec-807a-feca99ee6cd8)
)
(junction (at 212.09 88.9) (diameter 0) (color 0 0 0 0)
(uuid 7eba74cf-5643-4b98-81a0-9d7988ea051e)
)
(junction (at 204.47 99.06) (diameter 0) (color 0 0 0 0)
(uuid 8bdfb345-39e4-49de-abf2-0781f1cfb512)
)
(junction (at 154.94 120.65) (diameter 0) (color 0 0 0 0)
(uuid 9d664d75-a606-4ac2-9570-d5a60c3ab9d1)
)
(junction (at 219.71 88.9) (diameter 0) (color 0 0 0 0)
(uuid bb630e1e-a30f-4daa-a308-6733749717e4)
)
(junction (at 154.94 85.09) (diameter 0) (color 0 0 0 0)
(uuid c46dfabe-2013-4758-8c15-f3e49ac3e03d)
)
(junction (at 154.94 87.63) (diameter 0) (color 0 0 0 0)
(uuid d22e76af-fd38-414c-9e59-2bd3b83090bc)
)
(junction (at 227.33 99.06) (diameter 0) (color 0 0 0 0)
(uuid d269a323-b9ee-475a-a1e9-59a60a0eda98)
)
(junction (at 196.85 99.06) (diameter 0) (color 0 0 0 0)
(uuid d55c5222-0494-4c65-8d93-9799b5061fd6)
)
(junction (at 227.33 88.9) (diameter 0) (color 0 0 0 0)
(uuid dbfc802c-2777-4392-a101-99e14df99475)
)
(junction (at 204.47 88.9) (diameter 0) (color 0 0 0 0)
(uuid f3814128-686d-4543-9fd3-acd647464eb0)
)
(no_connect (at 152.4 107.95) (uuid 4d9c1f61-6511-4b47-808a-753eadfec86e))
(no_connect (at 152.4 110.49) (uuid 561c8f82-20ab-49b0-8cc7-75ff5fd53761))
(no_connect (at 121.92 120.65) (uuid 9616c723-9446-4c0b-ba92-1dc6ce0cc57d))
(no_connect (at 121.92 115.57) (uuid e55cebfd-9a7e-4e61-8d76-1abd43c70179))
(no_connect (at 121.92 118.11) (uuid f29f7c10-5556-497b-a7db-09216a5018cf))
(bus_entry (at 85.09 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 099ffb87-8f43-46c8-a387-0921a7338859)
)
(bus_entry (at 95.25 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 1df712ae-05af-4779-a793-66adc15922e7)
)
(bus_entry (at 168.91 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 3d7c5a98-855c-4f7c-914f-95b112274883)
)
(bus_entry (at 105.41 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 49126b56-c03d-4aa8-abfa-45de103472b7)
)
(bus_entry (at 171.45 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 93503dde-c768-4a75-a0c9-0adf258e3c97)
)
(bus_entry (at 166.37 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 9ac9fe84-6729-45b7-9a17-394b9a643e5d)
)
(bus_entry (at 100.33 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 9c5a932d-03b4-4146-9b51-4e921dcf4f20)
)
(bus_entry (at 102.87 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid a3af7d13-a00d-4963-b936-995184b8d1b9)
)
(bus_entry (at 87.63 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid a64597a3-7ce3-4e2c-8d6d-c84a361e2fcf)
)
(bus_entry (at 92.71 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid b7d6c07f-f860-47c5-8907-0ddeb4875c33)
)
(bus_entry (at 173.99 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid e7264576-aed4-4b41-bde5-bfcd73c352fb)
)
(bus_entry (at 90.17 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid eef05d77-4c6d-4916-ac63-b71286390faf)
)
(bus_entry (at 97.79 71.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid fbd1064e-254c-4a16-a965-3765449d1ca9)
)
(bus (pts (xy 90.17 71.12) (xy 92.71 71.12))
(stroke (width 0) (type default))
(uuid 08fb2d16-323e-4a0e-b8f0-efa7a4073108)
)
(wire (pts (xy 196.85 87.63) (xy 196.85 88.9))
(stroke (width 0) (type default))
(uuid 0ab8a6a5-a4f8-4b80-b1d7-9f29aebaa9b2)
)
(wire (pts (xy 196.85 99.06) (xy 196.85 100.33))
(stroke (width 0) (type default))
(uuid 0bcbf03c-b7cd-4b5d-a13b-4d055eff0493)
)
(wire (pts (xy 152.4 95.25) (xy 168.91 95.25))
(stroke (width 0) (type default))
(uuid 0ca910bd-5634-4969-9657-370646eb29e8)
)
(wire (pts (xy 212.09 88.9) (xy 219.71 88.9))
(stroke (width 0) (type default))
(uuid 10d5f293-520a-4e9f-9697-98e9edff6280)
)
(wire (pts (xy 227.33 97.79) (xy 227.33 99.06))
(stroke (width 0) (type default))
(uuid 1454627d-dad0-4c41-a34e-3573bcece96f)
)
(wire (pts (xy 102.87 95.25) (xy 102.87 73.66))
(stroke (width 0) (type default))
(uuid 15462d98-d18a-403c-96a4-b6cf6ad55fa4)
)
(wire (pts (xy 234.95 97.79) (xy 234.95 99.06))
(stroke (width 0) (type default))
(uuid 189ecda7-79cf-4d82-8f18-8404dbb37df2)
)
(wire (pts (xy 168.91 95.25) (xy 168.91 106.68))
(stroke (width 0) (type default))
(uuid 1b874189-1bf8-467d-87ee-44095538388b)
)
(wire (pts (xy 168.91 73.66) (xy 168.91 95.25))
(stroke (width 0) (type default))
(uuid 2085adf2-c0ad-4b9a-b5fb-b7324ebdf62d)
)
(bus (pts (xy 166.37 71.12) (xy 168.91 71.12))
(stroke (width 0) (type default))
(uuid 208c474f-3f77-40d2-8353-29e23d1ff24c)
)
(wire (pts (xy 171.45 73.66) (xy 171.45 100.33))
(stroke (width 0) (type default))
(uuid 232b56eb-e2c4-49c2-af03-3c2542ed8304)
)
(bus (pts (xy 100.33 71.12) (xy 102.87 71.12))
(stroke (width 0) (type default))
(uuid 26f399bb-ebc4-4aa9-ad6e-9a5317804b82)
)
(wire (pts (xy 154.94 87.63) (xy 154.94 90.17))
(stroke (width 0) (type default))
(uuid 2f205dc7-02f2-415f-be0b-e56fbdf1e239)
)
(wire (pts (xy 154.94 85.09) (xy 154.94 87.63))
(stroke (width 0) (type default))
(uuid 3cf4132c-ede3-4cb3-a685-dbfdd72dff0c)
)
(wire (pts (xy 154.94 118.11) (xy 154.94 120.65))
(stroke (width 0) (type default))
(uuid 3d68b65a-c231-49c0-9d2d-06a67fbee122)
)
(wire (pts (xy 152.4 100.33) (xy 171.45 100.33))
(stroke (width 0) (type default))
(uuid 418c8961-22b5-4008-9586-91bd40ae9e13)
)
(wire (pts (xy 227.33 88.9) (xy 234.95 88.9))
(stroke (width 0) (type default))
(uuid 4403239b-b0a0-4f4f-8e29-cfd5d8bdd022)
)
(wire (pts (xy 121.92 97.79) (xy 100.33 97.79))
(stroke (width 0) (type default))
(uuid 454b5fbf-c246-45fa-bd06-17a6e3b7ef21)
)
(wire (pts (xy 204.47 88.9) (xy 204.47 90.17))
(stroke (width 0) (type default))
(uuid 45992126-516d-4cda-8881-5cee799d7b2b)
)
(wire (pts (xy 90.17 107.95) (xy 90.17 73.66))
(stroke (width 0) (type default))
(uuid 4888f5fa-91a8-4c55-b254-a84742f938c2)
)
(wire (pts (xy 168.91 114.3) (xy 168.91 115.57))
(stroke (width 0) (type default))
(uuid 4a473f32-eeae-4495-87dc-9375fd736930)
)
(bus (pts (xy 171.45 71.12) (xy 173.99 71.12))
(stroke (width 0) (type default))
(uuid 4ca29b4b-987f-46ae-a35f-f2fbf0e78940)
)
(wire (pts (xy 173.99 73.66) (xy 173.99 102.87))
(stroke (width 0) (type default))
(uuid 4ef7e0c1-a02f-4bf6-ad2a-9894c74934b7)
)
(wire (pts (xy 152.4 85.09) (xy 154.94 85.09))
(stroke (width 0) (type default))
(uuid 519a315c-f9ca-4361-a65f-9b57b1a9c0a8)
)
(wire (pts (xy 176.53 73.66) (xy 176.53 105.41))
(stroke (width 0) (type default))
(uuid 52d49810-42e8-4a7f-a091-ce2ae90a5c1e)
)
(wire (pts (xy 196.85 88.9) (xy 196.85 90.17))
(stroke (width 0) (type default))
(uuid 5a0d9b77-812a-4127-969e-56e467610dbb)
)
(wire (pts (xy 219.71 99.06) (xy 212.09 99.06))
(stroke (width 0) (type default))
(uuid 5aa40bf4-83ec-4211-829e-34edbbe1e38b)
)
(wire (pts (xy 121.92 102.87) (xy 95.25 102.87))
(stroke (width 0) (type default))
(uuid 5b861d9f-e137-4b2e-97d7-45240372613b)
)
(wire (pts (xy 92.71 105.41) (xy 92.71 73.66))
(stroke (width 0) (type default))
(uuid 5d45c479-3e12-41c1-85ef-abc500f95472)
)
(bus (pts (xy 85.09 71.12) (xy 87.63 71.12))
(stroke (width 0) (type default))
(uuid 5e570d0e-1eba-4063-ab25-be8670f3600d)
)
(wire (pts (xy 196.85 88.9) (xy 204.47 88.9))
(stroke (width 0) (type default))
(uuid 5f369707-e816-48a1-8a8e-e8ecfe4de0da)
)
(wire (pts (xy 219.71 97.79) (xy 219.71 99.06))
(stroke (width 0) (type default))
(uuid 65c27cfd-f819-4399-89c4-c40daa693e76)
)
(wire (pts (xy 196.85 99.06) (xy 204.47 99.06))
(stroke (width 0) (type default))
(uuid 65eb69e5-f579-4e6a-88c6-2a92db01a92f)
)
(wire (pts (xy 219.71 88.9) (xy 227.33 88.9))
(stroke (width 0) (type default))
(uuid 669fea74-5b3b-4277-a3cb-1c3ca6f27012)
)
(wire (pts (xy 154.94 85.09) (xy 154.94 82.55))
(stroke (width 0) (type default))
(uuid 66cc14f5-af02-4c53-99b6-08170d4fdd63)
)
(wire (pts (xy 152.4 115.57) (xy 154.94 115.57))
(stroke (width 0) (type default))
(uuid 67e9fa16-5f9e-4e9d-ae74-eaf612d213a3)
)
(wire (pts (xy 152.4 102.87) (xy 173.99 102.87))
(stroke (width 0) (type default))
(uuid 74ba4938-d6ea-4ca4-b966-ea315a30a869)
)
(wire (pts (xy 152.4 87.63) (xy 154.94 87.63))
(stroke (width 0) (type default))
(uuid 74bec1b5-4acf-411f-aa77-7e0b4966d25a)
)
(wire (pts (xy 227.33 90.17) (xy 227.33 88.9))
(stroke (width 0) (type default))
(uuid 7708edab-4179-4982-a157-6c9c12db2644)
)
(wire (pts (xy 234.95 90.17) (xy 234.95 88.9))
(stroke (width 0) (type default))
(uuid 7ac57a37-f5ae-4f83-ae73-53e85ab06290)
)
(wire (pts (xy 154.94 120.65) (xy 154.94 123.19))
(stroke (width 0) (type default))
(uuid 7b13e920-8763-40d7-b771-9060ec12e7b7)
)
(wire (pts (xy 121.92 110.49) (xy 87.63 110.49))
(stroke (width 0) (type default))
(uuid 821ce932-b221-43c0-9427-0386be7df598)
)
(bus (pts (xy 92.71 71.12) (xy 95.25 71.12))
(stroke (width 0) (type default))
(uuid 82785ad4-673e-4bae-a1f3-b84d4b1d3fd3)
)
(bus (pts (xy 82.55 71.12) (xy 85.09 71.12))
(stroke (width 0) (type default))
(uuid 889e77aa-46ec-43eb-8b43-d518b3edcd9f)
)
(wire (pts (xy 105.41 92.71) (xy 121.92 92.71))
(stroke (width 0) (type default))
(uuid 8bc319f9-8f2b-42c9-9140-caeed8f69eb7)
)
(wire (pts (xy 219.71 88.9) (xy 219.71 90.17))
(stroke (width 0) (type default))
(uuid 8e203436-ade9-4a86-a446-0aaf3a84e7cd)
)
(wire (pts (xy 121.92 107.95) (xy 90.17 107.95))
(stroke (width 0) (type default))
(uuid 906aeccd-099c-4c71-8aaf-9127085e9c62)
)
(bus (pts (xy 102.87 71.12) (xy 105.41 71.12))
(stroke (width 0) (type default))
(uuid 914b2328-4ccb-423e-b51f-d2d5c19e8011)
)
(wire (pts (xy 121.92 95.25) (xy 102.87 95.25))
(stroke (width 0) (type default))
(uuid 9affca60-bafd-4e68-8fef-43c0ee56c602)
)
(wire (pts (xy 204.47 99.06) (xy 204.47 97.79))
(stroke (width 0) (type default))
(uuid 9d419236-4c02-4dea-a440-db718cad3376)
)
(wire (pts (xy 212.09 99.06) (xy 212.09 97.79))
(stroke (width 0) (type default))
(uuid a547b8bf-bca0-4bea-8dc7-11ed062b5cf1)
)
(wire (pts (xy 154.94 120.65) (xy 152.4 120.65))
(stroke (width 0) (type default))
(uuid a805bda6-19f7-46a0-8ee8-d27fb4be7f2c)
)
(wire (pts (xy 100.33 97.79) (xy 100.33 73.66))
(stroke (width 0) (type default))
(uuid a826882b-16c3-490a-b7fd-8bf0478da663)
)
(wire (pts (xy 95.25 102.87) (xy 95.25 73.66))
(stroke (width 0) (type default))
(uuid a9556a78-f01f-4412-be33-cdf4b58369a5)
)
(wire (pts (xy 234.95 88.9) (xy 242.57 88.9))
(stroke (width 0) (type default))
(uuid b0f9530a-017e-4122-8e12-7fa140b57f2d)
)
(wire (pts (xy 242.57 97.79) (xy 242.57 99.06))
(stroke (width 0) (type default))
(uuid b1a37d8c-0baf-4aab-8ac2-222f1373aaa4)
)
(wire (pts (xy 242.57 88.9) (xy 242.57 90.17))
(stroke (width 0) (type default))
(uuid b1d9b7f8-d992-4e34-bd48-889eeca67baa)
)
(wire (pts (xy 196.85 97.79) (xy 196.85 99.06))
(stroke (width 0) (type default))
(uuid b4a6ad59-9a9a-4086-a484-ffb0e3d2c97e)
)
(wire (pts (xy 212.09 88.9) (xy 212.09 90.17))
(stroke (width 0) (type default))
(uuid b4f8fc42-4973-400d-899a-5a1b65d55386)
)
(bus (pts (xy 97.79 71.12) (xy 100.33 71.12))
(stroke (width 0) (type default))
(uuid b6ca4242-7426-41c0-8683-6ea1076b9c2e)
)
(wire (pts (xy 107.95 73.66) (xy 107.95 90.17))
(stroke (width 0) (type default))
(uuid b7c25f9f-564e-48cf-a210-c84bc7593c18)
)
(wire (pts (xy 204.47 99.06) (xy 212.09 99.06))
(stroke (width 0) (type default))
(uuid b7d2026d-d096-4e9e-b8a8-6d614f9d9491)
)
(bus (pts (xy 95.25 71.12) (xy 97.79 71.12))
(stroke (width 0) (type default))
(uuid bb01c616-6efb-4fed-bdcb-a0a815a1ef98)
)
(wire (pts (xy 121.92 90.17) (xy 107.95 90.17))
(stroke (width 0) (type default))
(uuid bbe545f6-fc11-4834-afe9-a7e4faee3332)
)
(wire (pts (xy 204.47 88.9) (xy 212.09 88.9))
(stroke (width 0) (type default))
(uuid bd60c684-fb09-4753-9073-fa5ce58ef14a)
)
(wire (pts (xy 97.79 100.33) (xy 97.79 73.66))
(stroke (width 0) (type default))
(uuid be150d0b-f2e9-4a17-8684-cd5ab94e2574)
)
(wire (pts (xy 152.4 118.11) (xy 154.94 118.11))
(stroke (width 0) (type default))
(uuid c75445e3-a326-4517-b833-a374ffc48e67)
)
(wire (pts (xy 105.41 92.71) (xy 105.41 73.66))
(stroke (width 0) (type default))
(uuid c7ffc4f2-88ed-405c-ab09-0791ae74886a)
)
(bus (pts (xy 105.41 71.12) (xy 166.37 71.12))
(stroke (width 0) (type default))
(uuid cc558182-b628-44ba-82ab-d5b3b541dc51)
)
(wire (pts (xy 121.92 100.33) (xy 97.79 100.33))
(stroke (width 0) (type default))
(uuid d00b82f0-8391-47d0-b862-6950d205ad03)
)
(wire (pts (xy 234.95 99.06) (xy 227.33 99.06))
(stroke (width 0) (type default))
(uuid d06f1295-9bc9-4b89-850a-dd10e453f899)
)
(wire (pts (xy 87.63 110.49) (xy 87.63 73.66))
(stroke (width 0) (type default))
(uuid d31cfac1-0e23-44ab-abec-8d47f47af8fd)
)
(wire (pts (xy 227.33 99.06) (xy 219.71 99.06))
(stroke (width 0) (type default))
(uuid d8964260-ac4e-4461-ad32-a77bd7128195)
)
(wire (pts (xy 152.4 105.41) (xy 176.53 105.41))
(stroke (width 0) (type default))
(uuid e080ab1d-95f0-4fdc-bad7-1a5902cee48d)
)
(wire (pts (xy 242.57 99.06) (xy 234.95 99.06))
(stroke (width 0) (type default))
(uuid e4c2f767-03e9-4f12-9de7-9b3472ba50dd)
)
(wire (pts (xy 154.94 115.57) (xy 154.94 118.11))
(stroke (width 0) (type default))
(uuid e5f2ad35-b2ff-4ce0-a8ce-e24fbcd87673)
)
(wire (pts (xy 154.94 90.17) (xy 152.4 90.17))
(stroke (width 0) (type default))
(uuid e80af702-8aba-4b5a-be12-787e95085dcd)
)
(bus (pts (xy 87.63 71.12) (xy 90.17 71.12))
(stroke (width 0) (type default))
(uuid e8bcdebc-eb2c-4b34-90bc-dbbbc5229a25)
)
(wire (pts (xy 121.92 105.41) (xy 92.71 105.41))
(stroke (width 0) (type default))
(uuid ebbd4d45-0ea8-4b67-a071-6e7ffe366fd6)
)
(bus (pts (xy 168.91 71.12) (xy 171.45 71.12))
(stroke (width 0) (type default))
(uuid fa5e7874-da3b-40a9-962c-8b8df35f7f2c)
)
(label "RAM.DQ3" (at 110.49 100.33 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 21cfa832-db46-4112-b3c8-8a5b0a8e91dc)
)
(label "RAM.DQ4" (at 110.49 97.79 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 224bd06e-48dd-4079-92ce-3c10457d7574)
)
(label "RAM.DQ5" (at 110.49 95.25 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3ff39848-05d1-4949-acdd-02f2c96b164b)
)
(label "RAM.DQ0" (at 110.49 107.95 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 585d8f42-72d6-4778-b4e5-748e507aa290)
)
(label "RAM.DQ6" (at 110.49 92.71 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5dcce56c-782a-447e-94c6-fb93c880c456)
)
(label "RAM.~{CS}" (at 156.21 100.33 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6f06efad-a1a7-4ee2-9050-1c2603f2e76a)
)
(label "RAM.~{RESET}" (at 156.21 95.25 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 82e4db01-07f7-4d64-94f3-17fc7b6f0fdf)
)
(label "RAM.RWDS" (at 110.49 110.49 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid bcda1da3-5f68-4643-bc9e-35811d5359f9)
)
(label "RAM.CK" (at 156.21 102.87 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c52ecfa7-7a96-4207-afe2-e8f6a90bb811)
)
(label "RAM.~{CK}" (at 156.21 105.41 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid daa3de6e-6cda-4496-ba99-271cfcdc78a0)
)
(label "RAM.DQ7" (at 110.49 90.17 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e2a6d4b5-6bd6-40b4-bfae-08e8bfa50f5b)
)
(label "RAM.DQ2" (at 110.49 102.87 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f093f604-d565-474c-8294-976b42462b07)
)
(label "RAM.DQ1" (at 110.49 105.41 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f8f56800-678b-43f2-b3a3-5ca750e33500)
)
(hierarchical_label "RAM{HyperRAM}" (shape bidirectional) (at 82.55 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e2eca09d-d862-4650-8b5f-aee96b5a292b)
)
(symbol (lib_id "support_hardware:S27KS0641") (at 137.16 102.87 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005dea1fc4)
(property "Reference" "U10" (at 137.16 79.4512 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "HyperRAM" (at 137.16 81.7372 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "cynthion:BGA-24_5x5_6.0x8.0mm" (at 121.92 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.winbond.com/resource-files/W956x8MBYA_64Mb_HyperBus_pSRAM_TFBGA24_datasheet_A01-002_20191113.pdf" (at 137.16 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "DRAM 64Mb HyperRAM x8, 166MHz, Ind temp, 3.0V" (at 137.16 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Winbond" (at 137.16 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Number" "W956A8MBYA6I" (at 137.16 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Substitution" "W956A8MBYA5I, Infineon S27KL0642DPBHI020" (at 137.16 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "A2" (uuid d56d4612-7b43-4e5e-8bf6-62449c6e6c99))
(pin "A3" (uuid 5b10ae3a-c0a7-4929-bff7-9702111e3f3b))
(pin "A4" (uuid cad2098b-ceb5-43a6-8856-df428480c71d))
(pin "A5" (uuid 0f06dd09-5b9a-457a-97a2-d8e7f8f6c18c))
(pin "B1" (uuid acd587a9-6c37-4855-9dea-b21729fcdcd4))
(pin "B2" (uuid 065df253-9e1f-4ac5-b16f-fcef23d89bd6))
(pin "B3" (uuid efadb999-e83e-422e-a654-da66ef349150))
(pin "B4" (uuid ecd04480-c511-4b48-a281-b9657b996c70))
(pin "B5" (uuid 704df1af-8cee-422d-97c7-3510254a5bc5))
(pin "C1" (uuid ee8cea02-8272-4702-a4c8-4a248eb384ee))
(pin "C2" (uuid 6a8dd238-99dd-499d-9e72-8b41a1b7d730))
(pin "C3" (uuid 5a9ba8a4-a991-4bfe-a2a5-bdfbd8cb2f26))
(pin "C4" (uuid 56176163-a33a-4b78-be0d-674174e2fb51))
(pin "C5" (uuid 7f28bdeb-79c9-440a-8bea-64a61e148f3c))
(pin "D1" (uuid abd9eb13-5cdc-4dc2-8f42-21fbc2a58199))
(pin "D2" (uuid cbebd088-7dad-4446-b5cc-e8c65dac0ec4))
(pin "D3" (uuid ecedc470-1fbc-4e6c-9a96-e0dad4bcce97))
(pin "D4" (uuid 4c2e1160-b3ba-4af4-b4be-89aa65a67cd9))
(pin "D5" (uuid 62b77867-d8d8-4823-af84-2e5d77de48b6))
(pin "E1" (uuid 0351c68c-1533-41f9-9408-9ba8f3596cdc))
(pin "E2" (uuid 6c994c17-4c0b-40ba-86aa-5ec3a1009d11))
(pin "E3" (uuid c58cbcdf-d07c-4be6-9bc4-045ed4fced1d))
(pin "E4" (uuid a76abac3-51fa-4b66-aee4-4a1f600a3bc3))
(pin "E5" (uuid 47ab3f67-78e7-4daa-8a6f-36d0765b2b7a))
(instances
(project "cynthion"
(path "/fb621148-8145-4217-9712-738e1b5a4823/00000000-0000-0000-0000-00005de77fe3"
(reference "U10") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 154.94 123.19 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005dea82d8)
(property "Reference" "#PWR085" (at 154.94 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 155.0416 127.5588 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 154.94 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 154.94 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fb21000c-4e8e-4188-a549-0028df0d5c24))
(instances
(project "cynthion"
(path "/fb621148-8145-4217-9712-738e1b5a4823/00000000-0000-0000-0000-00005de77fe3"
(reference "#PWR085") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 212.09 93.98 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0586eaf9-86dc-4bf5-b69b-c41863fae58e)
(property "Reference" "C64" (at 213.36 91.44 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0.1uF" (at 213.36 96.52 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 213.0552 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 212.09 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Number" "CL05A104KA5NNNC" (at 212.09 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Substitution" "any equivalent" (at 212.09 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "CAP CER 0.1UF 25V X5R 0402" (at 212.09 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Samsung" (at 212.09 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8a55a5ec-caaa-4521-82a8-bacd82b92284))
(pin "2" (uuid bf50b61b-5c07-44cb-8fba-f37028c5e1b3))
(instances
(project "cynthion"
(path "/fb621148-8145-4217-9712-738e1b5a4823/00000000-0000-0000-0000-00005de77fe3"
(reference "C64") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 242.57 93.98 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2da01652-d99b-4a99-8b9b-50607767fccb)
(property "Reference" "C21" (at 243.84 91.44 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (at 243.84 96.52 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 243.5352 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 242.57 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Number" "CL05A105MQ5NNNC" (at 242.57 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Substitution" "CL05A105KQ5NNNC, CL05A105KP5NNNC, CL05A105KO5NNNC" (at 242.57 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Samsung" (at 242.57 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "CAP CER 1UF 6.3V X5R 0402 20%" (at 242.57 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 909e7d28-9523-4874-a075-eaaf7a6e3976))
(pin "2" (uuid 02e70691-7fd1-40e8-b894-6344ad8372ff))
(instances
(project "cynthion"
(path "/fb621148-8145-4217-9712-738e1b5a4823/00000000-0000-0000-0000-00005de77fe3"
(reference "C21") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 196.85 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3cb32827-2bfd-4b89-85cd-0d8e3a206e4e)
(property "Reference" "#PWR0145" (at 196.85 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 196.9516 104.6988 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 196.85 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 196.85 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3cc77669-8625-49af-afe4-4ce7e81a99d8))