-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboard_sierra.sch
8670 lines (8670 loc) · 195 KB
/
board_sierra.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
EESchema Schematic File Version 4
EELAYER 30 0
EELAYER END
$Descr A2 23386 16535
encoding utf-8
Sheet 1 1
Title "VST104 single OBCboard"
Date "2021-03-03"
Rev "1.1"
Comp "Vision Space Technologies"
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
Wire Notes Line width 10
20000 8500 20000 14500
$Comp
L Connector_Generic:Conn_02x26_Odd_Even H2
U 1 1 5C2F526D
P 20950 12900
F 0 "H2" H 21000 14200 50 0000 C CNN
F 1 "Conn_02x26_Odd_Even" H 21000 11500 50 0001 C CNN
F 2 "VST104_footprints:ESQ-126-39-x-D" H 20950 12900 50 0001 C CNN
F 3 "https://www.mouser.sk/datasheet/2/527/esq_th-1369982.pdf" H 20950 12900 50 0001 C CNN
1 20950 12900
1 0 0 -1
$EndComp
$Comp
L Connector_Generic:Conn_02x26_Odd_Even H1
U 1 1 5C4C195F
P 20950 9950
F 0 "H1" H 21000 11250 50 0000 C CNN
F 1 "Conn_02x26_Odd_Even" H 21000 8550 50 0001 C CNN
F 2 "VST104_footprints:ESQ-126-39-x-D" H 20950 9950 50 0001 C CNN
F 3 "https://www.mouser.sk/datasheet/2/527/esq_th-1369982.pdf" H 20950 9950 50 0001 C CNN
1 20950 9950
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR053
U 1 1 670BF8CE
P 10800 4800
F 0 "#PWR053" H 10800 4550 50 0001 C CNN
F 1 "GND" H 10805 4627 50 0000 C CNN
F 2 "" H 10800 4800 50 0001 C CNN
F 3 "" H 10800 4800 50 0001 C CNN
1 10800 4800
-1 0 0 1
$EndComp
$Comp
L VST104:DGQ2788A AS7
U 1 1 670BF8D4
P 10050 6350
F 0 "AS7" H 10100 6300 50 0000 C CNN
F 1 "DGQ2788A" H 10450 6300 50 0000 C CNN
F 2 "VST104_footprints:mini_QFN-16-1.8x2.6mm" H 10350 6300 50 0001 C CNN
F 3 "https://www.vishay.com/docs/75683/dgq2788a.pdf" H 10350 6300 50 0001 C CNN
1 10050 6350
1 0 0 -1
$EndComp
$Comp
L Device:C C29
U 1 1 670BF8DA
P 10350 4800
F 0 "C29" V 10300 4650 50 0000 C CNN
F 1 "10n" V 10300 4950 50 0000 C CNN
F 2 "VST104_footprints:C_SMD_0402" H 10388 4650 50 0001 C CNN
F 3 "~" H 10350 4800 50 0001 C CNN
1 10350 4800
0 1 1 0
$EndComp
Wire Wire Line
10200 4800 9900 4800
Wire Wire Line
9900 4800 9900 5000
Wire Wire Line
9900 5000 9950 5000
Wire Wire Line
10500 4800 10800 4800
Wire Wire Line
10800 4800 10800 5000
Wire Wire Line
10800 5000 10750 5000
Connection ~ 10800 4800
Wire Wire Line
9700 5150 9950 5150
Wire Wire Line
9950 5600 9900 5600
Wire Wire Line
9900 5600 9900 5450
Wire Wire Line
9900 5450 9450 5450
Wire Wire Line
9950 6000 9850 6000
Wire Wire Line
9850 6000 9850 5550
Wire Wire Line
9850 5550 9450 5550
Wire Wire Line
9950 6250 9800 6250
Wire Wire Line
9800 6250 9800 5650
Wire Wire Line
9800 5650 9450 5650
Wire Wire Line
9450 5350 9950 5350
Wire Wire Line
9450 5150 9700 5150
Connection ~ 9700 5150
NoConn ~ 10750 5300
NoConn ~ 10750 5550
NoConn ~ 10750 5950
NoConn ~ 10750 6200
Wire Wire Line
10750 6050 10850 6050
Wire Wire Line
10850 6050 10850 5600
Wire Wire Line
10850 5600 11050 5600
Wire Wire Line
10750 6300 10900 6300
Wire Wire Line
10900 6300 10900 5700
Wire Wire Line
10900 5700 11050 5700
Wire Wire Line
10750 5400 11050 5400
Wire Wire Line
10750 5650 10800 5650
Wire Wire Line
10800 5650 10800 5500
Wire Wire Line
10800 5500 11050 5500
$Comp
L Device:R R19
U 1 1 8E2670C8
P 9700 4950
F 0 "R19" V 9800 5050 50 0000 R CNN
F 1 "100k" V 9600 5050 50 0000 R CNN
F 2 "VST104_footprints:R_SMD_0402" V 9630 4950 50 0001 C CNN
F 3 "~" H 9700 4950 50 0001 C CNN
1 9700 4950
-1 0 0 1
$EndComp
$Comp
L power:GND #PWR039
U 1 1 8E2670CE
P 9700 4800
F 0 "#PWR039" H 9700 4550 50 0001 C CNN
F 1 "GND" H 9705 4627 50 0000 C CNN
F 2 "" H 9700 4800 50 0001 C CNN
F 3 "" H 9700 4800 50 0001 C CNN
1 9700 4800
-1 0 0 1
$EndComp
Wire Wire Line
9700 5100 9700 5150
$Comp
L VST104:DGQ2788A AS12
U 1 1 6DEF767B
P 14050 13350
F 0 "AS12" H 14100 13300 50 0000 C CNN
F 1 "DGQ2788A" H 14450 13300 50 0000 C CNN
F 2 "VST104_footprints:mini_QFN-16-1.8x2.6mm" H 14350 13300 50 0001 C CNN
F 3 "https://www.vishay.com/docs/75683/dgq2788a.pdf" H 14350 13300 50 0001 C CNN
1 14050 13350
1 0 0 -1
$EndComp
$Comp
L Device:C C47
U 1 1 6DEF7681
P 14350 11800
F 0 "C47" V 14300 11650 50 0000 C CNN
F 1 "10n" V 14300 11950 50 0000 C CNN
F 2 "VST104_footprints:C_SMD_0402" H 14388 11650 50 0001 C CNN
F 3 "~" H 14350 11800 50 0001 C CNN
1 14350 11800
0 1 1 0
$EndComp
$Comp
L Device:R R33
U 1 1 8E9B7D65
P 13700 11950
F 0 "R33" V 13800 12050 50 0000 R CNN
F 1 "100k" V 13600 12050 50 0000 R CNN
F 2 "VST104_footprints:R_SMD_0402" V 13630 11950 50 0001 C CNN
F 3 "~" H 13700 11950 50 0001 C CNN
1 13700 11950
-1 0 0 1
$EndComp
Wire Wire Line
16700 12100 16700 12150
$Comp
L power:GND #PWR0116
U 1 1 8F41881A
P 16700 11800
F 0 "#PWR0116" H 16700 11550 50 0001 C CNN
F 1 "GND" H 16705 11627 50 0000 C CNN
F 2 "" H 16700 11800 50 0001 C CNN
F 3 "" H 16700 11800 50 0001 C CNN
1 16700 11800
-1 0 0 1
$EndComp
$Comp
L Device:R R48
U 1 1 8F418814
P 16700 11950
F 0 "R48" V 16800 12050 50 0000 R CNN
F 1 "100k" V 16600 12050 50 0000 R CNN
F 2 "VST104_footprints:R_SMD_0402" V 16630 11950 50 0001 C CNN
F 3 "~" H 16700 11950 50 0001 C CNN
1 16700 11950
-1 0 0 1
$EndComp
Wire Wire Line
16900 11800 16900 12000
Wire Wire Line
17800 11800 17800 12000
Wire Wire Line
17800 12500 18050 12500
Wire Wire Line
17800 12650 17800 12500
Wire Wire Line
17750 12650 17800 12650
Wire Wire Line
17750 12400 18050 12400
Wire Wire Line
17900 12700 18050 12700
Wire Wire Line
17900 13300 17900 12700
Wire Wire Line
17750 13300 17900 13300
Wire Wire Line
17850 12600 18050 12600
Wire Wire Line
17850 13050 17850 12600
Wire Wire Line
17750 13050 17850 13050
NoConn ~ 17750 13200
NoConn ~ 17750 12950
NoConn ~ 17750 12550
NoConn ~ 17750 12300
Connection ~ 16700 12150
Wire Wire Line
16450 12150 16700 12150
Wire Wire Line
16450 12350 16950 12350
Wire Wire Line
16800 12650 16450 12650
Wire Wire Line
16800 13250 16800 12650
Wire Wire Line
16950 13250 16800 13250
Wire Wire Line
16850 12550 16450 12550
Wire Wire Line
16850 13000 16850 12550
Wire Wire Line
16950 13000 16850 13000
Wire Wire Line
16900 12450 16450 12450
Wire Wire Line
16900 12600 16900 12450
Wire Wire Line
16950 12600 16900 12600
Wire Wire Line
16700 12150 16950 12150
Wire Wire Line
16700 12800 16700 12150
Wire Wire Line
16950 12800 16700 12800
Connection ~ 17800 11800
Wire Wire Line
17800 12000 17750 12000
Wire Wire Line
17500 11800 17800 11800
Wire Wire Line
16900 12000 16950 12000
Wire Wire Line
17200 11800 16900 11800
$Comp
L Device:C C53
U 1 1 6DEF7647
P 17350 11800
F 0 "C53" V 17300 11650 50 0000 C CNN
F 1 "10n" V 17300 11950 50 0000 C CNN
F 2 "VST104_footprints:C_SMD_0402" H 17388 11650 50 0001 C CNN
F 3 "~" H 17350 11800 50 0001 C CNN
1 17350 11800
0 1 1 0
$EndComp
$Comp
L VST104:DGQ2788A AS14
U 1 1 6DEF7641
P 17050 13350
F 0 "AS14" H 17100 13300 50 0000 C CNN
F 1 "DGQ2788A" H 17450 13300 50 0000 C CNN
F 2 "VST104_footprints:mini_QFN-16-1.8x2.6mm" H 17350 13300 50 0001 C CNN
F 3 "https://www.vishay.com/docs/75683/dgq2788a.pdf" H 17350 13300 50 0001 C CNN
1 17050 13350
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR0127
U 1 1 6DEF763A
P 17800 11800
F 0 "#PWR0127" H 17800 11550 50 0001 C CNN
F 1 "GND" H 17805 11627 50 0000 C CNN
F 2 "" H 17800 11800 50 0001 C CNN
F 3 "" H 17800 11800 50 0001 C CNN
1 17800 11800
-1 0 0 1
$EndComp
Wire Wire Line
13700 12800 13700 12150
Wire Wire Line
13950 12800 13700 12800
Wire Wire Line
13700 12150 13950 12150
Wire Wire Line
13700 14150 13950 14150
Wire Wire Line
13950 14600 13900 14600
Wire Wire Line
13900 14600 13900 14450
Wire Wire Line
13900 14450 13450 14450
Wire Wire Line
13950 15000 13850 15000
Wire Wire Line
13850 15000 13850 14550
Wire Wire Line
13850 14550 13450 14550
Wire Wire Line
13800 15250 13800 14650
Wire Wire Line
13800 14650 13450 14650
Wire Wire Line
13950 15250 13800 15250
Connection ~ 13700 12150
Wire Wire Line
13700 14100 13700 14150
$Comp
L power:GND #PWR087
U 1 1 8E83F8CA
P 13700 13800
F 0 "#PWR087" H 13700 13550 50 0001 C CNN
F 1 "GND" H 13705 13627 50 0000 C CNN
F 2 "" H 13700 13800 50 0001 C CNN
F 3 "" H 13700 13800 50 0001 C CNN
1 13700 13800
-1 0 0 1
$EndComp
$Comp
L Device:R R34
U 1 1 8E83F8C4
P 13700 13950
F 0 "R34" V 13800 14050 50 0000 R CNN
F 1 "100k" V 13600 14050 50 0000 R CNN
F 2 "VST104_footprints:R_SMD_0402" V 13630 13950 50 0001 C CNN
F 3 "~" H 13700 13950 50 0001 C CNN
1 13700 13950
-1 0 0 1
$EndComp
Wire Wire Line
13700 12100 13700 12150
$Comp
L power:GND #PWR086
U 1 1 8E6C7F80
P 13700 11800
F 0 "#PWR086" H 13700 11550 50 0001 C CNN
F 1 "GND" H 13705 11627 50 0000 C CNN
F 2 "" H 13700 11800 50 0001 C CNN
F 3 "" H 13700 11800 50 0001 C CNN
1 13700 11800
-1 0 0 1
$EndComp
Text Notes 13500 11450 0 65 ~ 13
RCS UART isolators
Wire Notes Line width 10
15000 11500 13500 11500
Wire Notes Line width 10
13500 11500 13500 15500
Wire Wire Line
14800 12500 15050 12500
Wire Wire Line
14800 12650 14800 12500
Wire Wire Line
14750 12650 14800 12650
Wire Wire Line
14750 12400 15050 12400
Wire Wire Line
14800 14500 15050 14500
Wire Wire Line
14800 14650 14800 14500
Wire Wire Line
14750 14650 14800 14650
Wire Wire Line
14750 14400 15050 14400
Wire Notes Line width 10
13500 15500 15000 15500
Wire Wire Line
14900 14700 15050 14700
Wire Wire Line
14900 15300 14900 14700
Wire Wire Line
14750 15300 14900 15300
Wire Wire Line
14850 14600 15050 14600
Wire Wire Line
14850 15050 14850 14600
Wire Wire Line
14750 15050 14850 15050
NoConn ~ 14750 15200
NoConn ~ 14750 14950
NoConn ~ 14750 14550
NoConn ~ 14750 14300
Connection ~ 13700 14150
Wire Wire Line
13450 14150 13700 14150
Wire Wire Line
13450 14350 13950 14350
Wire Wire Line
13700 14800 13700 14150
Wire Wire Line
13950 14800 13700 14800
Connection ~ 14800 13800
Wire Wire Line
14800 14000 14750 14000
Wire Wire Line
14800 13800 14800 14000
Wire Wire Line
14500 13800 14800 13800
Wire Wire Line
13900 14000 13950 14000
Wire Wire Line
13900 13800 13900 14000
$Comp
L Device:C C48
U 1 1 6753555C
P 14350 13800
F 0 "C48" V 14300 13650 50 0000 C CNN
F 1 "10n" V 14300 13950 50 0000 C CNN
F 2 "VST104_footprints:C_SMD_0402" H 14388 13650 50 0001 C CNN
F 3 "~" H 14350 13800 50 0001 C CNN
1 14350 13800
0 1 1 0
$EndComp
$Comp
L VST104:DGQ2788A AS13
U 1 1 67535556
P 14050 15350
F 0 "AS13" H 14100 15300 50 0000 C CNN
F 1 "DGQ2788A" H 14450 15300 50 0000 C CNN
F 2 "VST104_footprints:mini_QFN-16-1.8x2.6mm" H 14350 15300 50 0001 C CNN
F 3 "https://www.vishay.com/docs/75683/dgq2788a.pdf" H 14350 15300 50 0001 C CNN
1 14050 15350
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR0110
U 1 1 67535550
P 14800 13800
F 0 "#PWR0110" H 14800 13550 50 0001 C CNN
F 1 "GND" H 14805 13627 50 0000 C CNN
F 2 "" H 14800 13800 50 0001 C CNN
F 3 "" H 14800 13800 50 0001 C CNN
1 14800 13800
-1 0 0 1
$EndComp
Wire Wire Line
14900 12700 15050 12700
Wire Wire Line
14900 13300 14900 12700
Wire Wire Line
14750 13300 14900 13300
Wire Wire Line
14850 12600 15050 12600
Wire Wire Line
14850 13050 14850 12600
Wire Wire Line
14750 13050 14850 13050
NoConn ~ 14750 13200
NoConn ~ 14750 12950
NoConn ~ 14750 12550
NoConn ~ 14750 12300
Wire Wire Line
13450 12150 13700 12150
Wire Wire Line
13450 12350 13950 12350
Wire Wire Line
13800 12650 13450 12650
Wire Wire Line
13800 13250 13800 12650
Wire Wire Line
13950 13250 13800 13250
Wire Wire Line
13850 12550 13450 12550
Wire Wire Line
13850 13000 13850 12550
Wire Wire Line
13950 13000 13850 13000
Wire Wire Line
13900 12450 13450 12450
Wire Wire Line
13900 12600 13900 12450
Wire Wire Line
13950 12600 13900 12600
Connection ~ 14800 11800
Wire Wire Line
14800 12000 14750 12000
Wire Wire Line
14800 11800 14800 12000
Wire Wire Line
14500 11800 14800 11800
Wire Wire Line
13900 12000 13950 12000
Wire Wire Line
13900 11800 13900 12000
Wire Wire Line
14200 11800 13900 11800
Wire Notes Line width 10
15000 11500 15000 15500
$Comp
L power:GND #PWR0109
U 1 1 67535515
P 14800 11800
F 0 "#PWR0109" H 14800 11550 50 0001 C CNN
F 1 "GND" H 14805 11627 50 0000 C CNN
F 2 "" H 14800 11800 50 0001 C CNN
F 3 "" H 14800 11800 50 0001 C CNN
1 14800 11800
-1 0 0 1
$EndComp
Wire Wire Line
16700 14100 16700 14150
$Comp
L power:GND #PWR0117
U 1 1 8F715E0F
P 16700 13800
F 0 "#PWR0117" H 16700 13550 50 0001 C CNN
F 1 "GND" H 16705 13627 50 0000 C CNN
F 2 "" H 16700 13800 50 0001 C CNN
F 3 "" H 16700 13800 50 0001 C CNN
1 16700 13800
-1 0 0 1
$EndComp
Wire Wire Line
17800 14500 18050 14500
Wire Wire Line
17800 14650 17800 14500
Wire Wire Line
17750 14650 17800 14650
Wire Wire Line
17750 14400 18050 14400
Wire Notes Line width 10
16500 15500 18000 15500
Wire Wire Line
17900 14700 18050 14700
Wire Wire Line
17900 15300 17900 14700
Wire Wire Line
17750 15300 17900 15300
Wire Wire Line
17850 14600 18050 14600
Wire Wire Line
17850 15050 17850 14600
Wire Wire Line
17750 15050 17850 15050
NoConn ~ 17750 15200
NoConn ~ 17750 14950
NoConn ~ 17750 14550
NoConn ~ 17750 14300
Connection ~ 16700 14150
Wire Wire Line
16450 14150 16700 14150
Wire Wire Line
16450 14350 16950 14350
Wire Wire Line
16800 14650 16450 14650
Wire Wire Line
16800 15250 16800 14650
Wire Wire Line
16950 15250 16800 15250
Wire Wire Line
16850 14550 16450 14550
Wire Wire Line
16850 15000 16850 14550
Wire Wire Line
16950 15000 16850 15000
Wire Wire Line
16900 14450 16450 14450
Wire Wire Line
16900 14600 16900 14450
Wire Wire Line
16950 14600 16900 14600
Wire Wire Line
16700 14150 16950 14150
Wire Wire Line
16700 14800 16700 14150
Wire Wire Line
16950 14800 16700 14800
Connection ~ 17800 13800
Wire Wire Line
17800 14000 17750 14000
Wire Wire Line
17800 13800 17800 14000
Wire Wire Line
17500 13800 17800 13800
Wire Wire Line
16900 14000 16950 14000
Wire Wire Line
16900 13800 16900 14000
Wire Wire Line
17200 13800 16900 13800
$Comp
L Device:C C54
U 1 1 6DEF7720
P 17350 13800
F 0 "C54" V 17300 13650 50 0000 C CNN
F 1 "10n" V 17300 13950 50 0000 C CNN
F 2 "VST104_footprints:C_SMD_0402" H 17388 13650 50 0001 C CNN
F 3 "~" H 17350 13800 50 0001 C CNN
1 17350 13800
0 1 1 0
$EndComp
$Comp
L power:GND #PWR0128
U 1 1 6DEF7713
P 17800 13800
F 0 "#PWR0128" H 17800 13550 50 0001 C CNN
F 1 "GND" H 17805 13627 50 0000 C CNN
F 2 "" H 17800 13800 50 0001 C CNN
F 3 "" H 17800 13800 50 0001 C CNN
1 17800 13800
-1 0 0 1
$EndComp
Wire Notes Line width 10
18000 11500 16500 11500
Text Notes 16500 11450 0 65 ~ 13
UART isolators
Wire Notes Line width 10
16000 7000 17000 7000
Wire Notes Line width 10
17000 6000 16000 6000
$Comp
L power:GND #PWR0126
U 1 1 601304BC
P 17850 10350
F 0 "#PWR0126" H 17850 10100 50 0001 C CNN
F 1 "GND" V 17750 10350 50 0000 R CNN
F 2 "" H 17850 10350 50 0001 C CNN
F 3 "" H 17850 10350 50 0001 C CNN
1 17850 10350
0 -1 -1 0
$EndComp
Wire Notes Line width 10
16000 9500 16000 11000
Wire Wire Line
17350 8550 17100 8550
Wire Wire Line
17850 8250 17900 8250
Wire Wire Line
17900 8250 17900 8550
Wire Wire Line
17650 8550 17900 8550
Wire Wire Line
17100 8250 17150 8250
$Comp
L power:GND #PWR0129
U 1 1 5F61C14D
P 17900 8550
F 0 "#PWR0129" H 17900 8300 50 0001 C CNN
F 1 "GND" H 17905 8377 50 0000 C CNN
F 2 "" H 17900 8550 50 0001 C CNN
F 3 "" H 17900 8550 50 0001 C CNN
1 17900 8550
1 0 0 -1
$EndComp
Wire Wire Line
17150 8100 17100 8100
Wire Wire Line
17100 8100 17100 7850
Wire Wire Line
17100 7850 17350 7850
Wire Wire Line
17650 7850 17900 7850
$Comp
L Device:C C55
U 1 1 5F0B57D9
P 17500 8550
F 0 "C55" V 17450 8400 50 0000 C CNN
F 1 "100n" V 17550 8400 50 0000 C CNN
F 2 "VST104_footprints:C_SMD_0402" H 17538 8400 50 0001 C CNN
F 3 "~" H 17500 8550 50 0001 C CNN
1 17500 8550
0 1 1 0
$EndComp
Wire Notes Line width 10
16000 7500 18000 7500
Text Notes 16000 7450 0 65 ~ 13
LSE and HSE clock sources
Connection ~ 17900 8550
Wire Notes Line width 10
18000 9000 16000 9000
Text Notes 16000 9450 0 65 ~ 13
SW & UART peripheral with ESD protection
Text GLabel 16425 1650 0 50 Input ~ 0
SUP_3V3
Text GLabel 16425 3450 0 50 Input ~ 0
SUP_5V
Text Notes 16500 950 0 65 ~ 13
Power UV, OV, current protection and KillSwitch\n
Wire Wire Line
13150 8750 13150 8700
Wire Wire Line
13250 8750 13250 8700
Wire Wire Line
13350 8750 13350 8700
Wire Wire Line
13450 8700 13450 8750
Wire Wire Line
13000 8700 13000 8750
Text Label 13250 8750 0 39 ~ 0
SO
Text Label 13350 8750 0 39 ~ 0
WP
Text Label 13450 8750 0 39 ~ 0
HD
Text Label 13150 8750 0 39 ~ 0
SI
Entry Wire Line
13000 8750 13100 8850
Entry Wire Line
13150 8750 13250 8850
Entry Wire Line
13250 8750 13350 8850
Entry Wire Line
13350 8750 13450 8850
Entry Wire Line
13450 8750 13550 8850
Wire Wire Line
14300 8150 14550 8150
Text Label 14300 8150 0 39 ~ 0
CL
Text Label 14300 8350 0 39 ~ 0
SO
Text Label 14300 8450 0 39 ~ 0
WP
Text Label 14300 8550 0 39 ~ 0
HD
Text Label 14300 8250 0 39 ~ 0
SI
Wire Wire Line
14300 8550 14550 8550
Wire Wire Line
14300 8450 14550 8450
Wire Wire Line
14300 8350 14550 8350
Wire Wire Line
14300 8250 14550 8250
Entry Wire Line
14300 8550 14200 8650
Entry Wire Line
14300 8150 14200 8250
Entry Wire Line
14300 8250 14200 8350
Entry Wire Line
14300 8350 14200 8450
Entry Wire Line
14300 8450 14200 8550
Wire Notes Line width 10
12500 8000 12500 11000
Wire Notes Line width 10
12500 11000 14500 11000
Wire Notes Line width 10
14500 11000 14500 8000
Wire Notes Line width 10
14500 8000 12500 8000
Text Notes 12500 7950 0 65 ~ 13
Triple redundant F-RAM memory
Connection ~ 14200 8850
Wire Notes Line width 10
14500 7500 14500 4500
$Comp
L VST104:CY15B102Q M4
U 1 1 5FD93841
P 12900 8600
F 0 "M4" H 13000 9050 50 0000 C CNN
F 1 "CY15B102Q" H 13450 9050 50 0000 C CNN
F 2 "VST104_footprints:SOIC-8_208_5.23x5.23mm" H 12900 8600 50 0001 C CNN
F 3 "https://www.cypress.com/file/175731/download" H 12900 8600 50 0001 C CNN
1 12900 8600
1 0 0 -1
$EndComp
Connection ~ 13900 8300
Connection ~ 13900 8500
$Comp
L Device:C_Small C44
U 1 1 5FD97970
P 13900 8400
F 0 "C44" H 13950 8500 50 0000 L CNN
F 1 "100n" H 13950 8300 50 0000 L CNN
F 2 "VST104_footprints:C_SMD_0402" H 13900 8400 50 0001 C CNN
F 3 "~" H 13900 8400 50 0001 C CNN
1 13900 8400
1 0 0 -1
$EndComp
Wire Wire Line
13900 8300 13800 8300
Wire Wire Line
13800 8500 13900 8500
$Comp
L power:GND #PWR099
U 1 1 5FD97978
P 13900 8500
F 0 "#PWR099" H 13900 8250 50 0001 C CNN
F 1 "GND" H 13905 8327 50 0000 C CNN
F 2 "" H 13900 8500 50 0001 C CNN
F 3 "" H 13900 8500 50 0001 C CNN
1 13900 8500
1 0 0 -1
$EndComp
$Comp
L power:+3.3V #PWR098
U 1 1 5FD9797E
P 13900 8300
F 0 "#PWR098" H 13900 8150 50 0001 C CNN
F 1 "+3V3" H 13915 8473 50 0000 C CNN
F 2 "" H 13900 8300 50 0001 C CNN
F 3 "" H 13900 8300 50 0001 C CNN
1 13900 8300
1 0 0 -1
$EndComp
Wire Wire Line
12750 8300 12800 8300
Wire Wire Line
12450 8300 12750 8300
Connection ~ 12750 8300
$Comp
L Device:R R30
U 1 1 5FF2D102
P 12750 8450
F 0 "R30" H 12800 8400 50 0000 L CNN
F 1 "10k" H 12800 8500 50 0000 L CNN
F 2 "VST104_footprints:R_SMD_0402" V 12680 8450 50 0001 C CNN
F 3 "~" H 12750 8450 50 0001 C CNN
1 12750 8450
-1 0 0 1
$EndComp
$Comp
L power:+3.3V #PWR076
U 1 1 5FF2D108
P 12750 8600
F 0 "#PWR076" H 12750 8450 50 0001 C CNN
F 1 "+3V3" H 12765 8773 50 0000 C CNN
F 2 "" H 12750 8600 50 0001 C CNN
F 3 "" H 12750 8600 50 0001 C CNN
1 12750 8600
-1 0 0 1
$EndComp
$Comp
L VST104:CY15B102Q M6
U 1 1 603FD1A2
P 12900 10600
F 0 "M6" H 13000 11050 50 0000 C CNN
F 1 "CY15B102Q" H 13450 11050 50 0000 C CNN
F 2 "VST104_footprints:SOIC-8_208_5.23x5.23mm" H 12900 10600 50 0001 C CNN
F 3 "https://www.cypress.com/file/175731/download" H 12900 10600 50 0001 C CNN
1 12900 10600
1 0 0 -1
$EndComp
Connection ~ 13900 10300
Connection ~ 13900 10500
$Comp
L Device:C_Small C40
U 1 1 603FD1AA
P 13900 10400
F 0 "C40" H 13950 10500 50 0000 L CNN
F 1 "100n" H 13950 10300 50 0000 L CNN
F 2 "VST104_footprints:C_SMD_0402" H 13900 10400 50 0001 C CNN
F 3 "~" H 13900 10400 50 0001 C CNN
1 13900 10400
1 0 0 -1
$EndComp
Wire Wire Line
13900 10300 13800 10300
Wire Wire Line
13800 10500 13900 10500
$Comp
L power:GND #PWR091
U 1 1 603FD1B2
P 13900 10500
F 0 "#PWR091" H 13900 10250 50 0001 C CNN
F 1 "GND" H 13905 10327 50 0000 C CNN
F 2 "" H 13900 10500 50 0001 C CNN
F 3 "" H 13900 10500 50 0001 C CNN
1 13900 10500
1 0 0 -1
$EndComp
$Comp
L power:+3.3V #PWR090
U 1 1 603FD1B8
P 13900 10300
F 0 "#PWR090" H 13900 10150 50 0001 C CNN
F 1 "+3V3" H 13915 10473 50 0000 C CNN
F 2 "" H 13900 10300 50 0001 C CNN
F 3 "" H 13900 10300 50 0001 C CNN
1 13900 10300
1 0 0 -1
$EndComp
Wire Wire Line
12750 10300 12800 10300
Wire Wire Line
12450 10300 12750 10300
Connection ~ 12750 10300
$Comp
L Device:R R32
U 1 1 603FD1C1
P 12750 10450
F 0 "R32" H 12950 10400 50 0000 R CNN
F 1 "10k" H 12950 10500 50 0000 R CNN
F 2 "VST104_footprints:R_SMD_0402" V 12680 10450 50 0001 C CNN
F 3 "~" H 12750 10450 50 0001 C CNN
1 12750 10450
-1 0 0 1
$EndComp
$Comp
L power:+3.3V #PWR078
U 1 1 603FD1C7
P 12750 10600
F 0 "#PWR078" H 12750 10450 50 0001 C CNN
F 1 "+3V3" H 12765 10773 50 0000 C CNN
F 2 "" H 12750 10600 50 0001 C CNN
F 3 "" H 12750 10600 50 0001 C CNN
1 12750 10600
-1 0 0 1
$EndComp
$Comp
L VST104:CY15B102Q M5
U 1 1 605987BE
P 12900 9600
F 0 "M5" H 13000 10050 50 0000 C CNN
F 1 "CY15B102Q" H 13450 10050 50 0000 C CNN
F 2 "VST104_footprints:SOIC-8_208_5.23x5.23mm" H 12900 9600 50 0001 C CNN
F 3 "https://www.cypress.com/file/175731/download" H 12900 9600 50 0001 C CNN
1 12900 9600
1 0 0 -1
$EndComp
Connection ~ 13900 9300
Connection ~ 13900 9500
$Comp
L Device:C_Small C39
U 1 1 605987C6
P 13900 9400
F 0 "C39" H 13950 9500 50 0000 L CNN
F 1 "100n" H 13950 9300 50 0000 L CNN
F 2 "VST104_footprints:C_SMD_0402" H 13900 9400 50 0001 C CNN
F 3 "~" H 13900 9400 50 0001 C CNN
1 13900 9400
1 0 0 -1
$EndComp
Wire Wire Line
13900 9300 13800 9300
Wire Wire Line
13800 9500 13900 9500
$Comp
L power:GND #PWR089
U 1 1 605987CE
P 13900 9500
F 0 "#PWR089" H 13900 9250 50 0001 C CNN
F 1 "GND" H 13905 9327 50 0000 C CNN
F 2 "" H 13900 9500 50 0001 C CNN
F 3 "" H 13900 9500 50 0001 C CNN
1 13900 9500
1 0 0 -1
$EndComp
$Comp
L power:+3.3V #PWR088
U 1 1 605987D4
P 13900 9300
F 0 "#PWR088" H 13900 9150 50 0001 C CNN
F 1 "+3V3" H 13915 9473 50 0000 C CNN
F 2 "" H 13900 9300 50 0001 C CNN
F 3 "" H 13900 9300 50 0001 C CNN
1 13900 9300
1 0 0 -1
$EndComp
Wire Wire Line
12750 9300 12800 9300
Wire Wire Line
12450 9300 12750 9300
Connection ~ 12750 9300
$Comp
L Device:R R31
U 1 1 605987DD
P 12750 9450
F 0 "R31" H 12800 9400 50 0000 L CNN
F 1 "10k" H 12800 9500 50 0000 L CNN