aboutsummaryrefslogtreecommitdiff
path: root/hw/chibi/layouttest/chibi_2024.net
blob: 98c80b1f54816c6eec7e85406f7cffbac0fcde6c (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
(export (version D)
  (design
    (source /home/user/toys/7seg/hw/chibi/layouttest/chibi_2024.sch)
    (date "Fri 20 Apr 2018 05:42:49 PM CEST")
    (tool "Eeschema 4.0.6")
    (sheet (number 1) (name /) (tstamps /)
      (title_block
        (title)
        (company)
        (rev)
        (date)
        (source chibi_2024.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 2) (name /mux_mod_right/) (tstamps /59008B1D/)
      (title_block
        (title)
        (company)
        (rev)
        (date)
        (source mux_module.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 3) (name /mux_mod_left/) (tstamps /5901390A/)
      (title_block
        (title)
        (company)
        (rev)
        (date)
        (source mux_module.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value "")))))
  (components
    (comp (ref U3)
      (value STM32F030F4Px)
      (footprint Housings_SSOP:TSSOP-20_4.4x6.5mm_Pitch0.65mm)
      (libsource (lib chibi-cache) (part STM32F030F4Px))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F61E))
    (comp (ref U2)
      (value SP3485CN)
      (footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
      (libsource (lib interface) (part SP3485CN))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F61F))
    (comp (ref C5)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F628))
    (comp (ref U1)
      (value LD1117S33CTR)
      (footprint TO_SOT_Packages_SMD:SOT-223)
      (libsource (lib regul) (part LD1117S33CTR))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F629))
    (comp (ref C6)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F62D))
    (comp (ref C4)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F62E))
    (comp (ref C3)
      (value 1000u)
      (footprint Capacitors_ThroughHole:C_Radial_D10_L20_P5)
      (fields
        (field (name Reichelt) "RAD FR 1.000/25"))
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F62F))
    (comp (ref C12)
      (value 22p)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F636))
    (comp (ref C13)
      (value 22p)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F637))
    (comp (ref Q1)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59030F4D))
    (comp (ref Q2)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59031899))
    (comp (ref Q3)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59031ABE))
    (comp (ref Q4)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59031DA8))
    (comp (ref Q5)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59031EC7))
    (comp (ref Q6)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59031FF7))
    (comp (ref Q7)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 5903212A))
    (comp (ref Q8)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59032262))
    (comp (ref U7)
      (value 74HC595_mine)
      (footprint Housings_SOIC:SOIC-16_3.9x9.9mm_Pitch1.27mm)
      (libsource (lib components) (part 74HC595_mine))
      (sheetpath (names /) (tstamps /))
      (tstamp 5903A15D))
    (comp (ref P5)
      (value SWD)
      (footprint Socket_Strips:Socket_Strip_Straight_1x04)
      (libsource (lib conn) (part CONN_01X04))
      (sheetpath (names /) (tstamps /))
      (tstamp 5904BCE7))
    (comp (ref R35)
      (value 100)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590569D3))
    (comp (ref R36)
      (value 140)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 59056B28))
    (comp (ref R37)
      (value 100)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 59056C60))
    (comp (ref C11)
      (value 10n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5905A693))
    (comp (ref R3)
      (value 47k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5905A92F))
    (comp (ref C7)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 59062924))
    (comp (ref C8)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 59062A72))
    (comp (ref C9)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 59062BCF))
    (comp (ref C10)
      (value 47u)
      (footprint Capacitors_SMD:c_elec_5x5.8)
      (fields
        (field (name Reichelt) "VF 47/6,3 P-C"))
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 59062D2B))
    (comp (ref C19)
      (value 1000u)
      (footprint Capacitors_ThroughHole:C_Radial_D10_L20_P5)
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 5906411A))
    (comp (ref C2)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5906B773))
    (comp (ref P1)
      (value SUP)
      (footprint footprints:m3_pillar)
      (libsource (lib conn) (part CONN_01X01))
      (sheetpath (names /) (tstamps /))
      (tstamp 590744DF))
    (comp (ref P3)
      (value SUP)
      (footprint footprints:m3_pillar)
      (libsource (lib conn) (part CONN_01X01))
      (sheetpath (names /) (tstamps /))
      (tstamp 5907496E))
    (comp (ref R5)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 59098BAA))
    (comp (ref D2)
      (value D_Small)
      (footprint Diodes_SMD:MiniMELF_Standard)
      (libsource (lib device) (part D_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 590D0105))
    (comp (ref R19)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590D2659))
    (comp (ref R33)
      (value 100k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590E4C6D))
    (comp (ref R34)
      (value 100k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590E5245))
    (comp (ref U5)
      (value 74HC595_mine)
      (footprint Housings_SOIC:SOIC-16_3.9x9.9mm_Pitch1.27mm)
      (libsource (lib components) (part 74HC595_mine))
      (sheetpath (names /) (tstamps /))
      (tstamp 590EBD9D))
    (comp (ref R4)
      (value 100k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590FF79A))
    (comp (ref F1)
      (value "2.5A MT")
      (footprint Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_inline_Type-I)
      (libsource (lib device) (part Fuse_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5911004E))
    (comp (ref D1)
      (value "6.4V 1.3W")
      (footprint Discret:D3)
      (libsource (lib device) (part D_Zener_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 59113850))
    (comp (ref R23)
      (value 470k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590B7D5F))
    (comp (ref R32)
      (value 100k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590ACB0B))
    (comp (ref R29)
      (value 47k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590AB4C7))
    (comp (ref R25)
      (value 47k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590AA841))
    (comp (ref U6)
      (value LM393)
      (footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
      (libsource (lib linear) (part LM393))
      (sheetpath (names /) (tstamps /))
      (tstamp 590AA304))
    (comp (ref C20)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A11EA))
    (comp (ref R21)
      (value 470k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 59089456))
    (comp (ref R24)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 59089462))
    (comp (ref R22)
      (value 100k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5908946E))
    (comp (ref D3)
      (value D_Small)
      (footprint Diodes_SMD:MiniMELF_Standard)
      (libsource (lib device) (part D_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 590898EA))
    (comp (ref D4)
      (value D_Small)
      (footprint Diodes_SMD:MiniMELF_Standard)
      (libsource (lib device) (part D_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 59089AFD))
    (comp (ref R20)
      (value 47k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5908C108))
    (comp (ref Q15)
      (value Q_NPN_BEC)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_NPN_BEC))
      (sheetpath (names /) (tstamps /))
      (tstamp 596A8C5C))
    (comp (ref Q16)
      (value Q_NPN_BEC)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_NPN_BEC))
      (sheetpath (names /) (tstamps /))
      (tstamp 596A926E))
    (comp (ref Q14)
      (value Q_PNP_BEC)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PNP_BEC))
      (sheetpath (names /) (tstamps /))
      (tstamp 596AB2F9))
    (comp (ref U10)
      (value 74HCT125)
      (footprint Housings_SOIC:SOIC-14_3.9x8.7mm_Pitch1.27mm)
      (libsource (lib components) (part 74HCT125))
      (sheetpath (names /) (tstamps /))
      (tstamp 596C5A9A))
    (comp (ref R44)
      (value 1k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 596CEE99))
    (comp (ref R1)
      (value 47k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 596E3349))
    (comp (ref P4)
      (value CONN_02X03)
      (footprint Socket_Strips:Socket_Strip_Straight_2x03)
      (libsource (lib conn) (part CONN_02X03))
      (sheetpath (names /) (tstamps /))
      (tstamp 596EF522))
    (comp (ref C1)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5970BD26))
    (comp (ref JP1)
      (value rpos)
      (footprint footprints:solder_jumper_3mm)
      (libsource (lib device) (part Jumper_NC_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ADA3B9E))
    (comp (ref JP2)
      (value rneg)
      (footprint footprints:solder_jumper_3mm)
      (libsource (lib device) (part Jumper_NC_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ADA4914))
    (comp (ref JP4)
      (value lneg)
      (footprint footprints:solder_jumper_3mm)
      (libsource (lib device) (part Jumper_NC_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ADA4F15))
    (comp (ref JP3)
      (value lpos)
      (footprint footprints:solder_jumper_3mm)
      (libsource (lib device) (part Jumper_NC_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ADA5427))
    (comp (ref P6)
      (value SUP)
      (footprint footprints:m3_pillar)
      (libsource (lib conn) (part CONN_01X01))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ADAF5DE))
    (comp (ref P2)
      (value SUP)
      (footprint footprints:m3_pillar)
      (libsource (lib conn) (part CONN_01X01))
      (sheetpath (names /) (tstamps /))
      (tstamp 5ADAFAAD))
    (comp (ref D10)
      (value 7seg_4digit_cc)
      (footprint footprints:7seg_4digit_cc_modified)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 5900990E))
    (comp (ref D11)
      (value 7seg_4digit_cc)
      (footprint footprints:7seg_4digit_cc_modified)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 59009915))
    (comp (ref D12)
      (value 7seg_4digit_cc)
      (footprint footprints:7seg_4digit_cc_modified)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 5900991C))
    (comp (ref D13)
      (value 7seg_4digit_cc)
      (footprint footprints:7seg_4digit_cc_modified)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 59009923))
    (comp (ref U8)
      (value MBI5026)
      (footprint footprints:SSOP24-1.0-nosilk)
      (libsource (lib components) (part MBI5026))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 5900992A))
    (comp (ref R39)
      (value R)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 590099AE))
    (comp (ref R38)
      (value R)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 590DC56C))
    (comp (ref D14)
      (value 7seg_4digit_cc)
      (footprint footprints:7seg_4digit_cc_modified)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 5900990E))
    (comp (ref D15)
      (value 7seg_4digit_cc)
      (footprint footprints:7seg_4digit_cc_modified)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 59009915))
    (comp (ref D16)
      (value 7seg_4digit_cc)
      (footprint footprints:7seg_4digit_cc_modified)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 5900991C))
    (comp (ref D17)
      (value 7seg_4digit_cc)
      (footprint footprints:7seg_4digit_cc_modified)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 59009923))
    (comp (ref U9)
      (value MBI5026)
      (footprint footprints:SSOP24-1.0-nosilk)
      (libsource (lib components) (part MBI5026))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 5900992A))
    (comp (ref R41)
      (value R)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 590099AE))
    (comp (ref R40)
      (value R)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 590DC56C)))
  (libparts
    (libpart (lib components) (part 74HC595_mine)
      (docs ref/74HC_HCT595.pdf)
      (fields
        (field (name Reference) U)
        (field (name Value) 74HC595_mine))
      (pins
        (pin (num 1) (name Q1) (type input))
        (pin (num 2) (name Q2) (type input))
        (pin (num 3) (name Q3) (type input))
        (pin (num 4) (name Q4) (type input))
        (pin (num 5) (name Q5) (type input))
        (pin (num 6) (name Q6) (type input))
        (pin (num 7) (name Q7) (type input))
        (pin (num 8) (name GND) (type input))
        (pin (num 9) (name Q7S) (type input))
        (pin (num 10) (name ~MR) (type input))
        (pin (num 11) (name SHCP) (type input))
        (pin (num 12) (name STCP) (type input))
        (pin (num 13) (name ~OE) (type input))
        (pin (num 14) (name DS) (type input))
        (pin (num 15) (name Q0) (type input))
        (pin (num 16) (name VCC) (type input))))
    (libpart (lib components) (part 74HCT125)
      (docs ref/74HC_HCT595.pdf)
      (fields
        (field (name Reference) U)
        (field (name Value) 74HCT125))
      (pins
        (pin (num 1) (name ~OE0) (type input))
        (pin (num 2) (name I0) (type input))
        (pin (num 3) (name Q0) (type input))
        (pin (num 4) (name ~OE1) (type input))
        (pin (num 5) (name I1) (type input))
        (pin (num 6) (name Q1) (type input))
        (pin (num 7) (name GND) (type input))
        (pin (num 8) (name Q2) (type input))
        (pin (num 9) (name I2) (type input))
        (pin (num 10) (name ~OE2) (type input))
        (pin (num 11) (name Q3) (type input))
        (pin (num 12) (name I3) (type input))
        (pin (num 13) (name ~OE3) (type input))
        (pin (num 14) (name VCC) (type input))))
    (libpart (lib components) (part 7seg_4digit_cc)
      (fields
        (field (name Reference) D)
        (field (name Value) 7seg_4digit_cc))
      (pins
        (pin (num 1) (name E) (type input))
        (pin (num 2) (name D) (type input))
        (pin (num 3) (name DP) (type input))
        (pin (num 4) (name C) (type input))
        (pin (num 5) (name G) (type input))
        (pin (num 6) (name CC4) (type input))
        (pin (num 7) (name B) (type input))
        (pin (num 8) (name CC3) (type input))
        (pin (num 9) (name CC2) (type input))
        (pin (num 10) (name F) (type input))
        (pin (num 11) (name A) (type input))
        (pin (num 12) (name CC1) (type input))))
    (libpart (lib device) (part C)
      (description "Unpolarized capacitor")
      (footprints
        (fp C_*))
      (fields
        (field (name Reference) C)
        (field (name Value) C))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib conn) (part CONN_01X01)
      (description "Connector, single row, 01x01, pin header")
      (footprints
        (fp Pin_Header_Straight_1X*)
        (fp Pin_Header_Angled_1X*)
        (fp Socket_Strip_Straight_1X*)
        (fp Socket_Strip_Angled_1X*))
      (fields
        (field (name Reference) J)
        (field (name Value) CONN_01X01))
      (pins
        (pin (num 1) (name P1) (type passive))))
    (libpart (lib conn) (part CONN_01X04)
      (description "Connector, single row, 01x04, pin header")
      (footprints
        (fp Pin_Header_Straight_1X*)
        (fp Pin_Header_Angled_1X*)
        (fp Socket_Strip_Straight_1X*)
        (fp Socket_Strip_Angled_1X*))
      (fields
        (field (name Reference) J)
        (field (name Value) CONN_01X04))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))
        (pin (num 3) (name P3) (type passive))
        (pin (num 4) (name P4) (type passive))))
    (libpart (lib conn) (part CONN_02X03)
      (description "Connector, double row, 02x03, pin header")
      (footprints
        (fp Pin_Header_Straight_2X*)
        (fp Pin_Header_Angled_2X*)
        (fp Socket_Strip_Straight_2X*)
        (fp Socket_Strip_Angled_2X*)
        (fp IDC_Header_Straight_*))
      (fields
        (field (name Reference) J)
        (field (name Value) CONN_02X03))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))
        (pin (num 3) (name P3) (type passive))
        (pin (num 4) (name P4) (type passive))
        (pin (num 5) (name P5) (type passive))
        (pin (num 6) (name P6) (type passive))))
    (libpart (lib device) (part CP)
      (description "Polarised capacitor")
      (footprints
        (fp CP_*))
      (fields
        (field (name Reference) C)
        (field (name Value) CP))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part D_Small)
      (description "Diode, small symbol")
      (footprints
        (fp TO-???*)
        (fp *SingleDiode)
        (fp *_Diode_*)
        (fp *SingleDiode*)
        (fp D_*))
      (fields
        (field (name Reference) D)
        (field (name Value) D_Small))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive))))
    (libpart (lib device) (part D_Zener_Small)
      (description "Zener Diode, small symbol")
      (docs https://en.wikipedia.org/wiki/Zener_diode)
      (footprints
        (fp TO-???*)
        (fp *SingleDiode)
        (fp *_Diode_*)
        (fp *SingleDiode*)
        (fp D_*))
      (fields
        (field (name Reference) D)
        (field (name Value) D_Zener_Small))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive))))
    (libpart (lib device) (part Fuse_Small)
      (description "Fuse, small symbol")
      (footprints
        (fp SM*))
      (fields
        (field (name Reference) F)
        (field (name Value) Fuse_Small))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part Jumper_NC_Small)
      (description "Jumper, normally closed")
      (fields
        (field (name Reference) JP)
        (field (name Value) Jumper_NC_Small))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib regul) (part LD1117S33TR)
      (aliases
        (alias LD1117S33CTR)
        (alias LD1117S12TR)
        (alias LD1117S12CTR)
        (alias LD1117S18TR)
        (alias LD1117S18CTR)
        (alias LD1117S25TR)
        (alias LD1117S25CTR)
        (alias LD1117S50TR)
        (alias LD1117S50CTR))
      (description "800mA Fixed Low Drop Positive Voltage Regulator, Fixed Output 3.3V, SOT223")
      (docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf)
      (footprints
        (fp SOT223))
      (fields
        (field (name Reference) U)
        (field (name Value) LD1117S33TR)
        (field (name Footprint) TO_SOT_Packages_SMD:SOT-223))
      (pins
        (pin (num 1) (name GND) (type power_in))
        (pin (num 2) (name VO) (type power_out))
        (pin (num 3) (name VI) (type power_in))))
    (libpart (lib linear) (part LM2903)
      (aliases
        (alias LM293)
        (alias LM393)
        (alias LM193))
      (description "Dual Voltage Comparator")
      (docs ns/lm193.pdf)
      (footprints
        (fp SOIC*Pitch1.27mm*)
        (fp DIP*W7.62mm*))
      (fields
        (field (name Reference) U)
        (field (name Value) LM2903))
      (pins
        (pin (num 1) (name ~) (type openCol))
        (pin (num 2) (name _) (type input))
        (pin (num 3) (name +) (type input))
        (pin (num 4) (name V-) (type power_in))
        (pin (num 5) (name +) (type input))
        (pin (num 6) (name _) (type input))
        (pin (num 7) (name ~) (type openCol))
        (pin (num 8) (name V+) (type power_in))))
    (libpart (lib components) (part MBI5026)
      (fields
        (field (name Reference) U)
        (field (name Value) MBI5026))
      (pins
        (pin (num 1) (name GND) (type input))
        (pin (num 2) (name SDI) (type input))
        (pin (num 3) (name CLK) (type input))
        (pin (num 4) (name LE) (type input))
        (pin (num 5) (name OUT0) (type input))
        (pin (num 6) (name OUT1) (type input))
        (pin (num 7) (name OUT2) (type input))
        (pin (num 8) (name OUT3) (type input))
        (pin (num 9) (name OUT4) (type input))
        (pin (num 10) (name OUT5) (type input))
        (pin (num 11) (name OUT6) (type input))
        (pin (num 12) (name OUT7) (type input))
        (pin (num 13) (name OUT8) (type input))
        (pin (num 14) (name OUT9) (type input))
        (pin (num 15) (name OUT10) (type input))
        (pin (num 16) (name OUT11) (type input))
        (pin (num 17) (name OUT12) (type input))
        (pin (num 18) (name OUT13) (type input))
        (pin (num 19) (name OUT14) (type input))
        (pin (num 20) (name OUT15) (type input))
        (pin (num 21) (name ~OE) (type input))
        (pin (num 22) (name SDO) (type input))
        (pin (num 23) (name R_ext) (type input))
        (pin (num 24) (name VDD) (type input))))
    (libpart (lib device) (part Q_NPN_BEC)
      (description "Transistor NPN (general)")
      (fields
        (field (name Reference) Q)
        (field (name Value) Q_NPN_BEC))
      (pins
        (pin (num 1) (name B) (type input))
        (pin (num 2) (name E) (type passive))
        (pin (num 3) (name C) (type passive))))
    (libpart (lib device) (part Q_PMOS_GSD)
      (description "Transistor P-MOSFET with substrate diode (general)")
      (fields
        (field (name Reference) Q)
        (field (name Value) Q_PMOS_GSD))
      (pins
        (pin (num 1) (name G) (type input))
        (pin (num 2) (name S) (type passive))
        (pin (num 3) (name D) (type passive))))
    (libpart (lib device) (part Q_PNP_BEC)
      (description "Transistor PNP (general)")
      (fields
        (field (name Reference) Q)
        (field (name Value) Q_PNP_BEC))
      (pins
        (pin (num 1) (name B) (type input))
        (pin (num 2) (name E) (type passive))
        (pin (num 3) (name C) (type passive))))
    (libpart (lib device) (part R)
      (description Resistor)
      (footprints
        (fp R_*)
        (fp R_*))
      (fields
        (field (name Reference) R)
        (field (name Value) R))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib interface) (part SP3481CN)
      (aliases
        (alias MAX3072E)
        (alias MAX3075E)
        (alias MAX3078E)
        (alias SP3481EN)
        (alias SP3485CN)
        (alias SP3485EN))
      (description "3.3V Low Power Half-Duplex RS-485 Transceiver 10Mbps, SO8")
      (docs http://www.icbase.com/pdf/SPX/SPX00480106.pdf)
      (footprints
        (fp SOIC*3.9x4.9mm*Pitch1.27mm*))
      (fields
        (field (name Reference) U)
        (field (name Value) SP3481CN)
        (field (name Footprint) Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm))
      (pins
        (pin (num 1) (name RO) (type output))
        (pin (num 2) (name ~RE~) (type input))
        (pin (num 3) (name DE) (type input))
        (pin (num 4) (name DI) (type input))
        (pin (num 5) (name GND) (type power_in))
        (pin (num 6) (name A) (type BiDi))
        (pin (num 7) (name B) (type BiDi))
        (pin (num 8) (name VCC) (type power_in))))
    (libpart (lib chibi-cache) (part STM32F030F4Px)
      (fields
        (field (name Reference) U)
        (field (name Value) STM32F030F4Px)
        (field (name Footprint) TSSOP20))
      (pins
        (pin (num 1) (name BOOT0) (type input))
        (pin (num 2) (name PF0/RCC_OSC_IN) (type input))
        (pin (num 3) (name PF1/RCC_OSC_OUT) (type input))
        (pin (num 4) (name NRST) (type input))
        (pin (num 5) (name VDDA) (type power_in))
        (pin (num 6) (name ADC_IN0/RTC_TAMP2/SYS_WKUP1/USART1_CTS/PA0) (type BiDi))
        (pin (num 7) (name ADC_IN1/USART1_DE/USART1_RTS/PA1) (type BiDi))
        (pin (num 8) (name ADC_IN2/USART1_TX/PA2) (type BiDi))
        (pin (num 9) (name ADC_IN3/USART1_RX/PA3) (type BiDi))
        (pin (num 10) (name ADC_IN4/SPI1_NSS/TIM14_CH1/USART1_CK/PA4) (type BiDi))
        (pin (num 11) (name ADC_IN5/SPI1_SCK/PA5) (type BiDi))
        (pin (num 12) (name ADC_IN6/SPI1_MISO/TIM16_CH1/TIM1_BKIN/TIM3_CH1/PA6) (type BiDi))
        (pin (num 13) (name ADC_IN7/SPI1_MOSI/TIM14_CH1/TIM17_CH1/TIM1_CH1N/TIM3_CH2/PA7) (type BiDi))
        (pin (num 14) (name PB1/ADC_IN9/TIM14_CH1/TIM1_CH3N/TIM3_CH4) (type BiDi))
        (pin (num 15) (name VSS) (type power_in))
        (pin (num 16) (name VDD) (type power_in))
        (pin (num 17) (name I2C1_SCL/TIM1_CH2/USART1_TX/PA9) (type BiDi))
        (pin (num 18) (name I2C1_SDA/TIM17_BKIN/TIM1_CH3/USART1_RX/PA10) (type BiDi))
        (pin (num 19) (name IR_OUT/SYS_SWDIO/PA13) (type BiDi))
        (pin (num 20) (name SYS_SWCLK/USART1_TX/PA14) (type BiDi)))))
  (libraries
    (library (logical device)
      (uri /usr/share/kicad/library/device.lib))
    (library (logical conn)
      (uri /usr/share/kicad/library/conn.lib))
    (library (logical linear)
      (uri /usr/share/kicad/library/linear.lib))
    (library (logical regul)
      (uri /usr/share/kicad/library/regul.lib))
    (library (logical interface)
      (uri /usr/share/kicad/library/interface.lib))
    (library (logical components)
      (uri /home/user/toys/7seg/hw/chibi/components.lib))
    (library (logical chibi-cache)
      (uri /home/user/toys/7seg/hw/chibi/chibi-cache.lib)))
  (nets
    (net (code 1) (name GND)
      (node (ref Q15) (pin 2))
      (node (ref Q16) (pin 2))
      (node (ref U3) (pin 1))
      (node (ref U8) (pin 1))
      (node (ref U10) (pin 1))
      (node (ref C1) (pin 1))
      (node (ref U1) (pin 1))
      (node (ref C5) (pin 1))
      (node (ref U6) (pin 4))
      (node (ref U10) (pin 7))
      (node (ref U10) (pin 10))
      (node (ref U10) (pin 13))
      (node (ref U10) (pin 4))
      (node (ref JP2) (pin 2))
      (node (ref JP4) (pin 2))
      (node (ref U5) (pin 13))
      (node (ref R4) (pin 2))
      (node (ref C8) (pin 1))
      (node (ref C7) (pin 1))
      (node (ref C13) (pin 1))
      (node (ref C11) (pin 2))
      (node (ref C12) (pin 1))
      (node (ref C2) (pin 1))
      (node (ref C9) (pin 1))
      (node (ref C10) (pin 2))
      (node (ref C19) (pin 2))
      (node (ref P5) (pin 3))
      (node (ref U7) (pin 13))
      (node (ref U7) (pin 8))
      (node (ref U5) (pin 8))
      (node (ref U3) (pin 15))
      (node (ref R1) (pin 1))
      (node (ref U2) (pin 5))
      (node (ref C4) (pin 1))
      (node (ref C3) (pin 2))
      (node (ref R29) (pin 1))
      (node (ref C6) (pin 1))
      (node (ref P4) (pin 6))
      (node (ref D1) (pin 2))
      (node (ref U9) (pin 1))
      (node (ref R24) (pin 1))
      (node (ref C20) (pin 2))
      (node (ref P4) (pin 1)))
    (net (code 2) (name "Net-(R37-Pad2)")
      (node (ref R37) (pin 2)))
    (net (code 3) (name "Net-(R36-Pad2)")
      (node (ref R36) (pin 2)))
    (net (code 4) (name "Net-(R35-Pad2)")
      (node (ref R35) (pin 2)))
    (net (code 5) (name "Net-(Q14-Pad1)")
      (node (ref Q14) (pin 1))
      (node (ref R19) (pin 1)))
    (net (code 6) (name /XT1)
      (node (ref U3) (pin 2))
      (node (ref C12) (pin 2)))
    (net (code 7) (name /XT2)
      (node (ref U3) (pin 3))
      (node (ref C13) (pin 2)))
    (net (code 8) (name /SEG_B_CTRL)
      (node (ref U7) (pin 6))
      (node (ref Q3) (pin 1)))
    (net (code 9) (name "Net-(U7-Pad9)")
      (node (ref U7) (pin 9)))
    (net (code 10) (name /SEG_C_CTRL)
      (node (ref Q1) (pin 1))
      (node (ref U7) (pin 1)))
    (net (code 11) (name /SEG_F_CTRL)
      (node (ref U7) (pin 4))
      (node (ref Q5) (pin 1)))
    (net (code 12) (name /SEG_A_CTRL)
      (node (ref U7) (pin 7))
      (node (ref Q7) (pin 1)))
    (net (code 13) (name /SEG_G_CTLR)
      (node (ref Q2) (pin 1))
      (node (ref U7) (pin 15)))
    (net (code 14) (name /SEG_E_CTRL)
      (node (ref Q8) (pin 1))
      (node (ref U7) (pin 5)))
    (net (code 15) (name /SEG_D_CTRL)
      (node (ref Q6) (pin 1))
      (node (ref U7) (pin 3)))
    (net (code 16) (name /mux_mod_right/SDO)
      (node (ref U8) (pin 22)))
    (net (code 17) (name "Net-(Q15-Pad1)")
      (node (ref Q15) (pin 1))
      (node (ref R33) (pin 1)))
    (net (code 18) (name "Net-(Q16-Pad1)")
      (node (ref Q16) (pin 1))
      (node (ref R34) (pin 1)))
    (net (code 19) (name /in_left)
      (node (ref P2) (pin 1))
      (node (ref JP1) (pin 1))
      (node (ref JP2) (pin 1))
      (node (ref P1) (pin 1)))
    (net (code 20) (name /in_right)
      (node (ref P6) (pin 1))
      (node (ref P3) (pin 1))
      (node (ref JP3) (pin 1))
      (node (ref JP4) (pin 1)))
    (net (code 21) (name "Net-(R1-Pad2)")
      (node (ref U6) (pin 2))
      (node (ref R1) (pin 2)))
    (net (code 22) (name "Net-(F1-Pad2)")
      (node (ref JP1) (pin 2))
      (node (ref F1) (pin 2))
      (node (ref JP3) (pin 2)))
    (net (code 23) (name /RS485_B)
      (node (ref U2) (pin 7))
      (node (ref P4) (pin 4)))
    (net (code 24) (name /WD_REF1)
      (node (ref U6) (pin 3))
      (node (ref R25) (pin 1))
      (node (ref R23) (pin 1))
      (node (ref R29) (pin 2)))
    (net (code 25) (name /SEG_DP_CTRL)
      (node (ref Q4) (pin 1))
      (node (ref U7) (pin 2))
      (node (ref R32) (pin 2)))
    (net (code 26) (name +5V)
      (node (ref C7) (pin 2))
      (node (ref Q5) (pin 3))
      (node (ref U10) (pin 14))
      (node (ref Q6) (pin 3))
      (node (ref Q4) (pin 3))
      (node (ref R22) (pin 2))
      (node (ref Q3) (pin 3))
      (node (ref U9) (pin 24))
      (node (ref P4) (pin 5))
      (node (ref Q2) (pin 3))
      (node (ref Q1) (pin 3))
      (node (ref R25) (pin 2))
      (node (ref P4) (pin 2))
      (node (ref U1) (pin 3))
      (node (ref Q8) (pin 3))
      (node (ref Q7) (pin 3))
      (node (ref U7) (pin 10))
      (node (ref C2) (pin 2))
      (node (ref C8) (pin 2))
      (node (ref Q14) (pin 2))
      (node (ref D1) (pin 1))
      (node (ref C19) (pin 1))
      (node (ref C3) (pin 1))
      (node (ref C4) (pin 2))
      (node (ref U6) (pin 8))
      (node (ref R20) (pin 1))
      (node (ref U7) (pin 16))
      (node (ref F1) (pin 1))
      (node (ref U8) (pin 24)))
    (net (code 27) (name /LED_COMM)
      (node (ref R37) (pin 1))
      (node (ref U5) (pin 2)))
    (net (code 28) (name /WD_REF2)
      (node (ref R21) (pin 1))
      (node (ref R22) (pin 1))
      (node (ref U6) (pin 5))
      (node (ref R24) (pin 2)))
    (net (code 29) (name /RS485_TX)
      (node (ref U2) (pin 4))
      (node (ref U3) (pin 8)))
    (net (code 30) (name /RS485_DE)
      (node (ref U2) (pin 3))
      (node (ref U2) (pin 2))
      (node (ref U3) (pin 7))
      (node (ref R4) (pin 1)))
    (net (code 31) (name /RS485_RX)
      (node (ref U3) (pin 9))
      (node (ref U2) (pin 1)))
    (net (code 32) (name /RS485_A)
      (node (ref P4) (pin 3))
      (node (ref U2) (pin 6)))
    (net (code 33) (name /SEG_B_COM)
      (node (ref D10) (pin 7))
      (node (ref D11) (pin 7))
      (node (ref D17) (pin 7))
      (node (ref Q3) (pin 2))
      (node (ref D12) (pin 7))
      (node (ref D16) (pin 7))
      (node (ref D15) (pin 7))
      (node (ref D14) (pin 7))
      (node (ref D13) (pin 7)))
    (net (code 34) (name /MOSI_C1_HV)
      (node (ref U9) (pin 22))
      (node (ref U8) (pin 2)))
    (net (code 35) (name /MOSI_C2)
      (node (ref U5) (pin 9))
      (node (ref U7) (pin 14)))
    (net (code 36) (name /mux_mod_left/R_SET_1)
      (node (ref R41) (pin 1))
      (node (ref Q16) (pin 3))
      (node (ref R39) (pin 1)))
    (net (code 37) (name /~OE_HV_CB)
      (node (ref U9) (pin 21))
      (node (ref U8) (pin 21))
      (node (ref Q14) (pin 3))
      (node (ref R44) (pin 1)))
    (net (code 38) (name /mux_mod_left/R_SET_0)
      (node (ref Q15) (pin 3))
      (node (ref R38) (pin 1))
      (node (ref R40) (pin 1)))
    (net (code 39) (name +3V3)
      (node (ref R5) (pin 2))
      (node (ref U1) (pin 2))
      (node (ref U5) (pin 16))
      (node (ref C5) (pin 2))
      (node (ref C1) (pin 2))
      (node (ref U3) (pin 5))
      (node (ref U5) (pin 10))
      (node (ref C9) (pin 2))
      (node (ref C10) (pin 1))
      (node (ref P5) (pin 4))
      (node (ref U2) (pin 8))
      (node (ref U3) (pin 16))
      (node (ref R3) (pin 1))
      (node (ref C6) (pin 2)))
    (net (code 40) (name "Net-(U3-Pad6)")
      (node (ref U3) (pin 6)))
    (net (code 41) (name /SEG_A_COM)
      (node (ref D10) (pin 11))
      (node (ref D15) (pin 11))
      (node (ref D12) (pin 11))
      (node (ref D13) (pin 11))
      (node (ref Q7) (pin 2))
      (node (ref D14) (pin 11))
      (node (ref D16) (pin 11))
      (node (ref D17) (pin 11))
      (node (ref D11) (pin 11)))
    (net (code 42) (name /SEG_C_COM)
      (node (ref Q1) (pin 2))
      (node (ref D13) (pin 4))
      (node (ref D10) (pin 4))
      (node (ref D11) (pin 4))
      (node (ref D12) (pin 4))
      (node (ref D15) (pin 4))
      (node (ref D16) (pin 4))
      (node (ref D17) (pin 4))
      (node (ref D14) (pin 4)))
    (net (code 43) (name /SEG_D_COM)
      (node (ref D16) (pin 2))
      (node (ref D15) (pin 2))
      (node (ref D12) (pin 2))
      (node (ref D11) (pin 2))
      (node (ref D10) (pin 2))
      (node (ref D13) (pin 2))
      (node (ref D14) (pin 2))
      (node (ref D17) (pin 2))
      (node (ref Q6) (pin 2)))
    (net (code 44) (name /SEG_E_COM)
      (node (ref D10) (pin 1))
      (node (ref D17) (pin 1))
      (node (ref D11) (pin 1))
      (node (ref D14) (pin 1))
      (node (ref D12) (pin 1))
      (node (ref D15) (pin 1))
      (node (ref D13) (pin 1))
      (node (ref D16) (pin 1))
      (node (ref Q8) (pin 2)))
    (net (code 45) (name /SEG_F_COM)
      (node (ref Q5) (pin 2))
      (node (ref D16) (pin 10))
      (node (ref D17) (pin 10))
      (node (ref D11) (pin 10))
      (node (ref D10) (pin 10))
      (node (ref D12) (pin 10))
      (node (ref D15) (pin 10))
      (node (ref D13) (pin 10))
      (node (ref D14) (pin 10)))
    (net (code 46) (name /SEG_G_COM)
      (node (ref D13) (pin 5))
      (node (ref D10) (pin 5))
      (node (ref Q2) (pin 2))
      (node (ref D11) (pin 5))
      (node (ref D12) (pin 5))
      (node (ref D14) (pin 5))
      (node (ref D16) (pin 5))
      (node (ref D15) (pin 5))
      (node (ref D17) (pin 5)))
    (net (code 47) (name /SEG_DP_COM)
      (node (ref D15) (pin 3))
      (node (ref D14) (pin 3))
      (node (ref D13) (pin 3))
      (node (ref D10) (pin 3))
      (node (ref D16) (pin 3))
      (node (ref D11) (pin 3))
      (node (ref Q4) (pin 2))
      (node (ref D17) (pin 3))
      (node (ref D12) (pin 3)))
    (net (code 48) (name "Net-(U3-Pad10)")
      (node (ref U3) (pin 10)))
    (net (code 49) (name "Net-(U3-Pad14)")
      (node (ref U3) (pin 14)))
    (net (code 50) (name /~WD_RST2)
      (node (ref R21) (pin 2))
      (node (ref U6) (pin 7))
      (node (ref D4) (pin 1)))
    (net (code 52) (name /WD_COMP1)
      (node (ref R32) (pin 1))
      (node (ref U6) (pin 6))
      (node (ref C20) (pin 1)))
    (net (code 53) (name /~WD_RST1)
      (node (ref U6) (pin 1))
      (node (ref R23) (pin 2))
      (node (ref D3) (pin 1)))
    (net (code 54) (name /MOSI_C0)
      (node (ref U5) (pin 14))
      (node (ref U10) (pin 9))
      (node (ref U3) (pin 13)))
    (net (code 55) (name /~OE)
      (node (ref R5) (pin 1))
      (node (ref U10) (pin 5))
      (node (ref U3) (pin 12)))
    (net (code 56) (name /STROBE)
      (node (ref U10) (pin 2))
      (node (ref U3) (pin 17)))
    (net (code 57) (name /STROBE_HV)
      (node (ref U8) (pin 4))
      (node (ref U9) (pin 4))
      (node (ref U10) (pin 3)))
    (net (code 58) (name /~OE_HV)
      (node (ref R44) (pin 2))
      (node (ref U10) (pin 6)))
    (net (code 59) (name /SCK_HV)
      (node (ref U8) (pin 3))
      (node (ref U10) (pin 11))
      (node (ref U9) (pin 3)))
    (net (code 60) (name /MOSI_C0_HV)
      (node (ref U10) (pin 8))
      (node (ref U9) (pin 2)))
    (net (code 61) (name /SWCLK)
      (node (ref U3) (pin 20))
      (node (ref P5) (pin 2)))
    (net (code 62) (name /SWDIO)
      (node (ref U3) (pin 19))
      (node (ref P5) (pin 1)))
    (net (code 63) (name /RST)
      (node (ref D2) (pin 2))
      (node (ref C11) (pin 1))
      (node (ref R3) (pin 2))
      (node (ref U3) (pin 4)))
    (net (code 64) (name "Net-(U5-Pad15)")
      (node (ref U5) (pin 15)))
    (net (code 65) (name /AUX_STROBE)
      (node (ref U7) (pin 12))
      (node (ref U3) (pin 18))
      (node (ref U5) (pin 12)))
    (net (code 66) (name /SCK)
      (node (ref U5) (pin 11))
      (node (ref U10) (pin 12))
      (node (ref U3) (pin 11))
      (node (ref U7) (pin 11)))
    (net (code 67) (name /LED_ID)
      (node (ref R35) (pin 1))
      (node (ref U5) (pin 3)))
    (net (code 68) (name /LED_ERROR)
      (node (ref U5) (pin 1))
      (node (ref R36) (pin 1)))
    (net (code 69) (name /R_SET_CTRL0)
      (node (ref R33) (pin 2))
      (node (ref U5) (pin 6)))
    (net (code 70) (name /R_SET_CTRL1)
      (node (ref U5) (pin 7))
      (node (ref R34) (pin 2)))
    (net (code 71) (name /~WD_RST)
      (node (ref D4) (pin 2))
      (node (ref D3) (pin 2))
      (node (ref D2) (pin 1))
      (node (ref R20) (pin 2))
      (node (ref R19) (pin 2)))
    (net (code 72) (name "Net-(U5-Pad4)")
      (node (ref U5) (pin 4)))
    (net (code 73) (name "Net-(U5-Pad5)")
      (node (ref U5) (pin 5)))
    (net (code 74) (name "Net-(D12-Pad9)")
      (node (ref U8) (pin 10))
      (node (ref D12) (pin 9)))
    (net (code 75) (name "Net-(D12-Pad8)")
      (node (ref D12) (pin 8))
      (node (ref U8) (pin 11)))
    (net (code 76) (name "Net-(D12-Pad6)")
      (node (ref D12) (pin 6))
      (node (ref U8) (pin 12)))
    (net (code 77) (name "Net-(D11-Pad12)")
      (node (ref U8) (pin 13))
      (node (ref D11) (pin 12)))
    (net (code 78) (name "Net-(D11-Pad9)")
      (node (ref U8) (pin 14))
      (node (ref D11) (pin 9)))
    (net (code 79) (name "Net-(D11-Pad8)")
      (node (ref D11) (pin 8))
      (node (ref U8) (pin 15)))
    (net (code 80) (name "Net-(D11-Pad6)")
      (node (ref D11) (pin 6))
      (node (ref U8) (pin 16)))
    (net (code 81) (name "Net-(D10-Pad12)")
      (node (ref D10) (pin 12))
      (node (ref U8) (pin 17)))
    (net (code 82) (name "Net-(D10-Pad9)")
      (node (ref U8) (pin 18))
      (node (ref D10) (pin 9)))
    (net (code 83) (name "Net-(D10-Pad8)")
      (node (ref U8) (pin 19))
      (node (ref D10) (pin 8)))
    (net (code 84) (name "Net-(D10-Pad6)")
      (node (ref D10) (pin 6))
      (node (ref U8) (pin 20)))
    (net (code 85) (name "Net-(D13-Pad12)")
      (node (ref D13) (pin 12))
      (node (ref U8) (pin 5)))
    (net (code 86) (name "Net-(R38-Pad2)")
      (node (ref R38) (pin 2))
      (node (ref R39) (pin 2))
      (node (ref U8) (pin 23)))
    (net (code 87) (name "Net-(D13-Pad9)")
      (node (ref D13) (pin 9))
      (node (ref U8) (pin 6)))
    (net (code 88) (name "Net-(D13-Pad8)")
      (node (ref U8) (pin 7))
      (node (ref D13) (pin 8)))
    (net (code 89) (name "Net-(D13-Pad6)")
      (node (ref D13) (pin 6))
      (node (ref U8) (pin 8)))
    (net (code 90) (name "Net-(D12-Pad12)")
      (node (ref U8) (pin 9))
      (node (ref D12) (pin 12)))
    (net (code 91) (name "Net-(D16-Pad9)")
      (node (ref D16) (pin 9))
      (node (ref U9) (pin 10)))
    (net (code 92) (name "Net-(D16-Pad8)")
      (node (ref U9) (pin 11))
      (node (ref D16) (pin 8)))
    (net (code 93) (name "Net-(D16-Pad6)")
      (node (ref U9) (pin 12))
      (node (ref D16) (pin 6)))
    (net (code 94) (name "Net-(D15-Pad12)")
      (node (ref D15) (pin 12))
      (node (ref U9) (pin 13)))
    (net (code 95) (name "Net-(D15-Pad9)")
      (node (ref U9) (pin 14))
      (node (ref D15) (pin 9)))
    (net (code 96) (name "Net-(D15-Pad8)")
      (node (ref D15) (pin 8))
      (node (ref U9) (pin 15)))
    (net (code 97) (name "Net-(D15-Pad6)")
      (node (ref D15) (pin 6))
      (node (ref U9) (pin 16)))
    (net (code 98) (name "Net-(D14-Pad12)")
      (node (ref D14) (pin 12))
      (node (ref U9) (pin 17)))
    (net (code 99) (name "Net-(D14-Pad9)")
      (node (ref D14) (pin 9))
      (node (ref U9) (pin 18)))
    (net (code 100) (name "Net-(D14-Pad8)")
      (node (ref U9) (pin 19))
      (node (ref D14) (pin 8)))
    (net (code 101) (name "Net-(D14-Pad6)")
      (node (ref U9) (pin 20))
      (node (ref D14) (pin 6)))
    (net (code 102) (name "Net-(D17-Pad12)")
      (node (ref U9) (pin 5))
      (node (ref D17) (pin 12)))
    (net (code 103) (name "Net-(R40-Pad2)")
      (node (ref U9) (pin 23))
      (node (ref R40) (pin 2))
      (node (ref R41) (pin 2)))
    (net (code 104) (name "Net-(D17-Pad9)")
      (node (ref U9) (pin 6))
      (node (ref D17) (pin 9)))
    (net (code 105) (name "Net-(D17-Pad8)")
      (node (ref D17) (pin 8))
      (node (ref U9) (pin 7)))
    (net (code 106) (name "Net-(D17-Pad6)")
      (node (ref U9) (pin 8))
      (node (ref D17) (pin 6)))
    (net (code 107) (name "Net-(D16-Pad12)")
      (node (ref U9) (pin 9))
      (node (ref D16) (pin 12)))))