-
Notifications
You must be signed in to change notification settings - Fork 0
/
STS1_template.net
1856 lines (1856 loc) · 75.9 KB
/
STS1_template.net
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
(export (version D)
(design
(source D:\Uni\Spaceteam\COBC_HW_git\STS1_COBC_HW\STS1_template.sch)
(date "01.12.2021 18:19:44")
(tool "Eeschema (5.1.10)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "STS1 COBC HW")
(company "TU Wien Space Team")
(rev 1.0)
(date 31.07.2021)
(source STS1_template.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /STS1_COBC_Memories/) (tstamps /612A52BF/)
(title_block
(title)
(company)
(rev)
(date)
(source STS1_COBC_Memories.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /STS1_RF/) (tstamps /6127F98A/)
(title_block
(title)
(company)
(rev)
(date)
(source STS1_RF.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /STS1_PowerRegulation/) (tstamps /61293CFB/)
(title_block
(title)
(company)
(rev)
(date)
(source STS1_PowerRegulation.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /STS1_Connector/) (tstamps /6188C1B2/)
(title_block
(title)
(company)
(rev)
(date)
(source STS1_Connector.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /STS1_COBC_uC/) (tstamps /61272FBF/)
(title_block
(title)
(company)
(rev)
(date)
(source STS1_COBC_uC.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref FID1)
(value Fiducial)
(footprint Fiducial:Fiducial_0.75mm_Mask1.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 602E47B3))
(comp (ref FID2)
(value Fiducial)
(footprint Fiducial:Fiducial_0.75mm_Mask1.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 602E4CE1))
(comp (ref FID3)
(value Fiducial)
(footprint Fiducial:Fiducial_0.75mm_Mask1.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 602E4F2B))
(comp (ref FID4)
(value Fiducial)
(footprint Fiducial:Fiducial_0.75mm_Mask1.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 602E5011))
(comp (ref H1)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 602E546E))
(comp (ref H2)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 602E5764))
(comp (ref H3)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 602E5AE8))
(comp (ref H4)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 602E5E41))
(comp (ref U1)
(value coordinate_system)
(footprint STS:Coordinates)
(libsource (lib STS-con) (part coordinate_system) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 602F576D))
(comp (ref FLASH1)
(value W25Q01JVZEIQ)
(footprint W25Q01JVZEIQ:SON127P800X600X80-9N-D)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/WBND/WBND-S-A0009189314/WBND-S-A0009189314-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(fields
(field (name "Arrow Part Number") W25Q01JVZEIQ)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/w25q01jvzeiq/winbond-electronics)
(field (name Description) "NOR Flash spiFlash, 1G-bit, 4Kb Uniform Sector")
(field (name Height) 0.8)
(field (name Manufacturer_Name) Winbond)
(field (name Manufacturer_Part_Number) W25Q01JVZEIQ)
(field (name "Mouser Part Number") 454-W25Q01JVZEIQ)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Winbond/W25Q01JVZEIQ?qs=YwPsRIUVAOcr57sw9ZL5fQ%3D%3D))
(libsource (lib W25Q01JVZEIQ) (part W25Q01JVZEIQ) (description "NOR Flash spiFlash, 1G-bit, 4Kb Uniform Sector"))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 612A5631))
(comp (ref FRAM1)
(value CY15B108QN-40SXI)
(footprint CY15B108QN-40SXI:SOIC127P800X203-8N)
(datasheet https://www.cypress.com/file/444186/download)
(fields
(field (name "Arrow Part Number") CY15B108QN-40SXI)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/cy15b108qn-40sxi/cypress-semiconductor?region=nac)
(field (name Description) CY15B108QN-40SXI)
(field (name Height) 2.03)
(field (name Manufacturer_Name) "Cypress Semiconductor")
(field (name Manufacturer_Part_Number) CY15B108QN-40SXI)
(field (name "Mouser Part Number") 727-CY15B108QN-40SXI)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Cypress-Semiconductor/CY15B108QN-40SXI?qs=P1JMDcb91o4DSS%2FkAQM5uA%3D%3D))
(libsource (lib CY15B108QN-40SXI) (part CY15B108QN-40SXI) (description CY15B108QN-40SXI))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 612A5F08))
(comp (ref C11)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 61691DC4))
(comp (ref C12)
(value 47u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 61692327))
(comp (ref C17)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 61694B9B))
(comp (ref C18)
(value 47u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 61694BA1))
(comp (ref J54)
(value Conn_01x01_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 6182DF07))
(comp (ref J55)
(value Conn_01x01_Female)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Female) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 6182EA34))
(comp (ref J2)
(value Conn_01x03_Male)
(footprint STS1library:PinHeader_1x03_P2.54mm_Vertical_umdieEcke)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 61B42D81))
(comp (ref TP6)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 61B6C0DB))
(comp (ref TP7)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_Memories/) (tstamps /612A52BF/))
(tstamp 61B6DAE9))
(comp (ref RF1)
(value LoRa1268F30)
(footprint STS1_RF:LoRa1268F30)
(libsource (lib STS1_COBC_RFM) (part LoRa126XF30) (description ""))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 612D3FCA))
(comp (ref RF2)
(value RF4463F30)
(footprint STS1_RF:STS1_RF4463F30)
(libsource (lib STS1_COBC_RFM) (part RF4463F30) (description ""))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 612D4F50))
(comp (ref C14)
(value 47u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 612D80B3))
(comp (ref C13)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 612D8225))
(comp (ref C16)
(value 47u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 612DB4E1))
(comp (ref C15)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 612DBAA7))
(comp (ref J39)
(value Conn_Coaxial)
(footprint Connector_Coaxial:SMA_Amphenol_901-144_Vertical)
(datasheet " ~")
(libsource (lib Connector) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 616A0FD1))
(comp (ref J40)
(value Conn_Coaxial)
(footprint Connector_Coaxial:SMA_Amphenol_901-144_Vertical)
(datasheet " ~")
(libsource (lib Connector) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 616A364E))
(comp (ref D5)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 616A59D7))
(comp (ref R13)
(value 15)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 616A6F08))
(comp (ref J7)
(value Conn_01x03_Male)
(footprint STS1library:PinHeader_1x03_P2.54mm_Vertical_umdieEcke)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 61B38DDD))
(comp (ref J8)
(value Conn_01x03_Male)
(footprint STS1library:PinHeader_1x03_P2.54mm_Vertical_umdieEcke)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 61B3D41B))
(comp (ref J11)
(value Conn_01x03_Male)
(footprint STS1library:PinHeader_1x03_P2.54mm_Vertical_umdieEcke)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 61B3F95D))
(comp (ref J10)
(value Conn_01x03_Male)
(footprint STS1library:PinHeader_1x03_P2.54mm_Vertical_umdieEcke)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 61B41394))
(comp (ref TP8)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 61B6A550))
(comp (ref TP9)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_RF/) (tstamps /6127F98A/))
(tstamp 61B6AEF9))
(comp (ref U2)
(value TPS61288)
(footprint STS1_DCDC:VQFN-HR)
(datasheet https://www.ti.com/lit/ds/symlink/tps61288.pdf?ts=1634630970571)
(libsource (lib STS1_DCDC) (part TPS61288) (description ""))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 617056A5))
(comp (ref C25)
(value 2.2uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name Part) "C1608X7R1A225K080AC ")
(field (name Voltage) 10V))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61712450))
(comp (ref L1)
(value 1uH)
(footprint STS1_DCDC:XAL8080)
(datasheet ~)
(fields
(field (name Part) "XAL8080-102MEB "))
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61712D19))
(comp (ref C24)
(value 150nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 617133FA))
(comp (ref C23)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61713BDE))
(comp (ref C22)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61714238))
(comp (ref C21)
(value 47uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A)
(datasheet ~)
(fields
(field (name Part) "TR3A476K6R3C0800 "))
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61714747))
(comp (ref R7)
(value 357k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61717075))
(comp (ref R8)
(value 48k7)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61717628))
(comp (ref R6)
(value 48k7)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61718B8B))
(comp (ref C26)
(value 39nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 617191CB))
(comp (ref C27)
(value 82pF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61719FDA))
(comp (ref C28)
(value 68uF)
(footprint Capacitor_SMD:C_2220_5650Metric)
(datasheet ~)
(fields
(field (name Part) "C5750X5R1A686M230KA ")
(field (name Voltage) 10V))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 6171AF96))
(comp (ref C29)
(value 68uF)
(footprint Capacitor_SMD:C_2220_5650Metric)
(datasheet ~)
(fields
(field (name Part) "C5750X5R1A686M230KA ")
(field (name Voltage) 10V))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 6171B43B))
(comp (ref C30)
(value 68uF)
(footprint Capacitor_SMD:C_2220_5650Metric)
(datasheet ~)
(fields
(field (name Part) "C5750X5R1A686M230KA ")
(field (name Voltage) 10V))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 6171B9A7))
(comp (ref C31)
(value 68uF)
(footprint Capacitor_SMD:C_2220_5650Metric)
(datasheet ~)
(fields
(field (name Part) "C5750X5R1A686M230KA ")
(field (name Voltage) 10V))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 6171BF8D))
(comp (ref U3)
(value MCP1725-3302E_MC)
(footprint STS1_3V3:MCP1725-3302E&slash_MC)
(datasheet https://www.farnell.com/datasheets/808903.pdf)
(libsource (lib STS1_3V3) (part MCP1725-3302E_MC) (description ""))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 6199338A))
(comp (ref C33)
(value 4.7µF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61995988))
(comp (ref C35)
(value 4.7µF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 619A5F9B))
(comp (ref C34)
(value 0.1µ)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 6197D6D8))
(comp (ref R9)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 6197F7C2))
(comp (ref D4)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61981BA6))
(comp (ref TP11)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61B6866A))
(comp (ref TP10)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_PowerRegulation/) (tstamps /61293CFB/))
(tstamp 61B68D6F))
(comp (ref CSBI_1)
(value Conn_02x25_Odd_Even)
(footprint Connector_PinHeader_2.00mm:PinHeader_2x25_P2.00mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x25_Odd_Even) (description "Generic connector, double row, 02x25, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_Connector/) (tstamps /6188C1B2/))
(tstamp 6179B797))
(comp (ref CSBI_2)
(value Conn_02x25_Odd_Even)
(footprint Connector_PinHeader_2.00mm:PinHeader_2x25_P2.00mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x25_Odd_Even) (description "Generic connector, double row, 02x25, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_Connector/) (tstamps /6188C1B2/))
(tstamp 617AB6CD))
(comp (ref R2)
(value 100)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 6128DC48))
(comp (ref D1)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 6128E4A7))
(comp (ref R3)
(value 100)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61290EF9))
(comp (ref D2)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61291BAB))
(comp (ref C8)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612A5C5C))
(comp (ref C7)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612B6B9F))
(comp (ref C10)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612BF573))
(comp (ref C9)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612C5059))
(comp (ref C5)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612CB14D))
(comp (ref C4)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612D429B))
(comp (ref C6)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612E132B))
(comp (ref C3)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612EE250))
(comp (ref Y1)
(value 12MHz)
(footprint Crystal:Crystal_SMD_5032-2Pin_5.0x3.2mm_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612BED67))
(comp (ref R1)
(value 220)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612CF8F5))
(comp (ref C1)
(value 20p)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612D8E7E))
(comp (ref C2)
(value 20p)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 612D97C8))
(comp (ref J51)
(value Conn_01x01_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61748D93))
(comp (ref J50)
(value Conn_01x01_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 6176038F))
(comp (ref J46)
(value Conn_01x01_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 617683F0))
(comp (ref J45)
(value Conn_01x01_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 6177F09C))
(comp (ref J53)
(value Conn_01x01_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61674170))
(comp (ref R4)
(value 4k7)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 6167417A))
(comp (ref IC2)
(value STWD100PYW83F)
(footprint SamacSys_Parts:SOT65P210X110-5N)
(datasheet http://uk.rs-online.com/web/p/products/8291513P)
(fields
(field (name Description) "STMicroelectronics STWD100PYW83F, Watchdog Timer, 2.7 5.5 V, 5-Pin SOT-323")
(field (name Height) 1.1)
(field (name Manufacturer_Name) STMicroelectronics)
(field (name Manufacturer_Part_Number) STWD100PYW83F)
(field (name "RS Part Number") 8291513P)
(field (name "RS Price/Stock") http://uk.rs-online.com/web/p/products/8291513P))
(libsource (lib SamacSys_Parts) (part STWD100PYW83F) (description "STMicroelectronics STWD100PYW83F, Watchdog Timer, 2.7 5.5 V, 5-Pin SOT-323"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61674186))
(comp (ref J52)
(value Conn_01x01_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61674196))
(comp (ref R5)
(value 100)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 6167419D))
(comp (ref D3)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 616741A5))
(comp (ref C19)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 616741B1))
(comp (ref C20)
(value 47u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 616741B7))
(comp (ref C32)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 6170EE2D))
(comp (ref J5)
(value Conn_01x01_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 6198BA28))
(comp (ref J3)
(value Conn_ARM_JTAG_SWD_10)
(footprint Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical_SMD)
(datasheet http://infocenter.arm.com/help/topic/com.arm.doc.ddi0314h/DDI0314H_coresight_components_trm.pdf)
(libsource (lib Connector) (part Conn_ARM_JTAG_SWD_10) (description "Cortex Debug Connector, standard ARM Cortex-M SWD and JTAG interface"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61A5FBC7))
(comp (ref J12)
(value Conn_01x03_Male)
(footprint STS1library:PinHeader_1x03_P2.54mm_Vertical_umdieEcke)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61B1FD7D))
(comp (ref J6)
(value Conn_01x03_Male)
(footprint STS1library:PinHeader_1x03_P2.54mm_Vertical_umdieEcke)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61B517D8))
(comp (ref IC1)
(value STM32F411RET6TR)
(footprint STM32F411RET6TR:QFP50P1200X1200X160-64N)
(datasheet https://www.st.com/resource/en/datasheet/stm32f411re.pdf)
(fields
(field (name "Arrow Part Number") STM32F411RET6TR)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/stm32f411ret6tr/stmicroelectronics)
(field (name Description) "ARM Microcontrollers - MCU High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator")
(field (name Height) 1.6)
(field (name Manufacturer_Name) STMicroelectronics)
(field (name Manufacturer_Part_Number) STM32F411RET6TR)
(field (name "Mouser Part Number") 511-STM32F411RET6TR)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/STMicroelectronics/STM32F411RET6TR?qs=BA62vJVifGpaf6czDatkOw%3D%3D))
(libsource (lib STM32F411RET6TR) (part STM32F411RET6TR) (description "ARM Microcontrollers - MCU High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61274132))
(comp (ref TP1)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61BEB8B5))
(comp (ref TP4)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61B32C23))
(comp (ref TP5)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61B34C92))
(comp (ref TP3)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61B36800))
(comp (ref TP2)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61B3896D))
(comp (ref TP14)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61B6F646))
(comp (ref TP15)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61B70087))
(comp (ref TP13)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61B70D95))
(comp (ref TP12)
(value TestPoint)
(footprint STS1library:STS1_Testpoint)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /STS1_COBC_uC/) (tstamps /61272FBF/))
(tstamp 61B721D9)))
(libparts
(libpart (lib CY15B108QN-40SXI) (part CY15B108QN-40SXI)
(description CY15B108QN-40SXI)
(docs https://www.cypress.com/file/444186/download)
(fields
(field (name Reference) IC)
(field (name Value) CY15B108QN-40SXI)
(field (name Footprint) SOIC127P800X203-8N)
(field (name Datasheet) https://www.cypress.com/file/444186/download)
(field (name Description) CY15B108QN-40SXI)
(field (name Height) 2.03)
(field (name Manufacturer_Name) "Cypress Semiconductor")
(field (name Manufacturer_Part_Number) CY15B108QN-40SXI)
(field (name "Mouser Part Number") 727-CY15B108QN-40SXI)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Cypress-Semiconductor/CY15B108QN-40SXI?qs=P1JMDcb91o4DSS%2FkAQM5uA%3D%3D)
(field (name "Arrow Part Number") CY15B108QN-40SXI)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/cy15b108qn-40sxi/cypress-semiconductor?region=nac))
(pins
(pin (num 1) (name ~CS) (type passive))
(pin (num 2) (name SO) (type passive))
(pin (num 3) (name ~WP) (type passive))
(pin (num 4) (name VSS) (type passive))
(pin (num 5) (name SI) (type passive))
(pin (num 6) (name SCK) (type passive))
(pin (num 7) (name DNU) (type passive))
(pin (num 8) (name VDD) (type passive))))
(libpart (lib Connector) (part Conn_01x01_Female)
(description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x01_Female))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib Connector) (part Conn_01x01_Male)
(description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x01_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib Connector) (part Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector) (part Conn_ARM_JTAG_SWD_10)
(description "Cortex Debug Connector, standard ARM Cortex-M SWD and JTAG interface")
(docs http://infocenter.arm.com/help/topic/com.arm.doc.ddi0314h/DDI0314H_coresight_components_trm.pdf)
(footprints
(fp PinHeader?2x05?P1.27mm*))
(fields
(field (name Reference) J)
(field (name Value) Conn_ARM_JTAG_SWD_10))
(pins
(pin (num 1) (name VTref) (type power_in))
(pin (num 2) (name SWDIO/TMS) (type BiDi))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name SWDCLK/TCK) (type output))
(pin (num 5) (name GND) (type passive))
(pin (num 6) (name SWO/TDO) (type input))
(pin (num 7) (name KEY) (type NotConnected))
(pin (num 8) (name NC/TDI) (type output))
(pin (num 9) (name GNDDetect) (type passive))
(pin (num 10) (name ~RESET~) (type openCol))))
(libpart (lib Connector) (part Conn_Coaxial)
(description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)")
(docs " ~")
(footprints
(fp *BNC*)
(fp *SMA*)
(fp *SMB*)
(fp *SMC*)
(fp *Cinch*))
(fields
(field (name Reference) J)
(field (name Value) Conn_Coaxial))
(pins
(pin (num 1) (name In) (type passive))
(pin (num 2) (name Ext) (type passive))))
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) TestPoint))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x25_Odd_Even)
(description "Generic connector, double row, 02x25, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x25_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))
(pin (num 27) (name Pin_27) (type passive))
(pin (num 28) (name Pin_28) (type passive))
(pin (num 29) (name Pin_29) (type passive))
(pin (num 30) (name Pin_30) (type passive))
(pin (num 31) (name Pin_31) (type passive))