-
Notifications
You must be signed in to change notification settings - Fork 0
/
NMEA_Multiplexer_v2.net
1345 lines (1345 loc) · 46.4 KB
/
NMEA_Multiplexer_v2.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 "/Users/max/Documents/KiCad/NMEA Multiplexer v2.0 PCB/NMEA_Multiplexer_v2.sch")
(date "2017 July 15, Saturday 22:46:20")
(tool "Eeschema 4.0.6")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "NMEA Multiplexer")
(company DML)
(rev PA1)
(date 2017-04-17)
(source NMEA_Multiplexer_v2.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value ATSAMG55J19A-AU)
(footprint Housings_QFP:LQFP-64_10x10mm_Pitch0.5mm)
(libsource (lib MaxNil_components) (part ATSAMG55J19A-AU))
(sheetpath (names /) (tstamps /))
(tstamp 58F3FC92))
(comp (ref Y1)
(value 32.768k)
(footprint Crystals:Crystal_SMD_3215-2pin_3.2x1.5mm)
(libsource (lib device) (part Crystal_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58F427D3))
(comp (ref C8)
(value 5n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58F42DCF))
(comp (ref C7)
(value 5n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58F42F45))
(comp (ref J1)
(value USB)
(footprint Connectors:USB_Mini-B)
(libsource (lib conn) (part USB_OTG))
(sheetpath (names /) (tstamps /))
(tstamp 58F4B0D8))
(comp (ref J9)
(value JTAG)
(footprint Pin_Headers:Pin_Header_Straight_2x05_Pitch1.27mm_SMD)
(libsource (lib conn) (part CONN_02X05))
(sheetpath (names /) (tstamps /))
(tstamp 58F4B13C))
(comp (ref R24)
(value 100k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F4BB8F))
(comp (ref R25)
(value 100k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F4BDBD))
(comp (ref R26)
(value 100k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F4BE1E))
(comp (ref JP1)
(value ERASE)
(footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.00mm)
(libsource (lib device) (part Jumper_NO_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58F506ED))
(comp (ref R16)
(value 39)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F4D76C))
(comp (ref R17)
(value 39)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F4D8A0))
(comp (ref D18)
(value "Err 0 (red)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F4FF11))
(comp (ref R27)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F55132))
(comp (ref R28)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F55138))
(comp (ref R29)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F5513E))
(comp (ref D17)
(value "Tx 0 (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F570B9))
(comp (ref D19)
(value "Rx 0 (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F57176))
(comp (ref D15)
(value "Err 1 (red)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58660))
(comp (ref R21)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58671))
(comp (ref R23)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58677))
(comp (ref R22)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F5867D))
(comp (ref D14)
(value "Tx 1 (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58686))
(comp (ref D16)
(value "Rx 1 (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F5868C))
(comp (ref D12)
(value "Err 2 (red)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A17))
(comp (ref R19)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A28))
(comp (ref R18)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A2E))
(comp (ref R20)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A34))
(comp (ref D11)
(value "Tx (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A3D))
(comp (ref D13)
(value "Rx 2 (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A43))
(comp (ref D2)
(value "Err 3 (red)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A52))
(comp (ref R1)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A63))
(comp (ref R3)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A69))
(comp (ref R2)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A6F))
(comp (ref D1)
(value "Tx 3 (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A78))
(comp (ref D3)
(value "Rx 3 (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58A7E))
(comp (ref D5)
(value "Err 4 (red)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58ED1))
(comp (ref R5)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58EE2))
(comp (ref R4)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58EE8))
(comp (ref R6)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58EEE))
(comp (ref D4)
(value "Tx 4 (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58EF7))
(comp (ref D6)
(value "Rx 4 (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58EFD))
(comp (ref R7)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58F1D))
(comp (ref R8)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F58F23))
(comp (ref D9)
(value "Tx BT (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58F32))
(comp (ref D10)
(value "Rx BT (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F58F38))
(comp (ref D8)
(value "BT Con (blue)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F5A141))
(comp (ref R13)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F5A148))
(comp (ref J8)
(value "DEBUG UART")
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 58F5C6DF))
(comp (ref D7)
(value "PWR (green)")
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 58F665C4))
(comp (ref R9)
(value 220)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F665D2))
(comp (ref R14)
(value 27k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F6D038))
(comp (ref R15)
(value 47k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F6D79B))
(comp (ref SW1)
(value Reset)
(footprint Buttons_Switches_SMD:SW_SPST_EVQP2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 58F714B5))
(comp (ref R12)
(value 39)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F715AE))
(comp (ref R10)
(value 39)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F716CE))
(comp (ref R11)
(value 100k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58F71851))
(comp (ref U3)
(value XR32330)
(footprint Housings_DFN_QFN:QFN-24_4x4mm_Pitch0.5mm_NoMask)
(libsource (lib MaxNil_components) (part XR32330))
(sheetpath (names /) (tstamps /))
(tstamp 5904E44F))
(comp (ref U2)
(value XR32330)
(footprint Housings_DFN_QFN:QFN-24_4x4mm_Pitch0.5mm_NoMask)
(libsource (lib MaxNil_components) (part XR32330))
(sheetpath (names /) (tstamps /))
(tstamp 5906DE41))
(comp (ref J2)
(value "Port 1")
(footprint Connectors_Terminal_Blocks:TerminalBlock_Pheonix_PT-3.5mm_3pol)
(libsource (lib conn) (part Screw_Terminal_1x03))
(sheetpath (names /) (tstamps /))
(tstamp 59071909))
(comp (ref J3)
(value "Port 2")
(footprint Connectors_Terminal_Blocks:TerminalBlock_Pheonix_PT-3.5mm_3pol)
(libsource (lib conn) (part Screw_Terminal_1x03))
(sheetpath (names /) (tstamps /))
(tstamp 59073141))
(comp (ref J4)
(value "Port 3")
(footprint Connectors_Terminal_Blocks:TerminalBlock_Pheonix_PT-3.5mm_3pol)
(libsource (lib conn) (part Screw_Terminal_1x03))
(sheetpath (names /) (tstamps /))
(tstamp 59073397))
(comp (ref J5)
(value "Port 4")
(footprint Connectors_Terminal_Blocks:TerminalBlock_Pheonix_PT-3.5mm_3pol)
(libsource (lib conn) (part Screw_Terminal_1x03))
(sheetpath (names /) (tstamps /))
(tstamp 590733A9))
(comp (ref J6)
(value "Port 5")
(footprint Connectors_Terminal_Blocks:TerminalBlock_Pheonix_PT-3.5mm_3pol)
(libsource (lib conn) (part Screw_Terminal_1x03))
(sheetpath (names /) (tstamps /))
(tstamp 590734E7))
(comp (ref J7)
(value 12V)
(footprint Connectors_Terminal_Blocks:TerminalBlock_Pheonix_PT-3.5mm_2pol)
(libsource (lib conn) (part Screw_Terminal_1x02))
(sheetpath (names /) (tstamps /))
(tstamp 5907D9D8))
(comp (ref U4)
(value LF33ABDT-TR)
(footprint TO_SOT_Packages_SMD:TO-252-2_Rectifier)
(libsource (lib regul) (part LF33ABDT-TR))
(sheetpath (names /) (tstamps /))
(tstamp 5908019A))
(comp (ref C14)
(value 10u)
(footprint Capacitors_SMD:CP_Elec_4x5.8)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59081AEB))
(comp (ref C15)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59082AE8))
(comp (ref C13)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59082FD3))
(comp (ref C29)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59085E87))
(comp (ref C9)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5908634F))
(comp (ref C25)
(value 2.2u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590864BB))
(comp (ref C26)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590864C1))
(comp (ref C23)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59088870))
(comp (ref C24)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59088876))
(comp (ref C12)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59089210))
(comp (ref C11)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59089216))
(comp (ref C10)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59089964))
(comp (ref C27)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59089A5A))
(comp (ref C28)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59089A64))
(comp (ref C22)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59089DE8))
(comp (ref U5)
(value HM-11)
(footprint MaxNil:HM-11)
(libsource (lib NMEA_Multiplexer_v2-cache) (part HM-11-RESCUE-NMEA_Multiplexer_v2))
(sheetpath (names /) (tstamps /))
(tstamp 590915AD))
(comp (ref C1)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590961F9))
(comp (ref C2)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59096DBF))
(comp (ref C16)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590974B9))
(comp (ref C17)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59097603))
(comp (ref C6)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590A55D3))
(comp (ref C4)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590A571E))
(comp (ref C3)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590A585C))
(comp (ref C5)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590A59B8))
(comp (ref C21)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590A72E7))
(comp (ref C19)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590A7435))
(comp (ref C18)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590A7571))
(comp (ref C20)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 590A76C4)))
(libparts
(libpart (lib MaxNil_components) (part ATSAMG55J19A-AU)
(description "TQFP48, 512 Kbyte Flash, 176 Kbyte RAM, 120 MHz, CortexM4")
(docs http://www.atmel.com/Images/Atmel-11289-32-bit-Cortex-M4-Microcontroller-SAM-G55_Datasheet.pdf)
(footprints
(fp TQFP48))
(fields
(field (name Reference) U)
(field (name Value) ATSAMG55J19A-AU)
(field (name Footprint) LQFP64))
(pins
(pin (num 0) (name GNDPAD) (type power_in))
(pin (num 1) (name VDDIO) (type power_in))
(pin (num 2) (name NRST) (type input))
(pin (num 3) (name PB12/ERASE) (type BiDi))
(pin (num 4) (name WKUP10/I2SMCK0/RXD3/SPI3_MISO/TWCK3/PA4) (type BiDi))
(pin (num 5) (name WKUP9/I2SDO0/TXD3/SPI3_MOSI/TWD3/PA3) (type BiDi))
(pin (num 6) (name WKUP0/TIOA0/I2SCK0/PA0) (type BiDi))
(pin (num 7) (name WKUP1/TIOB0/I2SWS0/PA1) (type BiDi))
(pin (num 8) (name WKUP4/SPI5_NPCS1/RTS5/RXD2/SPI2_MISO/TWCK2/PA5) (type BiDi))
(pin (num 9) (name VDDCORE) (type power_in))
(pin (num 10) (name TEST) (type input))
(pin (num 11) (name XIN32/PA7) (type BiDi))
(pin (num 12) (name XOUT32/WKUP5/ADTRG/PA8) (type BiDi))
(pin (num 13) (name GND) (type power_in))
(pin (num 14) (name PB15/SPI6_NPCS1/RTS6/SPI3_NPCS1/RTS3) (type BiDi))
(pin (num 15) (name PB14/SPI6_NPCS0/CTS6/SPI3_NPCS0/CTS3) (type BiDi))
(pin (num 16) (name SPI7_NPCS1/RTS7/PCK2/PA31) (type BiDi))
(pin (num 17) (name PCK0/TXD2/SPI2_MOSI/TWD2/PA6) (type BiDi))
(pin (num 18) (name WKUP7/TIOB1/SPI2_NPCS0/CTS2/PA16) (type BiDi))
(pin (num 19) (name SPI7_NPCS0/CTS7/PCK1/PA30) (type BiDi))
(pin (num 20) (name SCK7/SPI7_SPCK/SPI1_NPCS1/RTS1/PA29) (type BiDi))
(pin (num 21) (name TXD7/SPI7_MOSI/TWD7/SPI1_NPCS0/CTS1/PA28) (type BiDi))
(pin (num 22) (name SCK2/SPI2_SPCK/SPI2_NPCS1/RTS2/PA15) (type BiDi))
(pin (num 23) (name WKUP3/TIOA1/I2SDO1/PA23) (type BiDi))
(pin (num 24) (name DP/I2SDI1/TIOB2/PA22) (type BiDi))
(pin (num 25) (name DM/PCK1/TIOA2/PA21) (type BiDi))
(pin (num 26) (name VDDUSB) (type power_in))
(pin (num 27) (name VDDIO) (type power_in))
(pin (num 28) (name ADVREF) (type power_in))
(pin (num 29) (name GND) (type power_in))
(pin (num 30) (name VDDOUT) (type power_out))
(pin (num 31) (name VDDIO) (type power_in))
(pin (num 32) (name VDDIO) (type power_in))
(pin (num 33) (name AD0/PCK1/I2SDO0/PA17) (type BiDi))
(pin (num 34) (name AD1/PCK2/I2SMCK0/PA18) (type BiDi))
(pin (num 35) (name AD2/I2SCK1/TCLK1/PA19) (type BiDi))
(pin (num 36) (name AD3/I2SWS1/TCLK2/PA20) (type BiDi))
(pin (num 37) (name PB0/SCK0/SPI0_SPCK/TXD6/SPI6_MOSI/TWD6/AD4) (type BiDi))
(pin (num 38) (name PB1/SCK4/SPI4_SPCK/RXD6/SPI6_MISO/TWCK6/AD5) (type BiDi))
(pin (num 39) (name PB2/RXD1/SPI1_MISO/TWCK1/SPI5_NPCS1/RTS5/AD6/WKUP13) (type BiDi))
(pin (num 40) (name PB3/TXD1/SPI1_MOSI/TWD1/PCK2/AD7/WKUP13) (type BiDi))
(pin (num 41) (name WKUP8/SCK5/SPI5_SPCK/PA14) (type BiDi))
(pin (num 42) (name TXD5/SPI5_MOSI/TWD5/PA13) (type BiDi))
(pin (num 43) (name RXD5/SPI5_MISO/TWCK5/PA12) (type BiDi))
(pin (num 44) (name SPI5_NPCS0/CTS5/PA11) (type BiDi))
(pin (num 45) (name VDDCORE) (type power_in))
(pin (num 46) (name PB10/TXD6/SPI6_MOSI/TWD6/TXD4/SPI4_MOSI/TWD4) (type BiDi))
(pin (num 47) (name PB11/RXD6/SPI6_MISO/TWCK6/RXD4/SPI4_MISO/TWCK4) (type BiDi))
(pin (num 48) (name PDMIC_CLK/TXD0/SPI0_MOSI/TWD0/PA10) (type BiDi))
(pin (num 49) (name WKUP6/PDMIC_DAT/RXD0/SPI0_MISO/TWCK0/PA9) (type BiDi))
(pin (num 50) (name PB5/TDO/TRACESWO) (type BiDi))
(pin (num 51) (name RXD7/SPI7_MISO/TWCK7/SCK1/SPI1_SPCK/PA27) (type BiDi))
(pin (num 52) (name I2SMCK1/SPI0_NPCS1/RTS0/PA26) (type BiDi))
(pin (num 53) (name GND) (type power_in))
(pin (num 54) (name PB6/TMS/SWDIO) (type BiDi))
(pin (num 55) (name PB7/TCK/SWCLK) (type BiDi))
(pin (num 56) (name I2SDO1/SPI0_NPCS0/CTS0/PA25) (type BiDi))
(pin (num 57) (name PB13/SCK6/SPI6_SPCK/SCK3/SPI3_SPCK) (type BiDi))
(pin (num 58) (name WKUP11/SCK2/SPI2_SPCK/I2SMCK1/PA24) (type BiDi))
(pin (num 59) (name PB8/XOUT/WKUP14/SPI4_NPCS0/CTS4/TXD4/SPI4_MOSI/TWD4) (type BiDi))
(pin (num 60) (name PB9/XIN/WKUP15/SPI4_NPCS1/RTS4/RXD4/SPI4_MISO/TWCK4) (type BiDi))
(pin (num 61) (name WKUP2/I2SDI0/TCLK0/PA2) (type BiDi))
(pin (num 62) (name PB4/TDI) (type BiDi))
(pin (num 63) (name JTAGSEL) (type input))
(pin (num 64) (name VDDIO) (type power_in))))
(libpart (lib conn) (part CONN_01X03)
(description "Connector, single row, 01x03, 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_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_02X05)
(description "Connector, double row, 02x05, 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_02X05))
(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))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))))
(libpart (lib device) (part CP_Small)
(description "Polarised capacitor")
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part C_Small)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part Crystal_Small)
(description "Two pin crystal, small symbol")
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib NMEA_Multiplexer_v2-cache) (part HM-11-RESCUE-NMEA_Multiplexer_v2)
(fields
(field (name Reference) U)
(field (name Value) HM-11-RESCUE-NMEA_Multiplexer_v2))
(pins
(pin (num 1) (name UART_RTS) (type output))
(pin (num 2) (name UART_TX) (type output))
(pin (num 3) (name UART_CTS) (type input))
(pin (num 4) (name UART_RX) (type input))
(pin (num 5) (name NC) (type NotConnected))
(pin (num 6) (name NC) (type NotConnected))
(pin (num 7) (name NV) (type NotConnected))
(pin (num 8) (name NV) (type NotConnected))
(pin (num 9) (name VCC) (type power_in))
(pin (num 10) (name NC) (type NotConnected))
(pin (num 11) (name ~RESET) (type input))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name PIO3) (type BiDi))
(pin (num 14) (name PIO2) (type BiDi))
(pin (num 15) (name LED/PIO1) (type BiDi))
(pin (num 16) (name KEY/PIO0) (type BiDi))))
(libpart (lib device) (part Jumper_NO_Small)
(description "Jumper, normally open")
(fields
(field (name Reference) JP)
(field (name Value) Jumper_NO_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part LED)
(description "LED generic")
(footprints
(fp LED*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib regul) (part LF15ABDT-TR)
(aliases
(alias LF18ABDT-TR)
(alias LF18CDT-TR)
(alias LF18CDT-TRY)
(alias LF25ABDT-TR)
(alias LF25ABDT-TRY)
(alias LF25CDT-TR)
(alias LF25CDT-TRY)
(alias LF33ABDT-TR)
(alias LF33CDT-TR)
(alias LF33CDT-TRY)
(alias LF50ABDT-TR)
(alias LF50ABDT-TRY)
(alias LF50CDT-TR)
(alias LF50CDT-TRY)
(alias LF60ABDT-TR)
(alias LF60CDT-TR)
(alias LF80ABDT-TR)
(alias LF80CDT-TR)
(alias LF80CDT-TRY)
(alias LF85CDT-TR)
(alias LF85CDT-TRY)
(alias LF120ABDT-TR)
(alias LF120CDT-TR))
(description "Low-drop Voltage Regulator, Io up to 500mA, Fixed Vo 1.5V, DPAK.")
(docs http://www.st.com/content/ccc/resource/technical/document/datasheet/c4/0e/7e/2a/be/bc/4c/bd/CD00000546.pdf/files/CD00000546.pdf/jcr:content/translations/en.CD00000546.pdf)
(footprints
(fp TO-252*))
(fields
(field (name Reference) U)
(field (name Value) LF15ABDT-TR)
(field (name Footprint) TO_SOT_Packages_SMD:TO-252-2Lead))
(pins
(pin (num 1) (name Vin) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name Vout) (type power_out))))
(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 switches) (part SW_Push)
(description "Push button switch, generic, two pins")
(fields
(field (name Reference) SW)
(field (name Value) SW_Push))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib conn) (part Screw_Terminal_1x02)
(description "2-pin screw terminal connector")
(footprints
(fp bornier2)
(fp TerminalBlock*2pol))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_1x02))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part Screw_Terminal_1x03)
(description "3-pin screw terminal connector")
(footprints
(fp bornier3)
(fp TerminalBlock*3pol))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_1x03))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib conn) (part USB_OTG)
(description "USB mini/micro connector")
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_OTG))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name ID) (type passive))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name Shield) (type passive))))
(libpart (lib MaxNil_components) (part XR32330)
(fields
(field (name Reference) U)
(field (name Value) XR32330))
(pins
(pin (num 1) (name R1IN) (type input))
(pin (num 2) (name R2IN) (type input))
(pin (num 3) (name R3IN) (type input))
(pin (num 4) (name T1OUT) (type output))
(pin (num 5) (name T2OUT) (type output))
(pin (num 6) (name T3OUT) (type output))
(pin (num 7) (name T3IN) (type input))
(pin (num 8) (name T2IN) (type input))
(pin (num 9) (name T1IN) (type input))
(pin (num 10) (name R3OUT) (type output))
(pin (num 11) (name R2OUT) (type output))
(pin (num 12) (name R1OUT) (type output))
(pin (num 13) (name ~STATUS) (type output))
(pin (num 14) (name ~SHUTDOWN) (type input))
(pin (num 15) (name ~ONLINE) (type input))
(pin (num 16) (name C1-) (type passive))
(pin (num 17) (name GND) (type power_in))
(pin (num 18) (name VL) (type power_in))
(pin (num 19) (name VCC) (type power_in))
(pin (num 20) (name V+) (type passive))
(pin (num 21) (name C1+) (type passive))
(pin (num 22) (name C2+) (type passive))
(pin (num 23) (name C2-) (type passive))
(pin (num 24) (name V-) (type passive))
(pin (num 25) (name GND_PAD) (type passive)))))
(libraries
(library (logical device)
(uri /Users/max/Documents/KiCad/kicad-library/library/device.lib))
(library (logical MaxNil_components)
(uri /Users/max/Documents/KiCad/Libraries/MaxNil_components.lib))
(library (logical conn)
(uri /Users/max/Documents/KiCad/kicad-library/library/conn.lib))
(library (logical regul)
(uri /Users/max/Documents/KiCad/kicad-library/library/regul.lib))
(library (logical NMEA_Multiplexer_v2-cache)
(uri "/Users/max/Documents/KiCad/NMEA Multiplexer v2.0 PCB/NMEA_Multiplexer_v2-cache.lib"))
(library (logical switches)
(uri /Users/max/Documents/KiCad/kicad-library/library/switches.lib)))
(nets
(net (code 1) (name /TXD2)
(node (ref U1) (pin 17))
(node (ref U2) (pin 8)))
(net (code 2) (name /XIN32)
(node (ref U1) (pin 11))
(node (ref Y1) (pin 1))
(node (ref C8) (pin 1)))
(net (code 3) (name /RXD5)
(node (ref U3) (pin 10))
(node (ref U1) (pin 43)))
(net (code 4) (name /TXD5)
(node (ref U1) (pin 42))
(node (ref U3) (pin 7)))
(net (code 5) (name /TXD6)
(node (ref U1) (pin 37))
(node (ref U3) (pin 9)))
(net (code 6) (name /RXD6)
(node (ref U1) (pin 38))
(node (ref U3) (pin 12)))
(net (code 7) (name /LED_BT_TX)
(node (ref U1) (pin 60))
(node (ref R8) (pin 1)))
(net (code 8) (name /TXD4)
(node (ref U1) (pin 46))
(node (ref J8) (pin 2)))
(net (code 9) (name /RXD4)
(node (ref U1) (pin 47))
(node (ref J8) (pin 3)))
(net (code 10) (name /RXD1)
(node (ref U1) (pin 39))
(node (ref U3) (pin 11)))
(net (code 11) (name /TXD1)
(node (ref U3) (pin 8))
(node (ref U1) (pin 40)))
(net (code 12) (name /DP)
(node (ref R16) (pin 1))
(node (ref U1) (pin 24)))
(net (code 13) (name "Net-(JP1-Pad2)")
(node (ref JP1) (pin 2))
(node (ref U1) (pin 3)))
(net (code 14) (name "Net-(J1-Pad3)")
(node (ref J1) (pin 3))
(node (ref R16) (pin 2)))
(net (code 15) (name "Net-(J1-Pad2)")
(node (ref R17) (pin 2))
(node (ref J1) (pin 2)))
(net (code 16) (name /DM)
(node (ref R17) (pin 1))
(node (ref U1) (pin 25)))
(net (code 17) (name /TDI)
(node (ref R26) (pin 2))
(node (ref J9) (pin 8))
(node (ref U1) (pin 62)))
(net (code 18) (name /TDO)
(node (ref J9) (pin 6))
(node (ref U1) (pin 50)))
(net (code 19) (name /TMS)
(node (ref R24) (pin 2))
(node (ref U1) (pin 54))
(node (ref J9) (pin 2)))
(net (code 20) (name /TCK)
(node (ref R25) (pin 2))
(node (ref J9) (pin 4))
(node (ref U1) (pin 55)))
(net (code 21) (name /nRST)
(node (ref U1) (pin 2))
(node (ref R10) (pin 1))
(node (ref J9) (pin 10)))
(net (code 22) (name /TXD3)
(node (ref U1) (pin 5))
(node (ref U2) (pin 9)))
(net (code 23) (name /RXD3)
(node (ref U2) (pin 11))
(node (ref U1) (pin 4)))
(net (code 24) (name /RXD2)
(node (ref U1) (pin 8))
(node (ref U2) (pin 12)))
(net (code 25) (name "Net-(D11-Pad2)")
(node (ref D11) (pin 2))
(node (ref R18) (pin 2)))
(net (code 26) (name "Net-(D12-Pad2)")
(node (ref D12) (pin 2))
(node (ref R19) (pin 2)))
(net (code 27) (name /LED_2_RX)
(node (ref R20) (pin 1))
(node (ref U1) (pin 35)))
(net (code 28) (name /LED_2_TX)
(node (ref R18) (pin 1))
(node (ref U1) (pin 33)))
(net (code 29) (name /LED_2_ERR)
(node (ref U1) (pin 34))
(node (ref R19) (pin 1)))
(net (code 30) (name "Net-(D3-Pad2)")
(node (ref R1) (pin 2))
(node (ref D3) (pin 2)))
(net (code 31) (name "Net-(D1-Pad2)")
(node (ref R3) (pin 2))
(node (ref D1) (pin 2)))
(net (code 32) (name "Net-(D2-Pad2)")
(node (ref D2) (pin 2))
(node (ref R2) (pin 2)))