-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgArm.net
1720 lines (1720 loc) · 55.3 KB
/
ProgArm.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 /home/alex/git/ProgArm-Hardware/ProgArm.sch)
(date "Wed 10 Dec 2014 05:40:13 AM EET")
(tool "eeschema (25-Oct-2014 BZR 4029)-stable"))
(components
(comp (ref X1)
(value 32.768kHz)
(datasheet http://microcrystal.com/images/_PDF/2_Crystal_Metal-Package/MS3V-T1R_Pd.pdf)
(libsource (lib device) (part CRYSTAL))
(sheetpath (names /) (tstamps /))
(tstamp 52C1CA15))
(comp (ref C10)
(value 6pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52C1CC78))
(comp (ref C6)
(value 6pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52C1CC87))
(comp (ref X2)
(value 8MHz)
(libsource (lib device) (part CRYSTAL))
(sheetpath (names /) (tstamps /))
(tstamp 52C1CF17))
(comp (ref C11)
(value 18pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52C1D2D2))
(comp (ref C12)
(value 18pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52C1D2E1))
(comp (ref R39)
(value 27R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52C1ED54))
(comp (ref R40)
(value 27R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52C1ED63))
(comp (ref L5)
(value Ferrite_Bead)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 52C1F63D))
(comp (ref C36)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52C1F94D))
(comp (ref C33)
(value 47uF)
(libsource (lib device) (part CAPAPOL))
(sheetpath (names /) (tstamps /))
(tstamp 52C1F95C))
(comp (ref R22)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52C46B3A))
(comp (ref BT1)
(value "3.7V Li-ion")
(libsource (lib device) (part BATTERY))
(sheetpath (names /) (tstamps /))
(tstamp 52D6D05B))
(comp (ref C1)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D7011A))
(comp (ref C18)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52E2F3C6))
(comp (ref R31)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52E3182F))
(comp (ref R29)
(value 300R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52E31D26))
(comp (ref R28)
(value 100k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52EC3C80))
(comp (ref P17)
(value MicroUSB)
(libsource (lib conn) (part CONN_5))
(sheetpath (names /) (tstamps /))
(tstamp 52F41441))
(comp (ref D4)
(value DIODE)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 52E30BBB))
(comp (ref R3)
(value 4.7k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52FB9A84))
(comp (ref R5)
(value 4.7k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52FB9A8A))
(comp (ref R30)
(value 100k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52FBB2F5))
(comp (ref JP1)
(value JUMPER)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 52FD7101))
(comp (ref R23)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5308C58E))
(comp (ref R24)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5308C5A4))
(comp (ref L2)
(value 2.2uH)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 53934B0A))
(comp (ref SW2)
(value ON/OFF)
(libsource (lib device) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 53939AF0))
(comp (ref SW1)
(value FW/RST)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 539601D2))
(comp (ref R7)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 539606D7))
(comp (ref R1)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53960C0A))
(comp (ref P2)
(value SPI_Port)
(libsource (lib conn) (part CONN_6))
(sheetpath (names /) (tstamps /))
(tstamp 539C93CC))
(comp (ref R18)
(value 300R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A21C97))
(comp (ref R19)
(value 300R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A21C9D))
(comp (ref R20)
(value 300R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A21CA3))
(comp (ref R13)
(value 100k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A38108))
(comp (ref R14)
(value 300R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A38114))
(comp (ref U4)
(value STM32F103R)
(footprint LQFP64)
(libsource (lib stm32f103r) (part STM32F103R))
(sheetpath (names /) (tstamps /))
(tstamp 53A4CA76))
(comp (ref M1)
(value MOTOR)
(libsource (lib misc) (part MOTOR))
(sheetpath (names /) (tstamps /))
(tstamp 53A5A9DE))
(comp (ref Q1)
(value MOS_P)
(libsource (lib misc) (part MOS_P))
(sheetpath (names /) (tstamps /))
(tstamp 53A5AE10))
(comp (ref Q2)
(value MOS_P)
(libsource (lib misc) (part MOS_P))
(sheetpath (names /) (tstamps /))
(tstamp 53A5AEB2))
(comp (ref Q8)
(value MOS_P)
(libsource (lib misc) (part MOS_P))
(sheetpath (names /) (tstamps /))
(tstamp 53A5AEEE))
(comp (ref Q7)
(value MOS_P)
(libsource (lib misc) (part MOS_P))
(sheetpath (names /) (tstamps /))
(tstamp 53A5AF11))
(comp (ref Q3)
(value MOS_P)
(libsource (lib misc) (part MOS_P))
(sheetpath (names /) (tstamps /))
(tstamp 53A5AF2A))
(comp (ref Q4)
(value MOS_P)
(libsource (lib misc) (part MOS_P))
(sheetpath (names /) (tstamps /))
(tstamp 53A5AF37))
(comp (ref Q5)
(value MOS_P)
(libsource (lib misc) (part MOS_P))
(sheetpath (names /) (tstamps /))
(tstamp 53A5AF51))
(comp (ref C4)
(value 4.7uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53D1247D))
(comp (ref R4)
(value 33k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53D12A7D))
(comp (ref P4)
(value SWD_Port)
(libsource (lib conn) (part CONN_4))
(sheetpath (names /) (tstamps /))
(tstamp 5465225A))
(comp (ref U8)
(value LPS25H)
(libsource (lib barometers) (part LPS25H))
(sheetpath (names /) (tstamps /))
(tstamp 5467C07B))
(comp (ref U6)
(value BQ27410)
(libsource (lib bq) (part BQ27410))
(sheetpath (names /) (tstamps /))
(tstamp 546A60C0))
(comp (ref C20)
(value 470nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 546A647E))
(comp (ref C25)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 546A73A0))
(comp (ref R26)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 546A7B4F))
(comp (ref C24)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 546A7B6A))
(comp (ref R38)
(value 100k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547206F7))
(comp (ref C2)
(value 1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54720C9D))
(comp (ref C3)
(value 10uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54720E62))
(comp (ref D1)
(value LED)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5472261F))
(comp (ref R6)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5472262E))
(comp (ref C13)
(value 47nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5472321F))
(comp (ref U2)
(value BQ24297)
(libsource (lib bq) (part BQ24297))
(sheetpath (names /) (tstamps /))
(tstamp 54723B99))
(comp (ref C15)
(value 4.7uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54723BA8))
(comp (ref C17)
(value 10uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547250E8))
(comp (ref C16)
(value 10uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547250F7))
(comp (ref U3)
(value LM3668)
(libsource (lib lm) (part LM3668))
(sheetpath (names /) (tstamps /))
(tstamp 5472808D))
(comp (ref C14)
(value 22uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54728999))
(comp (ref R10)
(value 100k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 54728F24))
(comp (ref C8)
(value 10uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54729C1A))
(comp (ref L1)
(value 2.2uH)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 5472A3A1))
(comp (ref R2)
(value 240R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547287A1))
(comp (ref R11)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5473B1DE))
(comp (ref R12)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5473B1ED))
(comp (ref X3)
(value 16MHz)
(libsource (lib device) (part CRYSTAL))
(sheetpath (names /) (tstamps /))
(tstamp 54745013))
(comp (ref C34)
(value 12pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54745038))
(comp (ref C35)
(value 12pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54745047))
(comp (ref C22)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547B9673))
(comp (ref C23)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547B9AD2))
(comp (ref U5)
(value MPU9250)
(libsource (lib mpu6050) (part MPU9250))
(sheetpath (names /) (tstamps /))
(tstamp 547BAA7B))
(comp (ref P7)
(value T_SENS)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 547B9461))
(comp (ref U9)
(value NRF8001)
(libsource (lib nrf) (part NRF8001))
(sheetpath (names /) (tstamps /))
(tstamp 547E339B))
(comp (ref B1)
(value 8001_BALUN)
(libsource (lib nrf) (part 8001_BALUN))
(sheetpath (names /) (tstamps /))
(tstamp 547E33FE))
(comp (ref R32)
(value 22k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547E35D4))
(comp (ref L4)
(value 15nH)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 547E397F))
(comp (ref L3)
(value 10uH)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 547E398E))
(comp (ref C32)
(value 1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547E447B))
(comp (ref C37)
(value 2.2nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547E56A1))
(comp (ref C28)
(value 4.7uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547E6470))
(comp (ref C30)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547E647F))
(comp (ref C31)
(value 33nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547E648E))
(comp (ref P15)
(value RXD)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 547E9AC3))
(comp (ref P10)
(value TXD)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 547E9AF8))
(comp (ref R35)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547EA537))
(comp (ref R36)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547EA546))
(comp (ref R37)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547EA555))
(comp (ref R33)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547EBE4D))
(comp (ref R34)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547EBE5C))
(comp (ref R25)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547E6E67))
(comp (ref R21)
(value 300R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547E6E74))
(comp (ref Q6)
(value MOS_P)
(libsource (lib misc) (part MOS_P))
(sheetpath (names /) (tstamps /))
(tstamp 547E6E7B))
(comp (ref U1)
(value TPS78330)
(libsource (lib tps) (part TPS78330))
(sheetpath (names /) (tstamps /))
(tstamp 547F2B19))
(comp (ref R8)
(value 100R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547F44B4))
(comp (ref C5)
(value 1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547F46E7))
(comp (ref C7)
(value 0.03F)
(libsource (lib device) (part CAPAPOL))
(sheetpath (names /) (tstamps /))
(tstamp 547F4D5F))
(comp (ref U7)
(value SI1143)
(libsource (lib si) (part SI1143))
(sheetpath (names /) (tstamps /))
(tstamp 547F51A2))
(comp (ref R17)
(value 4.7k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547F55FE))
(comp (ref C21)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547F5EBB))
(comp (ref D3)
(value LED)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 547F74EE))
(comp (ref D2)
(value LED)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 547F750C))
(comp (ref C27)
(value 22uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547F8B86))
(comp (ref C29)
(value 22uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 547F8B95))
(comp (ref R27)
(value 30R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 547F9BB0))
(comp (ref P1)
(value I²C_Port)
(libsource (lib conn) (part CONN_4))
(sheetpath (names /) (tstamps /))
(tstamp 54822800))
(comp (ref P9)
(value RING_LEDS_Port)
(libsource (lib conn) (part CONN_3))
(sheetpath (names /) (tstamps /))
(tstamp 54824D0C))
(comp (ref P8)
(value RING_IR_OUT)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 548259BF))
(comp (ref P16)
(value RING_BUTTONS_Port)
(libsource (lib conn) (part CONN_2))
(sheetpath (names /) (tstamps /))
(tstamp 5482656C))
(comp (ref P11)
(value RING_VCC)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 54826928))
(comp (ref P12)
(value RING_GND)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 54826937))
(comp (ref P14)
(value RING_GPIOA_4_Port)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 54826154))
(comp (ref P3)
(value UART_Port)
(libsource (lib conn) (part CONN_4))
(sheetpath (names /) (tstamps /))
(tstamp 5482A400))
(comp (ref P6)
(value TIM1_Port)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 5482AF67))
(comp (ref P5)
(value GPIOA_1_2_Port)
(libsource (lib conn) (part CONN_2))
(sheetpath (names /) (tstamps /))
(tstamp 5482BAE6))
(comp (ref P13)
(value RING_GPIOA_3_Port)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 5482BB00))
(comp (ref R15)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 54852880))
(comp (ref R16)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5485288F))
(comp (ref C19)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54858A86))
(comp (ref C9)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54850967))
(comp (ref C26)
(value 100nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54851EB3))
(comp (ref R9)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 54862361))
(comp (ref A1)
(value ANT)
(libsource (lib ant) (part ANT))
(sheetpath (names /) (tstamps /))
(tstamp 5487C6FB)))
(libparts
(libpart (lib bq) (part BQ24297)
(fields
(field (name Reference) U)
(field (name Value) BQ24297)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D+) (type BiDi))
(pin (num 3) (name D-) (type BiDi))
(pin (num 4) (name STAT) (type input))
(pin (num 5) (name SCL) (type input))
(pin (num 6) (name SDA) (type BiDi))
(pin (num 7) (name INT) (type input))
(pin (num 8) (name OTG) (type input))
(pin (num 9) (name CE) (type input))
(pin (num 10) (name ILIM) (type output))
(pin (num 11) (name TS) (type input))
(pin (num 12) (name QON) (type input))
(pin (num 13) (name BAT) (type power_in))
(pin (num 14) (name BAT) (type power_in))
(pin (num 15) (name SYS) (type passive))
(pin (num 16) (name SYS) (type power_out))
(pin (num 17) (name PGND) (type power_in))
(pin (num 18) (name PGND) (type power_in))
(pin (num 19) (name SW) (type power_out))
(pin (num 20) (name SW) (type passive))
(pin (num 21) (name BTST) (type output))
(pin (num 22) (name REGN) (type power_out))
(pin (num 23) (name PMID) (type output))
(pin (num 24) (name VBUS) (type power_in))))
(libpart (lib bq) (part BQ27410)
(fields
(field (name Reference) U)
(field (name Value) BQ27410)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name BIN) (type input))
(pin (num 2) (name REG25) (type power_out))
(pin (num 3) (name REGIN) (type power_in))
(pin (num 4) (name BAT) (type input))
(pin (num 5) (name VCC) (type power_in))
(pin (num 6) (name VSS) (type power_in))
(pin (num 7) (name SRP) (type input))
(pin (num 8) (name SRN) (type input))
(pin (num 9) (name NC) (type NotConnected))
(pin (num 10) (name SDA) (type BiDi))
(pin (num 11) (name SCL) (type input))
(pin (num 12) (name GPOUT) (type output))))
(libpart (lib barometers) (part LPS25H)
(fields
(field (name Reference) U)
(field (name Value) LPS25H)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name VDDIO) (type power_in))
(pin (num 2) (name SCL) (type input))
(pin (num 3) (name GNDR) (type input))
(pin (num 4) (name SDA) (type BiDi))
(pin (num 5) (name SA0) (type input))
(pin (num 6) (name SPIEN) (type input))
(pin (num 7) (name INT) (type output))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name GND) (type power_in))
(pin (num 10) (name VDD) (type power_in))))
(libpart (lib stm32f103r) (part STM32F103R)
(fields
(field (name Reference) U)
(field (name Value) STM32F103R)
(field (name Footprint) LQFP64)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name VBAT) (type power_in))
(pin (num 2) (name PC13/TAMPER_RTC) (type BiDi))
(pin (num 3) (name PC14/OSC32_IN) (type BiDi))
(pin (num 4) (name PC15/OSC32_OUT) (type BiDi))
(pin (num 5) (name OSC_IN) (type input))
(pin (num 6) (name OSC_OUT) (type output))
(pin (num 7) (name ~NRST) (type input))
(pin (num 8) (name ADC1_IN10/PC0) (type BiDi))
(pin (num 9) (name ADC1_IN11/PC1) (type BiDi))
(pin (num 10) (name ADC1_IN12/PC2) (type BiDi))
(pin (num 11) (name ADC1_IN13/PC3) (type BiDi))
(pin (num 12) (name VSSA) (type power_in))
(pin (num 13) (name VDDA) (type power_in))
(pin (num 14) (name WKUP/USART2_CTS/ADC1_IN0/TIM2_CH1_ETR/PA0) (type BiDi))
(pin (num 15) (name USART2_RTS/ADC1_IN1/TIM2_CH2/PA1) (type BiDi))
(pin (num 16) (name USART2_TX/ADC1_IN2/TIM2_CH3/TIM15_CH1/PA2) (type BiDi))
(pin (num 17) (name USART2_RX/ADC1_IN3/TIM2_CH4/TIM15_CH2/PA3) (type BiDi))
(pin (num 18) (name VSS) (type power_in))
(pin (num 19) (name VDD) (type power_in))
(pin (num 20) (name SPI1_NSS/ADC1_IN4/USART2_CK/DAC1_OUT/PA4) (type BiDi))
(pin (num 21) (name SPI1_SCK/ADC1_IN5/DAC2_OUT/PA5) (type BiDi))
(pin (num 22) (name SPI1_MISO/ADC1_IN6/TIM3_CH1/PA6) (type BiDi))
(pin (num 23) (name SPI1_MOSI/ADC1_IN7/TIM3_CH2/PA7) (type BiDi))
(pin (num 24) (name ADC1_IN14/PC4) (type BiDi))
(pin (num 25) (name ADC1_IN15/PC5) (type BiDi))
(pin (num 26) (name PB0/ADC1_IN8/TIM3_CH3) (type BiDi))
(pin (num 27) (name PB1/ADC1_IN9/TIM3_CH4) (type BiDi))
(pin (num 28) (name PB2/BOOT1) (type BiDi))
(pin (num 29) (name PB10/I2C2_SCL/USART3_TX) (type BiDi))
(pin (num 30) (name PB11/I2C2_SDA/USART3_RX) (type BiDi))
(pin (num 31) (name VSS) (type power_in))
(pin (num 32) (name VDD) (type power_in))
(pin (num 33) (name PB12/SPI2_NSS/_I2C2_SMBA/TIM1_BKIN/USART3_CK) (type BiDi))
(pin (num 34) (name PB13/SPI2_SCK/TIM1_CH1N/USART3_CTS) (type BiDi))
(pin (num 35) (name PB14/SPI2_MISO/TIM1_CH2N/USART3_RTS) (type BiDi))
(pin (num 36) (name PB15/SPI2_MOSI/TIM1_CH3N/TIM15_CH1N) (type BiDi))
(pin (num 37) (name PC6) (type BiDi))
(pin (num 38) (name PC7) (type BiDi))
(pin (num 39) (name PC8) (type BiDi))
(pin (num 40) (name PC9) (type BiDi))
(pin (num 41) (name USART1_CK/MCO/TIM1_CH1/PA8) (type BiDi))
(pin (num 42) (name USART1_TX/TIM1_CH2/TIM15_BKIN/PA9) (type BiDi))
(pin (num 43) (name USART1_RX/TIM1_CH3/TIM17_BKIN/PA10) (type BiDi))
(pin (num 44) (name USART1_CTS/TIM1_CH4/PA11) (type BiDi))
(pin (num 45) (name USART1_RTS/TIM1_ETR/PA12) (type BiDi))
(pin (num 46) (name JTMS/SWDIO/PA13) (type BiDi))
(pin (num 47) (name VSS) (type power_in))
(pin (num 48) (name VDD) (type power_in))
(pin (num 49) (name JTCK/SWCLK/PA14) (type BiDi))
(pin (num 50) (name JTDI/PA15) (type BiDi))
(pin (num 51) (name PC10) (type BiDi))
(pin (num 52) (name PC11) (type BiDi))
(pin (num 53) (name PC12) (type BiDi))
(pin (num 54) (name PD2/TIM3_ETR) (type BiDi))
(pin (num 55) (name PB3/JTDO) (type BiDi))
(pin (num 56) (name PB4/NJRST) (type BiDi))
(pin (num 57) (name PB5/I2C1_SMBA/TIM16_BKIN) (type BiDi))
(pin (num 58) (name PB6/I2C1_SCL/TIM4_CH1/TIM16_CH1N) (type BiDi))
(pin (num 59) (name PB7/I2C1_SDA/TIM4_CH2/TIM17_CH1N) (type BiDi))
(pin (num 60) (name BOOT0) (type input))
(pin (num 61) (name PB8/TIM4_CH3/TIM16_CH1/CEC) (type BiDi))
(pin (num 62) (name PB9/TIM4_CH4/TIM17_CH1) (type BiDi))
(pin (num 63) (name VSS) (type power_in))
(pin (num 64) (name VDD) (type power_in))))
(libpart (lib misc) (part MOS_P)
(fields
(field (name Reference) Q)
(field (name Value) MOS_P)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib misc) (part MOTOR)
(fields
(field (name Reference) M)
(field (name Value) MOTOR)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type power_in))
(pin (num 2) (name ~) (type power_in))))
(libpart (lib nrf) (part 8001_BALUN)
(fields
(field (name Reference) B)
(field (name Value) 8001_BALUN)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name Unbal) (type output))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name Bal1) (type BiDi))
(pin (num 4) (name Bal2) (type BiDi))
(pin (num 5) (name DC) (type power_in))
(pin (num 6) (name NC) (type NotConnected))))
(libpart (lib mpu6050) (part MPU9250)
(fields
(field (name Reference) U)
(field (name Value) MPU9250)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name RESV) (type input))
(pin (num 7) (name AUX_CL) (type output))
(pin (num 8) (name VDDIO) (type power_in))
(pin (num 9) (name AD0) (type input))
(pin (num 10) (name REG) (type power_out))
(pin (num 11) (name FSYNC) (type input))
(pin (num 12) (name INT) (type output))
(pin (num 13) (name VDD) (type power_in))
(pin (num 18) (name GND) (type power_in))
(pin (num 19) (name RESV) (type NotConnected))
(pin (num 20) (name RESV) (type input))
(pin (num 21) (name AUX_DA) (type BiDi))
(pin (num 22) (name nCS) (type input))
(pin (num 23) (name SCL) (type input))
(pin (num 24) (name SDA) (type BiDi))))
(libpart (lib lm) (part LM3668)
(fields
(field (name Reference) U)
(field (name Value) LM3668)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name Vout) (type power_out))
(pin (num 2) (name SW2) (type BiDi))
(pin (num 3) (name PGND) (type power_in))
(pin (num 4) (name SW1) (type BiDi))
(pin (num 5) (name PVIN) (type input))
(pin (num 6) (name EN) (type input))
(pin (num 7) (name VDD) (type power_in))
(pin (num 8) (name NC*) (type input))
(pin (num 9) (name SGND) (type power_in))
(pin (num 10) (name MODE) (type input))
(pin (num 11) (name VSEL) (type input))
(pin (num 12) (name FB) (type input))))
(libpart (lib tps) (part TPS78330)
(fields
(field (name Reference) U)
(field (name Value) TPS78330)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name IN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name OUT) (type power_out))))
(libpart (lib nrf) (part NRF8001)
(fields
(field (name Reference) U)
(field (name Value) NRF8001)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name DEC1) (type output))
(pin (num 3) (name DEC2) (type output))
(pin (num 4) (name XL2) (type output))
(pin (num 5) (name XL1) (type input))
(pin (num 6) (name ACTIVE) (type output))
(pin (num 7) (name TXD) (type output))
(pin (num 8) (name VSS) (type power_in))
(pin (num 9) (name VDD) (type input))
(pin (num 10) (name RXD) (type input))
(pin (num 11) (name SCK) (type input))
(pin (num 12) (name ~REQN) (type input))
(pin (num 13) (name MOSI) (type input))
(pin (num 14) (name MISO) (type output))
(pin (num 15) (name NC) (type NotConnected))
(pin (num 16) (name ~RDYN) (type output))
(pin (num 17) (name VSS) (type power_in))
(pin (num 18) (name VSS) (type power_in))
(pin (num 19) (name ~RESET) (type input))
(pin (num 20) (name VDD_PA) (type power_out))
(pin (num 21) (name ANT1) (type BiDi))
(pin (num 22) (name ANT2) (type BiDi))
(pin (num 23) (name VSS) (type power_in))
(pin (num 24) (name AVDD) (type power_in))
(pin (num 25) (name IREF) (type output))
(pin (num 26) (name AVDD) (type power_in))
(pin (num 27) (name XC2) (type output))
(pin (num 28) (name XC1) (type input))
(pin (num 29) (name AVDD) (type power_in))
(pin (num 30) (name VSS) (type power_in))
(pin (num 31) (name VSS) (type power_in))
(pin (num 32) (name DCC) (type power_out))))
(libpart (lib si) (part SI1143)
(fields
(field (name Reference) U)
(field (name Value) SI1143)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name SDA) (type BiDi))
(pin (num 2) (name SCL) (type input))
(pin (num 3) (name VDD) (type power_in))
(pin (num 4) (name INT) (type output))
(pin (num 5) (name DNC) (type NotConnected))
(pin (num 6) (name LED2) (type input))
(pin (num 7) (name LED3) (type input))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name LED1) (type input))
(pin (num 10) (name DNC) (type NotConnected))))
(libpart (lib device) (part BATTERY)
(fields
(field (name Reference) BT)
(field (name Value) BATTERY)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib device) (part C)
(description "Condensateur non polarise")
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) C)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part CP)
(description "Condensateur polarise")
(footprints
(fp CP*)
(fp SM*))
(fields
(field (name Reference) C)
(field (name Value) CP)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part CRYSTAL)
(fields
(field (name Reference) X)
(field (name Value) CRYSTAL)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part DIODE)
(description "Diode simple")
(footprints
(fp D?)
(fp S*))
(fields
(field (name Reference) D)
(field (name Value) DIODE)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib device) (part INDUCTOR)
(fields
(field (name Reference) L)
(field (name Value) INDUCTOR)