-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSTS1_COBC.kicad_sch
3605 lines (3542 loc) · 169 KB
/
STS1_COBC.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 20211123) (generator eeschema)
(uuid 64b52a43-fca3-452c-8290-4396e47a8ab3)
(paper "A4")
(title_block
(title "STS1 COBC HW")
(date "2024-06-16")
(rev "3.0")
(company "TU Wien Space Team")
)
(lib_symbols
(symbol "Mechanical:Fiducial" (in_bom yes) (on_board yes)
(property "Reference" "FID" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Fiducial" (id 1) (at 0 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "fiducial marker" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Fiducial Marker" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Fiducial*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Fiducial_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type background))
)
)
)
(symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "STS-connector:coordinate_system" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -5.08 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "coordinate_system" (id 1) (at -1.27 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "cubesatFunkmodul:Coordinates" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "coordinate_system_0_1"
(rectangle (start -6.35 5.08) (end 6.35 -3.81)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 3.81 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 3.81)
(xy -1.27 2.54)
(xy 1.27 2.54)
(xy 0 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.81 0)
(xy 2.54 1.27)
(xy 2.54 -1.27)
(xy 3.81 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:+3.3VP" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 3.81 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3VP" (id 1) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3VP\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3VP_0_0"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3VP" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "+3.3VP_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:+5VP" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5VP" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5VP\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5VP_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5VP_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5VP" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:VBUS" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VBUS" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VBUS\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VBUS_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VBUS_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 251.46 41.91) (diameter 0) (color 0 0 0 0)
(uuid 4c073cfe-1e57-4fca-9b48-5dbd11edd23f)
)
(junction (at 248.92 39.37) (diameter 0) (color 0 0 0 0)
(uuid 935cf7d7-10c9-4bea-a556-87525d52acea)
)
(junction (at 254 44.45) (diameter 0) (color 0 0 0 0)
(uuid f3334e95-b6e0-49b5-a5ee-84dcbe0456ec)
)
(no_connect (at 57.15 46.99) (uuid 6458bac6-423e-4d6a-8913-fdc0c0f81426))
(bus_entry (at 269.24 39.37) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0078ffff-803b-4798-8b80-5dd9f562d0f1)
)
(bus_entry (at 269.24 41.91) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0078ffff-803b-4798-8b80-5dd9f562d0f2)
)
(bus_entry (at 269.24 44.45) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0078ffff-803b-4798-8b80-5dd9f562d0f3)
)
(bus_entry (at 280.67 90.17) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06d59f42-3064-40d7-b670-bf388ada18b8)
)
(bus_entry (at 269.24 31.75) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d5f24c2-8555-4591-8dd7-d7ba7b89ba38)
)
(bus_entry (at 269.24 34.29) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70ccc069-2ea6-42c4-83b5-0e05284c10b8)
)
(bus_entry (at 269.24 36.83) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70ccc069-2ea6-42c4-83b5-0e05284c10b9)
)
(bus_entry (at 274.32 74.93) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ed74196-31b3-4678-aa82-56bedf54614f)
)
(bus_entry (at 280.67 154.94) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9dab4cba-b2de-4cc5-8206-9c1e77880c7f)
)
(bus_entry (at 274.32 82.55) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bbf0d4ba-4373-4743-a646-a3e2addb2366)
)
(bus_entry (at 274.32 85.09) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bbf0d4ba-4373-4743-a646-a3e2addb2367)
)
(bus_entry (at 280.67 87.63) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cab4c1b8-7cfe-4ae5-b41f-7f06b4e13f6b)
)
(bus_entry (at 280.67 85.09) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce8d748d-8e7e-4502-a6ec-da62611af761)
)
(bus_entry (at 280.67 92.71) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e670fb4e-4d2f-41dd-ba56-8998dc798c3f)
)
(bus_entry (at 274.32 77.47) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe64f7b8-f397-44d4-b45f-9f25e31e3151)
)
(wire (pts (xy 187.96 54.61) (xy 204.47 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00904517-2e1c-4637-b206-22ea67607978)
)
(bus (pts (xy 274.32 74.93) (xy 274.32 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 025bce38-57ac-43cb-9017-8a0aa4d8fac4)
)
(wire (pts (xy 248.92 39.37) (xy 269.24 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04d2f174-2f79-4ff6-9429-3d6afe67761d)
)
(wire (pts (xy 246.38 90.17) (xy 278.13 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0877cac0-9f40-415a-b6c2-6a5081218b7f)
)
(wire (pts (xy 266.7 46.99) (xy 248.92 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0aed18ca-e997-48c4-9694-eb3c34bdc792)
)
(wire (pts (xy 187.96 87.63) (xy 204.47 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f59c9b1-922a-45a2-98a8-6b76fb5e6c31)
)
(wire (pts (xy 59.69 119.38) (xy 59.69 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13f0a8f4-be31-481b-b9e1-1113dbe7ccd5)
)
(wire (pts (xy 187.96 31.75) (xy 204.47 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14a22dd9-60c7-4676-a0c4-623e46196851)
)
(wire (pts (xy 57.15 129.54) (xy 73.66 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15a8bc3d-228a-4d8b-a320-b050f1542fe8)
)
(bus (pts (xy 271.78 41.91) (xy 271.78 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 179009d3-ea9e-4c20-a743-21942429ab76)
)
(bus (pts (xy 63.5 44.45) (xy 63.5 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19bc8218-f3ee-4122-9402-f9ac540ce628)
)
(bus (pts (xy 63.5 44.45) (xy 177.8 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a4b910a-370e-4ad7-bf20-d29d6b6ddfef)
)
(wire (pts (xy 57.15 72.39) (xy 73.66 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1da822b3-6804-4747-9dfd-10661fa26ece)
)
(wire (pts (xy 73.66 137.16) (xy 57.15 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e7d4560-eead-418c-8966-5eb38dc2bd39)
)
(wire (pts (xy 73.66 160.02) (xy 57.15 160.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f282034-5fc1-44dc-a525-d4b15e7b5cbe)
)
(wire (pts (xy 246.38 59.69) (xy 266.7 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2103ad54-8991-4a9d-82f9-ea148a9e010c)
)
(wire (pts (xy 187.96 105.41) (xy 204.47 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23c8eb1c-ede8-4b3d-b8b7-0dba803f7333)
)
(wire (pts (xy 57.15 74.93) (xy 73.66 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26f17371-6d8b-412e-9ab3-5ce22537e2e0)
)
(wire (pts (xy 57.15 87.63) (xy 73.66 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 280a321d-b7ba-454c-96af-3fbea227a3c2)
)
(wire (pts (xy 204.47 123.19) (xy 187.96 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28beaeda-20a9-4d15-94a2-5dcdab0ac19d)
)
(wire (pts (xy 246.38 44.45) (xy 254 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28c6fccc-d72b-4e10-aeb6-e2094b0eb105)
)
(wire (pts (xy 246.38 85.09) (xy 274.32 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 321616e2-94b4-4e77-8364-a6a098bc42b2)
)
(bus (pts (xy 66.04 52.07) (xy 66.04 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33b29280-84db-4f3f-bd73-660aa3623dc4)
)
(wire (pts (xy 73.66 157.48) (xy 57.15 157.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 362f022f-2ea1-4f2e-8ce3-c1c98c55f61b)
)
(wire (pts (xy 187.96 39.37) (xy 204.47 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36323269-c18b-4dd8-a77e-f76fa80d5d09)
)
(wire (pts (xy 187.96 92.71) (xy 204.47 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a83858a-2013-46ce-a3da-9998d3f879b7)
)
(bus (pts (xy 276.86 82.55) (xy 276.86 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b2c4723-7e6d-4a0b-bce1-b177c5e2330b)
)
(wire (pts (xy 266.7 49.53) (xy 251.46 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d0c196f-faff-4c2e-ab75-eb3d057e005d)
)
(wire (pts (xy 187.96 72.39) (xy 204.47 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e02ffb7-45ad-4017-b741-6f5f06fe63a3)
)
(wire (pts (xy 187.96 85.09) (xy 204.47 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f292435-34f2-4e84-a43f-7b232096dd49)
)
(wire (pts (xy 73.66 134.62) (xy 57.15 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f4f2a2d-3754-4b7b-bb5d-16e978c02ce4)
)
(wire (pts (xy 246.38 87.63) (xy 278.13 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40cfbbbb-663b-4df7-969a-fba755ba8b5f)
)
(wire (pts (xy 246.38 118.11) (xy 266.7 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43351e87-090b-46d3-a5df-50af4b41e621)
)
(wire (pts (xy 246.38 125.73) (xy 266.7 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a8b8043-cb14-4e98-a43f-664f05ec6ec9)
)
(wire (pts (xy 187.96 36.83) (xy 204.47 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ff2d51a-b249-499b-8fcb-ef060ba28cdb)
)
(wire (pts (xy 73.66 149.86) (xy 57.15 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5343f2ca-be09-4c9a-bf38-0d9b243bcfdd)
)
(bus (pts (xy 180.34 46.99) (xy 180.34 17.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 594e6530-cc3e-4427-ac14-c5bedeff6e3a)
)
(bus (pts (xy 271.78 36.83) (xy 271.78 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ae61d32-9bf4-446f-8ad0-ba65b64bf7f8)
)
(wire (pts (xy 187.96 125.73) (xy 204.47 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b343bed-2225-4d6e-b444-dfc834317530)
)
(wire (pts (xy 199.39 154.94) (xy 204.47 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e677f12-05ea-4b57-a724-7babd0a609e2)
)
(bus (pts (xy 185.42 12.7) (xy 280.67 12.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f0fb8d3-51f5-4428-95cc-9f111014522e)
)
(wire (pts (xy 246.38 82.55) (xy 274.32 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f8d7210-ff46-4fe5-ac42-6a895822441a)
)
(wire (pts (xy 246.38 92.71) (xy 278.13 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6052c46b-f195-4457-afe3-551c25ca26a3)
)
(bus (pts (xy 182.88 15.24) (xy 276.86 15.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 647837ed-cd1f-47f9-bbd0-9281f2938007)
)
(wire (pts (xy 251.46 49.53) (xy 251.46 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66522258-77ae-48d9-8065-f4cc97bf0ee0)
)
(bus (pts (xy 68.58 54.61) (xy 68.58 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b5c62e3-cad2-4bca-824e-a0a37fb53a27)
)
(wire (pts (xy 187.96 62.23) (xy 204.47 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7140c085-a7c2-4333-8ad5-4e65a66e0ce8)
)
(bus (pts (xy 57.15 57.15) (xy 71.12 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 752aa43b-7629-41ee-9169-39f9f6c7872c)
)
(wire (pts (xy 246.38 41.91) (xy 251.46 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75378a72-40db-4dac-aea5-e156f49379ae)
)
(wire (pts (xy 57.15 77.47) (xy 73.66 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 757f44b1-398b-4bac-9615-c21c83a10898)
)
(wire (pts (xy 187.96 64.77) (xy 204.47 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75e8dbd5-c1ae-4a81-a18b-d0fb06c2a920)
)
(wire (pts (xy 187.96 128.27) (xy 204.47 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7af656b1-40fd-4f0f-832d-fab511ae5cf7)
)
(wire (pts (xy 199.39 152.4) (xy 199.39 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b936bc0-6d7e-4214-b4f8-3f0963174e40)
)
(bus (pts (xy 274.32 17.78) (xy 274.32 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7bc2854d-d358-464e-9614-6c8ae26a9183)
)
(wire (pts (xy 187.96 46.99) (xy 204.47 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d714a60-9ed5-4718-87f8-f7c814489b33)
)
(wire (pts (xy 246.38 123.19) (xy 266.7 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d7fe7cb-8f79-4257-a56d-4677f23b6d51)
)
(bus (pts (xy 280.67 87.63) (xy 280.67 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7dd59951-0d23-442c-b30b-df35669d321a)
)
(wire (pts (xy 187.96 52.07) (xy 204.47 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e9d4da7-e9b4-4a48-a923-76b5d373f35c)
)
(wire (pts (xy 187.96 41.91) (xy 204.47 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8378cbf0-0b25-435a-9b18-578be29ed14b)
)
(bus (pts (xy 66.04 46.99) (xy 180.34 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8493c378-fde8-4cc6-bfb0-4c9b844231c9)
)
(wire (pts (xy 246.38 101.6) (xy 266.7 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 85617133-20a5-43d9-9afc-90e9cba5eb5b)
)
(wire (pts (xy 248.92 46.99) (xy 248.92 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 873a68ea-cdd9-43c3-b1d7-4ee42b6c2d72)
)
(wire (pts (xy 246.38 34.29) (xy 269.24 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 878974f6-e23d-4b7e-918a-2b5b1f0a918d)
)
(bus (pts (xy 280.67 85.09) (xy 280.67 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 89507361-e7ff-4794-b909-ced12c0a9772)
)
(wire (pts (xy 57.15 67.31) (xy 73.66 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 89686846-2593-4b6e-b91d-22a6c7a0361e)
)
(wire (pts (xy 246.38 62.23) (xy 266.7 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a269e71-a3dc-4633-9bad-4ef23c67b16b)
)
(wire (pts (xy 246.38 72.39) (xy 266.7 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a528942-f0d5-4258-ba59-5569441665b3)
)
(bus (pts (xy 276.86 80.01) (xy 276.86 15.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c40fba8-3ffa-4805-a317-5b039d5c0724)
)
(wire (pts (xy 187.96 143.51) (xy 204.47 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8df69be0-83c0-4aef-8ce7-a92b5164d8ba)
)
(wire (pts (xy 246.38 57.15) (xy 266.7 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9020bc09-d705-401d-a194-1f66c8537a14)
)
(bus (pts (xy 180.34 17.78) (xy 274.32 17.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 906a6ed0-9d80-4aa5-97fb-5110229afbc9)
)
(bus (pts (xy 177.8 20.32) (xy 271.78 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90842c6b-dd24-4c49-af1b-c3d5055a861d)
)
(bus (pts (xy 280.67 92.71) (xy 280.67 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93ae8653-3be8-4641-a932-d0cc7536f943)
)
(wire (pts (xy 187.96 157.48) (xy 204.47 157.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 941a99d1-f592-4850-889c-77ae9f326ded)
)
(bus (pts (xy 271.78 20.32) (xy 271.78 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95a65fce-89ab-46c5-88d7-99e933515084)
)
(wire (pts (xy 246.38 36.83) (xy 269.24 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96a6b327-7c0a-49be-a04e-77e1123a93be)
)
(wire (pts (xy 187.96 100.33) (xy 204.47 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96b45c2b-2662-4347-a000-fdd3c84bbdee)
)
(bus (pts (xy 177.8 44.45) (xy 177.8 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99655881-ab6d-48e0-a1d7-604d7b5dc5f0)
)
(wire (pts (xy 246.38 39.37) (xy 248.92 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9aed3d72-2364-461d-a9d3-57c0477854f2)
)
(wire (pts (xy 187.96 59.69) (xy 204.47 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c02045c-5e89-4b61-aa0c-cf12ca1c36e4)
)
(wire (pts (xy 246.38 69.85) (xy 266.7 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9f6e5855-47ea-46ee-881c-97c5d2a3ccf1)
)
(wire (pts (xy 187.96 80.01) (xy 204.47 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9faef264-81d9-4a64-8529-80fb3e633368)
)
(bus (pts (xy 71.12 57.15) (xy 71.12 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0734f52-caee-445a-a86f-91198571cabd)
)
(wire (pts (xy 187.96 90.17) (xy 204.47 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a07aac44-0e3e-4471-9cf7-d02705057154)
)
(wire (pts (xy 73.66 139.7) (xy 57.15 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a563cd04-036c-439d-a946-5bba4cb19135)
)
(wire (pts (xy 204.47 118.11) (xy 187.96 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a573dcc0-59db-4505-9277-54646bd544ba)
)
(wire (pts (xy 254 52.07) (xy 254 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9e290c9-98ab-4868-9ad2-2974ca7de8a5)
)
(bus (pts (xy 182.88 49.53) (xy 182.88 15.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa9f7413-25ee-4999-8c52-581e967cd286)
)
(wire (pts (xy 246.38 157.48) (xy 278.13 157.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b1b4d578-0a53-4754-85c5-49f869999f06)
)
(wire (pts (xy 57.15 121.92) (xy 66.802 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b285f0ec-cc1a-4a36-b61f-f8724d778276)
)
(bus (pts (xy 57.15 54.61) (xy 68.58 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2dbe63c-1ac8-4f80-ad02-56686055ed42)
)
(wire (pts (xy 266.7 52.07) (xy 254 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3a0399a-3632-4099-bce1-bf95aa8bd374)
)
(wire (pts (xy 254 44.45) (xy 269.24 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b8ede35b-d2a2-4e45-9240-02b53fbe05db)
)
(wire (pts (xy 66.802 121.92) (xy 66.802 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b97869cc-6354-4a84-b2b8-2cd76ade587b)
)
(wire (pts (xy 246.38 120.65) (xy 266.7 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9dbafc0-152b-4594-b89c-3d6b2ba4cbce)
)
(wire (pts (xy 246.38 67.31) (xy 266.7 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid baa3f7af-bd44-4b1f-8efd-00d1aed73eca)
)
(wire (pts (xy 57.15 62.23) (xy 73.66 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bfa7dc72-4b4e-4c77-aedf-a0958efcd9a1)
)
(bus (pts (xy 57.15 49.53) (xy 63.5 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c3b88191-4ef4-44cf-a211-54e242a0e48f)
)
(bus (pts (xy 185.42 52.07) (xy 185.42 12.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c5a90282-63f7-4620-b009-1a7ab402618e)
)
(wire (pts (xy 187.96 67.31) (xy 204.47 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7b0091c-cdeb-4e77-b499-ee720a72ddc7)
)
(bus (pts (xy 68.58 49.53) (xy 182.88 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c84df2d3-b35c-4409-990d-5a55698eaa6c)
)
(bus (pts (xy 271.78 39.37) (xy 271.78 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c8794f5c-edba-4d78-9163-ff52c4b621b3)
)
(wire (pts (xy 246.38 154.94) (xy 266.7 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd1da80c-a182-48cd-972b-a1e8e1430346)
)
(wire (pts (xy 246.38 104.14) (xy 266.7 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd23709a-99f1-47e3-8b36-76e3f0284685)
)
(wire (pts (xy 57.15 164.084) (xy 73.66 164.084))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cda47bdf-8f3c-410a-bd93-dda31c91a597)
)
(wire (pts (xy 246.38 95.25) (xy 278.13 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce8a1a2e-f5f1-46dc-b5f6-736c28d1477e)
)
(wire (pts (xy 204.47 120.65) (xy 187.96 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ced876c8-a319-4778-b840-6b7b12d13f62)
)
(wire (pts (xy 57.15 80.01) (xy 73.66 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3a81bfc-e7d0-4f8b-a1ca-d57d3e4ce343)
)
(bus (pts (xy 280.67 90.17) (xy 280.67 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d99c2ddf-2f7b-4c13-9367-8e936198ad20)
)
(wire (pts (xy 187.96 34.29) (xy 204.47 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db95e7d3-7d32-4e64-8044-78c41c18f465)
)
(wire (pts (xy 251.46 41.91) (xy 269.24 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dfb15ca6-41cf-438b-b85d-462146378ba5)
)
(wire (pts (xy 187.96 74.93) (xy 204.47 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e00a9468-59ff-47c8-a7b5-1f8ed9f8b4a1)
)
(wire (pts (xy 57.15 64.77) (xy 73.66 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e165572f-f4ad-48da-95ae-8139868ae76b)
)
(wire (pts (xy 73.66 144.78) (xy 57.15 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e266c917-b2ad-49e5-a6e6-a6f5f23bbc0a)
)
(bus (pts (xy 271.78 34.29) (xy 271.78 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e33eead7-1d58-4238-84c0-46a3c2024c9f)
)
(bus (pts (xy 280.67 12.7) (xy 280.67 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e850a55e-c3db-42b4-9d39-e3ab1a08e5c7)
)
(wire (pts (xy 246.38 80.01) (xy 271.78 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e85a0c1e-76d5-4fae-ae86-a7e992c31ee8)
)
(wire (pts (xy 57.15 119.38) (xy 59.69 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e8d486d2-6357-468d-b515-c1b9cd90b7ef)
)
(bus (pts (xy 71.12 52.07) (xy 185.42 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ecf051e2-9bb3-4eda-8c11-fcde891bdeb5)
)
(wire (pts (xy 246.38 143.51) (xy 266.7 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee5e7374-167c-449a-a549-34a83da1c229)
)
(wire (pts (xy 73.66 152.4) (xy 57.15 152.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eff45dbc-8b23-4a26-8047-6d7d1f6c9ead)
)
(bus (pts (xy 271.78 44.45) (xy 271.78 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f330b77a-51db-4f99-9e5e-d4bf0364ab43)
)
(bus (pts (xy 57.15 52.07) (xy 66.04 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f422de4e-414c-4a4e-b8f5-527464bd2b81)
)
(wire (pts (xy 57.15 132.08) (xy 73.66 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f4d8d7e6-d4fc-4f9b-82ba-0c9dc42122b8)
)
(wire (pts (xy 57.15 127) (xy 73.66 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fa2400cc-2448-498b-9a10-fe81c2ae72d5)
)
(wire (pts (xy 246.38 31.75) (xy 269.24 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc2a4144-87d0-4be0-9f80-d6c7b2dcbce6)
)
(wire (pts (xy 57.15 59.69) (xy 73.66 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fdb6cc66-c41f-4fab-9b96-16b790259db5)
)
(wire (pts (xy 187.96 44.45) (xy 204.47 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fdce54b8-800c-4bc3-bcdf-d0be16ba2263)
)
(wire (pts (xy 73.66 142.24) (xy 57.15 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe5f65a2-a075-4d58-a778-9ac44a04b8c3)
)
(wire (pts (xy 246.38 77.47) (xy 271.78 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ffaf7520-065a-4a34-a82d-ebefab07b68b)
)
(label "Flash_CS" (at 187.96 125.73 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 184f42c0-71a0-4414-9384-007d287e8fe5)
)
(label "FRAM_MOSI" (at 266.7 120.65 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 194edd21-0c5c-49dd-9d33-a0c3035c43f9)
)
(label "Flash_MOSI" (at 266.7 69.85 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1aa9d5e1-f392-4421-a1a7-2aead7bcd5db)
)
(label "EDU_Boot_Pin" (at 73.66 80.01 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1cebcfaa-a55e-44fb-9338-aa77a47df819)
)
(label "RF_PA_Fault" (at 73.66 149.86 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1dacd7be-807b-4e25-a2b9-3f0aee18b69c)
)
(label "RF_MOSI" (at 73.66 129.54 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1e9ca7a8-7bd9-4a37-9850-059a07eab3a2)
)
(label "UCI_UART.RX" (at 266.7 85.09 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 316a0cda-6ec2-4a8f-ab09-829d53488374)
)
(label "EDU_Update" (at 187.96 90.17 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3539c508-f2e6-4fbd-a066-33a14db9b553)
)
(label "WDT_Clear" (at 187.96 54.61 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3e2d5a44-8b45-4336-9f22-bcffc3114d5c)
)
(label "Flash_~{WP}" (at 187.96 72.39 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3f52fdbb-f5cf-4881-97ec-1e9c91667a10)
)
(label "Flash_MISO" (at 266.7 67.31 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 40795114-3f11-4e54-adf5-d48d94c5a680)
)
(label "EPS_Ant_Deploy" (at 187.96 59.69 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4467df53-4c2b-4ee1-bfb7-627a0e636f70)
)