-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmcu_interface.kicad_sch
1052 lines (1037 loc) · 39 KB
/
mcu_interface.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid 724f7292-1bc7-464e-8b2e-9eab530e365d)
(paper "A")
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_0_1"
(rectangle (start -2.286 0.508) (end 2.286 1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.794)
(xy -1.27 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.286 -0.508) (end -2.286 -1.016)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "C_Polarized_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Crystal" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "quartz ceramic resonator oscillator" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Two pin crystal" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Crystal*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -1.905 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -1.27)
(xy 1.905 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 1.905 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Crystal_1_1"
(pin passive line (at -3.81 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MEB-altium-import:3V3" (power) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "3V3" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name '3V3'" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "3V3_0_0"
(polyline
(pts
(xy -1.27 -2.54)
(xy 1.27 -2.54)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 -2.54)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(pin power_in line (at 0 0 0) (length 0) hide
(name "3V3" (effects (font (size 1.27 1.27))))
(number "" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MEB-altium-import:GND" (power) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "GND" (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name 'GND'" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_0"
(polyline
(pts
(xy -2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -3.302)
(xy 1.778 -3.302)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -1.016 -4.064)
(xy 1.016 -4.064)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -0.254 -4.826)
(xy 0.254 -4.826)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 -2.54)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(pin power_in line (at 0 0 0) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "SWLib:MSP430FR2355TPT" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 2.54 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "MSP430FR2355TPT" (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "SWLib:PT0048A_N" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "MSP430FR2355TPT" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "ki_keywords" "MSP430FR2355TPT" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "PT0048A_N PT0048A_M PT0048A_L" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MSP430FR2355TPT_0_1"
(polyline
(pts
(xy -58.42 -40.64)
(xy 58.42 -40.64)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -58.42 40.64)
(xy -58.42 -40.64)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(polyline
(pts
(xy -58.42 40.64)
(xy 58.42 40.64)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 58.42 -40.64)
(xy 58.42 40.64)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(pin bidirectional line (at -63.5 22.86 0) (length 5.08)
(name "P1.2_UCB0SIMO_UCB0SDA_TB0TRG_OA0-_A2_VEREF-" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -7.62 0) (length 5.08)
(name "P2.5_COMP1.0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -5.08 0) (length 5.08)
(name "P2.4_COMP1.1" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 7.62 180) (length 5.08)
(name "P4.7_UCB1SOMI_UCB1SCL" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 10.16 180) (length 5.08)
(name "P4.6_UCB1SIMO_UCB1SDA" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 12.7 180) (length 5.08)
(name "P4.5_UCB1CLK" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 15.24 180) (length 5.08)
(name "P4.4_UCB1STE" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 -27.94 180) (length 5.08)
(name "P6.6_TB3CLK" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 -25.4 180) (length 5.08)
(name "P6.5_TB3.6" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 -22.86 180) (length 5.08)
(name "P6.4_TB3.5" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 -20.32 180) (length 5.08)
(name "P6.3_TB3.4" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 25.4 0) (length 5.08)
(name "P1.1_UCB0CLK_ACLK_OA0O_COMP0.1_A1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 -17.78 180) (length 5.08)
(name "P6.2_TB3.3" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 -15.24 180) (length 5.08)
(name "P6.1_TB3.2" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 -12.7 180) (length 5.08)
(name "P6.0_TB3.1" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 17.78 180) (length 5.08)
(name "P4.3_UCA1TXD_UCA1SIMO_UCA1TXD_N" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 20.32 180) (length 5.08)
(name "P4.2_UCA1RXD_UCA1SOMI_UCA1RXD_N" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 22.86 180) (length 5.08)
(name "P4.1_UCA1CLK" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 25.4 180) (length 5.08)
(name "P4.0_UCA1STE_ISOTXD_ISORXD" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -2.54 0) (length 5.08)
(name "P2.3_TB1TRG" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 0 0) (length 5.08)
(name "P2.2_TB1CLK_HOUT" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 2.54 0) (length 5.08)
(name "P2.1_TB1.2_COMP1.O" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 27.94 0) (length 5.08)
(name "P1.0_UCB0STE_SMCLK_COMP0.0_A0_VEREF+_DAC0REF" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 5.08 0) (length 5.08)
(name "P2.0_TB1.1_COMP0.O" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 10.16 0) (length 5.08)
(name "P1.7_UCA0TXD_UCA0SIMO_TB0.2_TDO_OA1+_A7_VREF+" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 12.7 0) (length 5.08)
(name "P1.6_UCA0RXD_UCA0SOMI_TB0.1_TDI_TCLK_OA1-_A6" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 15.24 0) (length 5.08)
(name "P1.5_UCA0CLK_TMS_OA1O_A5" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 17.78 0) (length 5.08)
(name "P1.4_UCA0STE_TCK_A4_DAC1REF" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -35.56 0) (length 5.08)
(name "P3.7_OA3+" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -33.02 0) (length 5.08)
(name "P3.6_OA3-" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -30.48 0) (length 5.08)
(name "P3.5_OA3O" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -27.94 0) (length 5.08)
(name "P3.4_SMCLK_DAC3REF" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 -7.62 180) (length 5.08)
(name "P5.4" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin input line (at 63.5 35.56 180) (length 5.08)
(name "TEST_SBWTCK" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 -5.08 180) (length 5.08)
(name "P5.3_TB2TRG_A11" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 -2.54 180) (length 5.08)
(name "P5.2_TB2CLK_A10" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 0 180) (length 5.08)
(name "P5.1_TB2.2_MFM.TX_A9" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 2.54 180) (length 5.08)
(name "P5.0_TB2.1_MFM.RX_A8" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -25.4 0) (length 5.08)
(name "P3.3_OA2+" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -22.86 0) (length 5.08)
(name "P3.2_OA2-" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -20.32 0) (length 5.08)
(name "P3.1_OA2O" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -17.78 0) (length 5.08)
(name "P3.0_MCLK_DAC2REF" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 20.32 0) (length 5.08)
(name "P1.3_UCB0SOMI_UCB0SCL_OA0+_A3" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 63.5 30.48 180) (length 5.08)
(name "RST_NMI_SBWTDIO_N" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -63.5 35.56 0) (length 5.08)
(name "DVCC" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 63.5 -35.56 180) (length 5.08)
(name "DVSS" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -12.7 0) (length 5.08)
(name "P2.7_TB0CLK_XIN" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -63.5 -10.16 0) (length 5.08)
(name "P2.6_MCLK_XOUT" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 44.45 80.01) (diameter 0) (color 0 0 0 0)
(uuid 0950c6a0-7d63-4d8f-a998-75f8668c2f67)
)
(junction (at 48.26 130.81) (diameter 0) (color 0 0 0 0)
(uuid 29f3d821-9214-4519-b0a6-742bf32d996a)
)
(junction (at 54.61 72.39) (diameter 0) (color 0 0 0 0)
(uuid 31a1d10d-aeaf-4fc9-a2dd-342f10181dad)
)
(junction (at 27.94 130.81) (diameter 0) (color 0 0 0 0)
(uuid 5b3a099b-154f-4615-9492-12219eb008a0)
)
(junction (at 62.23 72.39) (diameter 0) (color 0 0 0 0)
(uuid e9bc0eb5-79a9-49b0-a306-325166343eae)
)
(junction (at 224.79 143.51) (diameter 0) (color 0 0 0 0)
(uuid efa0eab5-4cf6-4977-b930-5a99bc468523)
)
(junction (at 48.26 118.11) (diameter 0) (color 0 0 0 0)
(uuid f05347ad-5520-453c-9da9-19b5f9f19d5d)
)
(wire (pts (xy 204.47 95.25) (xy 200.66 95.25))
(stroke (width 0) (type default))
(uuid 0608d5ab-77d7-4513-91cf-15d981e365d1)
)
(wire (pts (xy 200.66 87.63) (xy 207.01 87.63))
(stroke (width 0) (type default))
(uuid 08b8aa3e-694f-4f86-bbc8-367cb4c92425)
)
(wire (pts (xy 67.31 140.97) (xy 73.66 140.97))
(stroke (width 0) (type default))
(uuid 0962bb1f-b359-404e-8014-ada8bbceb29f)
)
(wire (pts (xy 48.26 128.27) (xy 48.26 130.81))
(stroke (width 0) (type default))
(uuid 10bdaf4d-d8b2-4273-a46e-58d273628512)
)
(wire (pts (xy 39.37 80.01) (xy 39.37 60.96))
(stroke (width 0) (type default))
(uuid 11b92c1e-7be5-40bf-b4f0-54c8d8ae1b2f)
)
(wire (pts (xy 44.45 72.39) (xy 54.61 72.39))
(stroke (width 0) (type default))
(uuid 1c3dbcdf-3edc-4dec-8051-b9dd97a64f0b)
)
(wire (pts (xy 200.66 90.17) (xy 207.01 90.17))
(stroke (width 0) (type default))
(uuid 2291380f-af13-466b-b342-7ec8c554814f)
)
(wire (pts (xy 68.58 85.09) (xy 73.66 85.09))
(stroke (width 0) (type default))
(uuid 39f01b34-acf2-47d6-8b22-9d968f2de2ea)
)
(wire (pts (xy 48.26 118.11) (xy 48.26 120.65))
(stroke (width 0) (type default))
(uuid 3e24ec15-a8b9-4dfd-994d-237b3955b760)
)
(wire (pts (xy 62.23 72.39) (xy 73.66 72.39))
(stroke (width 0) (type default))
(uuid 4bd89d08-3657-4f5b-9825-f6ddf925157f)
)
(wire (pts (xy 41.91 118.11) (xy 48.26 118.11))
(stroke (width 0) (type default))
(uuid 53bee030-7560-454b-bd33-5a2f8d340f39)
)
(wire (pts (xy 68.58 92.71) (xy 73.66 92.71))
(stroke (width 0) (type default))
(uuid 5a53b6e2-2ae0-4361-9869-1ae1dd6d15db)
)
(wire (pts (xy 67.31 97.79) (xy 73.66 97.79))
(stroke (width 0) (type default))
(uuid 604ab058-ab19-4385-8c9b-6b4be4d282fc)
)
(wire (pts (xy 44.45 80.01) (xy 39.37 80.01))
(stroke (width 0) (type default))
(uuid 671f07fd-961c-4101-9780-2a2e5569e5b2)
)
(wire (pts (xy 205.74 100.33) (xy 200.66 100.33))
(stroke (width 0) (type default))
(uuid 758c7c0d-9647-408c-8e8f-d26cef76adb2)
)
(wire (pts (xy 200.66 77.47) (xy 207.01 77.47))
(stroke (width 0) (type default))
(uuid 75b459a6-30d3-4d37-84fe-e6e87ebaf475)
)
(wire (pts (xy 48.26 118.11) (xy 73.66 118.11))
(stroke (width 0) (type default))
(uuid 75cd449e-2189-4419-bd5c-2838d3a9c195)
)
(wire (pts (xy 54.61 72.39) (xy 62.23 72.39))
(stroke (width 0) (type default))
(uuid 78720996-0732-4a66-aa91-f2d705c7fc1e)
)
(wire (pts (xy 39.37 60.96) (xy 224.79 60.96))
(stroke (width 0) (type default))
(uuid 79c6edad-7a31-491f-9df9-7503f9b28ed9)
)
(wire (pts (xy 204.47 97.79) (xy 200.66 97.79))
(stroke (width 0) (type default))
(uuid 7e7b2424-7a5f-4a6f-9c81-5a03b35cefed)
)
(wire (pts (xy 73.66 120.65) (xy 58.42 120.65))
(stroke (width 0) (type default))
(uuid 8a7a29f6-83d4-4e26-bcbd-75c48781d514)
)
(wire (pts (xy 224.79 143.51) (xy 200.66 143.51))
(stroke (width 0) (type default))
(uuid 8bf91f32-1ca0-4e5a-b83f-1b8f4c63bdcd)
)
(wire (pts (xy 27.94 130.81) (xy 34.29 130.81))
(stroke (width 0) (type default))
(uuid 8f9dc9b1-d68c-4140-b92f-076e21e07bb5)
)
(wire (pts (xy 71.12 125.73) (xy 73.66 125.73))
(stroke (width 0) (type default))
(uuid 9655c74d-12a5-43dc-8002-5575de81b11b)
)
(wire (pts (xy 67.31 95.25) (xy 73.66 95.25))
(stroke (width 0) (type default))
(uuid 9d1d0231-9826-4e99-8e5a-4dcc4e016588)
)
(wire (pts (xy 27.94 118.11) (xy 34.29 118.11))
(stroke (width 0) (type default))
(uuid b06f70bc-1008-4ba3-8b67-f2bbeaec2edb)
)
(wire (pts (xy 200.66 72.39) (xy 207.01 72.39))
(stroke (width 0) (type default))
(uuid b0c1bfa0-16cb-4d52-af8e-c84ad4bd5b88)
)
(wire (pts (xy 224.79 60.96) (xy 224.79 143.51))
(stroke (width 0) (type default))
(uuid b628dc65-39b8-4268-b04f-f9cc3daf8cf2)
)
(wire (pts (xy 68.58 87.63) (xy 73.66 87.63))
(stroke (width 0) (type default))
(uuid bc241f20-6769-4f8a-8b94-4a7b13f8ceeb)
)
(wire (pts (xy 48.26 130.81) (xy 41.91 130.81))
(stroke (width 0) (type default))
(uuid c034e294-2e2c-45fe-bb2b-fd5793e81899)
)
(wire (pts (xy 27.94 130.81) (xy 27.94 118.11))
(stroke (width 0) (type default))
(uuid c193ad09-9bdb-4c3e-b97f-7e6c3e0d56eb)
)
(wire (pts (xy 58.42 130.81) (xy 48.26 130.81))
(stroke (width 0) (type default))
(uuid d2d463e5-7d31-4464-a0f7-36cebcdd7d91)
)
(wire (pts (xy 66.04 115.57) (xy 73.66 115.57))
(stroke (width 0) (type default))
(uuid dcfc5f36-2338-4ed6-bd65-95e381a3f0c3)
)
(wire (pts (xy 27.94 147.32) (xy 27.94 130.81))
(stroke (width 0) (type default))
(uuid e3101c96-deae-4e0b-973d-d061a46ee91f)
)
(wire (pts (xy 62.23 80.01) (xy 44.45 80.01))
(stroke (width 0) (type default))
(uuid e8994e7b-4d5d-46af-814b-fafd7ca9fd96)
)
(wire (pts (xy 58.42 130.81) (xy 58.42 120.65))
(stroke (width 0) (type default))
(uuid ef97f3b7-6c46-4200-8098-67d464145146)
)
(hierarchical_label "SYS_ENABLE" (shape output) (at 66.04 115.57 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 043f3c0c-ad46-4b9e-826d-b3d9e08a14d1)
)
(hierarchical_label "UCA1_RXD" (shape input) (at 207.01 87.63 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0af61117-8c5a-4b89-a4a6-3bac392b35be)
)
(hierarchical_label "UART0_TX" (shape output) (at 67.31 97.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1daa1e0c-922a-4809-8ebd-c109e3c55c66)
)
(hierarchical_label "SBW_TDIO" (shape bidirectional) (at 207.01 77.47 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 381b85ed-5f2f-4263-97ab-f1357fe006a2)
)
(hierarchical_label "SBW_TCK" (shape input) (at 207.01 72.39 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5a682ad6-c6c1-468b-a6f0-0c224d800221)
)
(hierarchical_label "LEAK_DETECT" (shape input) (at 68.58 92.71 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 680a7c1a-d383-44c8-93d8-914c1b4ad441)
)
(hierarchical_label "SPI_MISO" (shape input) (at 205.74 100.33 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7755c6b5-7c83-4ca1-80c1-548c7dc80f4a)
)
(hierarchical_label "SPI_SCLK" (shape output) (at 204.47 95.25 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7b34140f-205a-45f3-b89a-98e805b184d9)
)
(hierarchical_label "UCA1_TXD" (shape output) (at 207.01 90.17 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9cbcad1e-96b8-4045-b4d1-8dbf657b36ff)
)
(hierarchical_label "THR_KILLED" (shape input) (at 71.12 125.73 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a7c01d83-7738-48a9-a3dc-5c8822e73c8f)
)
(hierarchical_label "UART0_RX" (shape input) (at 67.31 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c5aa1a18-cde5-4edd-8a4b-44895fa0a1be)
)
(hierarchical_label "SCL" (shape bidirectional) (at 68.58 87.63 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cd86c80c-3eb8-4ee6-b7d9-9a48706125d9)
)
(hierarchical_label "SW_KILL" (shape output) (at 67.31 140.97 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ddc5f9f2-95f5-42b4-adcd-e9d614cbe640)
)
(hierarchical_label "SPI_MOSI" (shape output) (at 204.47 97.79 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e48bc029-41f0-41e2-99d1-7b834d7b697b)
)
(hierarchical_label "SDA" (shape bidirectional) (at 68.58 85.09 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f2253523-44e1-4422-8aed-19d53ff274ea)
)
(symbol (lib_id "SWLib:MSP430FR2355TPT") (at 137.16 107.95 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 20448931-0ee1-4d29-bd8f-1b3f749b0071)
(property "Reference" "U2" (at 137.16 62.23 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "MSP430FR2355TPT" (at 137.16 64.77 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "SWLib:PT0048A_N" (at 137.16 107.95 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "MSP430FR2355TPT" (at 137.16 107.95 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(pin "1" (uuid 75a1e92b-8107-4693-ab38-0fadbbb4677e))
(pin "10" (uuid 30dac399-9c49-43b7-900c-e3e82d260fde))
(pin "11" (uuid ae5a18c2-dc05-4ef9-a63e-6e5c9df0d10b))
(pin "12" (uuid c12fcc92-30a6-4179-9c0e-de8856b4c6e0))
(pin "13" (uuid 4b9fa6a4-a2ac-46b4-b1ec-f1663d338624))
(pin "14" (uuid c389d35e-bc43-4d51-bbd4-479cc134753e))
(pin "15" (uuid 959ee2e0-d59a-4177-ac46-f759de99a4ce))
(pin "16" (uuid 7ed7cdf0-1fcc-43f4-ba16-ffc133e445a1))
(pin "17" (uuid 338b165e-2bf7-423c-85f8-cbc53be3cd58))
(pin "18" (uuid f7a833d7-5898-412a-b0eb-1ecbcae42ba4))
(pin "19" (uuid 262e0ea6-ba83-42c4-8ef1-147f438c7862))
(pin "2" (uuid 526aa131-3b05-4c3f-bbb9-2da10424e520))
(pin "20" (uuid 1622addd-278d-4297-95d9-0b2beeb99ff6))
(pin "21" (uuid 71aaf4f1-0988-40ba-9d3f-d35e3f794bd0))
(pin "22" (uuid 0468eb0a-e9a9-4a1d-9778-073695fc9085))
(pin "23" (uuid 25fc9ea2-dce6-4591-8582-c45eb1b06177))
(pin "24" (uuid 977ff401-66e1-4081-bb9b-1011a40d46e9))
(pin "25" (uuid fdb8c4a8-1343-4aa2-af3e-15c5ac3904be))
(pin "26" (uuid eb5e56d3-a788-4375-aec3-371eb5042596))
(pin "27" (uuid 81191a49-8ecf-4b41-a98d-df1e5704c687))
(pin "28" (uuid 829d6013-3b34-4988-928d-f8af6e64ccd5))
(pin "29" (uuid 1828d2b1-ed1e-4608-b44d-4b7313705aaa))
(pin "3" (uuid f7e7fa70-4c7b-41d0-b5d5-0588c40e6172))
(pin "30" (uuid 8fcd0e01-e63d-41b7-9fbd-9392540b73c2))
(pin "31" (uuid 839c82ad-db9d-444c-b173-f08badb64868))
(pin "32" (uuid 15d8f940-79a8-419f-a11f-710a0906327c))
(pin "33" (uuid c2959e12-28b5-4925-8d64-32bf9bf79bd3))
(pin "34" (uuid 5e953c65-7afe-4e29-9d5c-6f619460a38a))
(pin "35" (uuid 4076c99d-9993-4186-b68d-1b136b69d54b))
(pin "36" (uuid ad1c8b58-07c2-42ab-85af-f14f4a890744))
(pin "37" (uuid f2fd7389-ef50-49e0-93a0-8d333642d284))
(pin "38" (uuid d5196d1c-495a-4145-9d6b-edf67da7f175))
(pin "39" (uuid 9b6ef414-049a-480d-b624-3a6dea51d87e))
(pin "4" (uuid 3c6ed61d-d050-43b2-9ff2-485505071347))
(pin "40" (uuid d4661af1-2570-4513-8593-e1c6f92da1f0))
(pin "41" (uuid 28a875f5-b0e6-4c5c-b04a-91854f947f56))
(pin "42" (uuid c71db65a-a3ef-47d4-8fc9-803e7b4d513c))
(pin "43" (uuid 1d0bbdd9-ccda-4c54-9373-375097c9fbf8))
(pin "44" (uuid 66990fc2-8b11-43e3-9940-4a638885da0e))
(pin "45" (uuid 5047412a-0057-4f17-9306-0efb8009bce0))
(pin "46" (uuid 96f51920-f55e-4371-99f2-5f971b50e85e))
(pin "47" (uuid f03b1c7b-f934-437b-9ec5-c739cd7cd73b))
(pin "48" (uuid 267a5262-df34-432a-bb67-482f00a4cc15))
(pin "5" (uuid 7fce5daf-8dbf-4340-a482-910d53275be6))
(pin "6" (uuid a6a315b4-0cbf-4949-a60a-c3c748757d4b))
(pin "7" (uuid 1a0b94da-85cb-4493-8034-93a9fe467294))
(pin "8" (uuid 401cdf9c-9b52-4c1c-8c44-71b35f9b5c90))
(pin "9" (uuid fef61521-ea4e-4c51-b7cf-6beffade7705))
(instances
(project "MEB"
(path "/228e4997-23c1-4c21-939b-583cad26a5e3/33bb8219-dcc3-47e5-a6ab-5e0a1cc34bb1"
(reference "U2") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 62.23 76.2 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 21d82500-98c1-4b48-9ce9-4112b3ffed2f)
(property "Reference" "C5" (at 66.04 74.93 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (at 66.04 77.47 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 63.1952 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 62.23 76.2 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 39b2bc53-d2b4-4a58-8630-ef22fda1bdc3))
(pin "2" (uuid 4417011c-26fd-4b27-855a-96b83523bd30))
(instances
(project "MEB"
(path "/228e4997-23c1-4c21-939b-583cad26a5e3/33bb8219-dcc3-47e5-a6ab-5e0a1cc34bb1"
(reference "C5") (unit 1)
)
)
)
)
(symbol (lib_id "MEB-altium-import:GND") (at 224.79 143.51 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2d4e0ba9-b656-44b2-8cff-bfe43ef146b8)
(property "Reference" "#PWR09" (at 224.79 138.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "GND" (at 224.79 140.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 224.79 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 224.79 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "" (uuid 4969f553-5d21-474b-a460-620fb0843796))
(instances
(project "MEB"
(path "/228e4997-23c1-4c21-939b-583cad26a5e3/33bb8219-dcc3-47e5-a6ab-5e0a1cc34bb1"
(reference "#PWR09") (unit 1)
)
)
)
)
(symbol (lib_id "MEB-altium-import:3V3") (at 54.61 72.39 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 59981d1e-1002-4efc-b74f-c4fdedc5ee2a)
(property "Reference" "#PWR011" (at 54.61 66.04 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "3V3" (at 54.61 68.58 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 54.61 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 54.61 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "" (uuid e5e03c87-7a2e-43f4-8ae1-1209fb691343))
(instances
(project "MEB"
(path "/228e4997-23c1-4c21-939b-583cad26a5e3/33bb8219-dcc3-47e5-a6ab-5e0a1cc34bb1"
(reference "#PWR011") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 38.1 118.11 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 8cb83982-d07e-441d-b3f3-506350e2fbad)
(property "Reference" "C3" (at 38.1 110.49 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "12.5p" (at 38.1 113.03 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 34.29 119.0752 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 38.1 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bb0fe989-bbe4-4e7d-af65-cfd75a9e1331))
(pin "2" (uuid 4e4a7fe5-85b9-4de5-b957-340602c6ea00))
(instances
(project "MEB"
(path "/228e4997-23c1-4c21-939b-583cad26a5e3/33bb8219-dcc3-47e5-a6ab-5e0a1cc34bb1"
(reference "C3") (unit 1)
)
)
)
)
(symbol (lib_id "MEB-altium-import:GND") (at 27.94 147.32 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid a7295d8d-16d2-4d04-a57e-bc2cd6152657)
(property "Reference" "#PWR010" (at 27.94 142.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "GND" (at 27.94 144.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 27.94 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 27.94 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "" (uuid 09774e91-7c7d-4c9f-aab5-6500ecdc4c08))
(instances
(project "MEB"
(path "/228e4997-23c1-4c21-939b-583cad26a5e3/33bb8219-dcc3-47e5-a6ab-5e0a1cc34bb1"
(reference "#PWR010") (unit 1)
)
)
)
)
(symbol (lib_id "Device:Crystal") (at 48.26 124.46 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid c129fe2a-cc0a-4e8f-a28a-b733279869dc)
(property "Reference" "Y1" (at 52.07 123.19 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "32768" (at 52.07 125.73 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 48.26 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 48.26 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Number" "MS3V-T1R-32.768kHz-12.5pF-20PPM-TA-QC-Au" (at 48.26 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a1c70198-5982-45f9-ba38-3ed4c36aef70))
(pin "2" (uuid 4b669994-9017-405b-b226-0f9e49780d2f))
(instances
(project "MEB"
(path "/228e4997-23c1-4c21-939b-583cad26a5e3/33bb8219-dcc3-47e5-a6ab-5e0a1cc34bb1"
(reference "Y1") (unit 1)
)
)
)
)