-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSX1280-breakout.kicad_sch
2214 lines (2150 loc) · 88.3 KB
/
SX1280-breakout.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 3cf298cf-9fa6-4d2c-a6e0-5c2e8fe6011d)
(paper "USLetter")
(title_block
(title "SX1280 Breakout")
(rev "v3")
(comment 2 "M.Holliday")
)
(lib_symbols
(symbol "Connector:Conn_Coaxial" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0.254 3.048 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_Coaxial" (id 1) (at 2.921 0 90)
(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" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_Coaxial_0_1"
(arc (start -1.778 -0.508) (mid 0.2311 -1.8066) (end 1.778 0)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -0.508 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 -1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0 0) (radius 0.508)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.778 0) (mid 0.2099 1.8101) (end -1.778 0.508)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Conn_Coaxial_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "In" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 2.54)
(name "Ext" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x01" (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" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x01_1_1"
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -1.27)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0.762 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "L_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_Small_0_1"
(arc (start 0 -2.032) (mid 0.508 -1.524) (end 0 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -1.016) (mid 0.508 -0.508) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid 0.508 0.508) (end 0 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 1.016) (mid 0.508 1.524) (end 0 2.032)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "L_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (id 1) (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 1.016 -0.254 90)
(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" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(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 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (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" "+3V3" (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" "power-flag" (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 \"+3V3\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_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 "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (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" "power-flag" (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 "symbols:2450FM07D0034T" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
(property "Reference" "FL" (id 0) (at 26.67 7.62 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2450FM07D0034T" (id 1) (at 26.67 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "2450FM07D0034T" (id 2) (at 26.67 2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://www.mouser.co.uk/datasheet/2/611/2450FM07D0034-1375634.pdf" (id 3) (at 26.67 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "Signal Conditioning Mini 2.45GHz Imped Matchd Frnt-End Fltr" (id 4) (at 26.67 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "0.4" (id 5) (at 26.67 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "JOHANSON TECHNOLOGY" (id 6) (at 26.67 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "2450FM07D0034T" (id 7) (at 26.67 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "609-2450FM07D0034T" (id 8) (at 26.67 -12.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.com/Search/Refine.aspx?Keyword=609-2450FM07D0034T" (id 9) (at 26.67 -15.24 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(symbol "2450FM07D0034T_0_0"
(pin bidirectional line (at 0 0 0) (length 5.08)
(name "IN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -2.54 0) (length 5.08)
(name "GND_1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 30.48 0 180) (length 5.08)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 30.48 -2.54 180) (length 5.08)
(name "GND_2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
(symbol "2450FM07D0034T_0_1"
(polyline
(pts
(xy 5.08 2.54)
(xy 25.4 2.54)
(xy 25.4 -5.08)
(xy 5.08 -5.08)
(xy 5.08 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "symbols:NT2016SA" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
(property "Reference" "Y?" (id 0) (at 13.97 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "NT2016SA" (id 1) (at 13.97 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "NT2016SA384MHZEND4679A" (id 2) (at 29.21 2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://www.ndk.com/images/products/catalog/c_NT2016SA_AFC_e.pdf" (id 3) (at 29.21 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "XTAL OSC TCXO" (id 4) (at 29.21 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "0.8" (id 5) (at 29.21 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "NIHON DEMPA KOGYO" (id 6) (at 29.21 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "NT2016SA-38.4MHZ-END4679A" (id 7) (at 29.21 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "" (id 8) (at 29.21 -12.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "" (id 9) (at 29.21 -15.24 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Arrow Part Number" "" (id 10) (at 29.21 -17.78 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Arrow Price/Stock" "" (id 11) (at 29.21 -20.32 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(symbol "NT2016SA_0_0"
(pin passive line (at 0 -2.54 0) (length 5.08)
(name "VCONT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 27.94 -2.54 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 27.94 0 180) (length 5.08)
(name "OUTPUT" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 0 0) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
(symbol "NT2016SA_0_1"
(polyline
(pts
(xy 5.08 2.54)
(xy 22.86 2.54)
(xy 22.86 -5.08)
(xy 5.08 -5.08)
(xy 5.08 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "symbols:SX1280IMLTRT" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
(property "Reference" "IC" (id 0) (at 36.83 25.4 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SX1280IMLTRT" (id 1) (at 36.83 22.86 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "QFN50P400X400X80-25N-D" (id 2) (at 36.83 20.32 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "http://www.semtech.com/images/datasheet/sx1280_81.pdf" (id 3) (at 36.83 17.78 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "RF Transceiver Long range 2.4 GHz Wireless Transceiver" (id 4) (at 36.83 15.24 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "0.8" (id 5) (at 36.83 12.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "SEMTECH" (id 6) (at 36.83 10.16 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "SX1280IMLTRT" (id 7) (at 36.83 7.62 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "947-SX1280IMLTRT" (id 8) (at 36.83 5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.com/Search/Refine.aspx?Keyword=947-SX1280IMLTRT" (id 9) (at 36.83 2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(symbol "SX1280IMLTRT_0_0"
(pin bidirectional line (at 0 0 0) (length 5.08)
(name "VR_PA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 20.32 -33.02 90) (length 5.08)
(name "DIO3" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 22.86 -33.02 90) (length 5.08)
(name "VBAT_IO" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 25.4 -33.02 90) (length 5.08)
(name "DCC_FB" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 40.64 -12.7 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 40.64 -10.16 180) (length 5.08)
(name "DCC_SW" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 40.64 -7.62 180) (length 5.08)
(name "VBAT" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 40.64 -5.08 180) (length 5.08)
(name "MISO_TX" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 40.64 -2.54 180) (length 5.08)
(name "MOSI_RX" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 40.64 0 180) (length 5.08)
(name "SCK_RTSN" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 40.64 2.54 180) (length 5.08)
(name "NSS_CTS" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -2.54 0) (length 5.08)
(name "VBAT_IN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 21.59 25.4 270) (length 5.08) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 21.59 25.4 270) (length 5.08) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 40.64 7.62 180) (length 5.08)
(name "RFIO" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 21.59 25.4 270) (length 5.08) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 21.59 25.4 270) (length 5.08) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 21.59 25.4 270) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -5.08 0) (length 5.08)
(name "NRESET" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -7.62 0) (length 5.08)
(name "XTA" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -10.16 0) (length 5.08)
(name "GND_1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -12.7 0) (length 5.08)
(name "XTB" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -33.02 90) (length 5.08)
(name "BUSY" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -33.02 90) (length 5.08)
(name "DIO1" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -33.02 90) (length 5.08)
(name "DIO2" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "SX1280IMLTRT_0_1"
(polyline
(pts
(xy 5.08 20.32)
(xy 35.56 20.32)
(xy 35.56 -27.94)
(xy 5.08 -27.94)
(xy 5.08 20.32)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 203.2 80.01) (diameter 0) (color 0 0 0 0)
(uuid 22b5d547-f5db-41c4-b70e-7fe0ed5c7485)
)
(junction (at 56.515 116.84) (diameter 0) (color 0 0 0 0)
(uuid 3f16fd89-da93-465b-a826-81e0e35ad0ea)
)
(junction (at 134.62 149.86) (diameter 0) (color 0 0 0 0)
(uuid 3fb6e7a1-56e2-4e25-a8f4-5f7d61a450ab)
)
(junction (at 158.75 143.51) (diameter 0) (color 0 0 0 0)
(uuid 5e49d1fa-f888-4777-9b40-193dac59e240)
)
(junction (at 56.515 121.92) (diameter 0) (color 0 0 0 0)
(uuid 689cf82d-d67a-4f2f-b723-cba939ede260)
)
(junction (at 70.485 127) (diameter 0) (color 0 0 0 0)
(uuid 8526408b-9ae9-472e-be19-f20d2c75084e)
)
(junction (at 166.37 118.11) (diameter 0) (color 0 0 0 0)
(uuid e364fb46-d4ea-4178-8faf-a01b7adcb06e)
)
(no_connect (at 109.22 123.19) (uuid 5275a4a8-62b6-420e-ba7f-a4ad824564be))
(no_connect (at 149.86 39.37) (uuid 988eff68-66aa-4e44-844a-780ee0493a74))
(no_connect (at 109.22 120.65) (uuid ff1c63fd-d91c-4827-bad7-5700758701b6))
(wire (pts (xy 157.48 107.95) (xy 160.02 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b803fea-b0dd-4707-b866-aa3dbccdcba7)
)
(wire (pts (xy 157.48 115.57) (xy 160.02 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 120cd773-f280-430c-9cc8-85317eb3311e)
)
(wire (pts (xy 152.4 44.45) (xy 149.86 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ad6e142-a98d-488f-a6a1-25648aa39fac)
)
(wire (pts (xy 158.75 128.27) (xy 158.75 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ae8f493-d14c-49b6-97b7-5a87a56e830c)
)
(wire (pts (xy 56.515 127) (xy 56.515 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b96a5dc-d175-46f8-9389-c0bff978fa71)
)
(wire (pts (xy 53.34 116.84) (xy 56.515 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bcf8536-87dd-4a3f-b38f-4fdf36888262)
)
(wire (pts (xy 130.81 83.82) (xy 137.16 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c0a8fa8-2e66-46f3-b57a-b3c0661ebfab)
)
(wire (pts (xy 149.86 123.19) (xy 149.86 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21efffc9-4940-4860-9d21-b69c9ea621b7)
)
(wire (pts (xy 129.54 143.51) (xy 129.54 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 278f696b-aeff-4d5e-9242-db180786d96b)
)
(wire (pts (xy 121.92 143.51) (xy 121.92 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b31829f-82ce-4d6e-bba5-ab444ecaa383)
)
(wire (pts (xy 152.4 34.29) (xy 149.86 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2be3209f-adc7-4774-9dca-c1f95e1d5c91)
)
(wire (pts (xy 109.22 104.14) (xy 106.68 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40b57f57-6a20-49c1-837e-eac9a98eff90)
)
(wire (pts (xy 56.515 121.92) (xy 56.515 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46167682-5a7b-43b5-8954-154108629937)
)
(wire (pts (xy 157.48 110.49) (xy 160.02 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 465f5679-1f5f-4ebf-ab8f-09f4270026aa)
)
(wire (pts (xy 53.34 121.92) (xy 56.515 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 487a28ed-d378-4150-b5dd-320af26f2fb5)
)
(wire (pts (xy 70.485 127) (xy 84.455 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ddf2f28-9ee5-4396-bed2-e8f3b9feb16d)
)
(wire (pts (xy 134.62 149.86) (xy 134.62 148.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53504ab7-7ae5-44b1-bf8c-5d294e37361a)
)
(wire (pts (xy 101.6 115.57) (xy 99.06 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 574bdbe7-8a76-4db7-b721-0e713cf6e5c9)
)
(wire (pts (xy 110.49 46.99) (xy 107.95 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c6efaa1-0c1e-44e6-aa0f-35b298c35f7e)
)
(wire (pts (xy 86.36 118.11) (xy 84.455 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66a03a2d-642f-4678-a96c-e834786610a3)
)
(wire (pts (xy 84.455 127) (xy 84.455 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69070c12-481c-411c-898e-e4e71d1656b4)
)
(wire (pts (xy 91.44 118.11) (xy 109.22 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6957a0dc-1fe0-4dca-bcd7-f7cff400ce5b)
)
(wire (pts (xy 104.14 113.03) (xy 104.14 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ebf2fca-c90c-4002-9d71-7c0b8599ac83)
)
(wire (pts (xy 203.2 72.39) (xy 203.2 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 761fc560-4faf-4354-8aee-adaa604e5f17)
)
(wire (pts (xy 166.37 128.27) (xy 166.37 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79aee641-bde9-416a-b12c-d82b791155cc)
)
(wire (pts (xy 203.2 80.01) (xy 210.82 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 818e551b-a148-4fe7-b618-a69fe4095058)
)
(wire (pts (xy 107.95 41.91) (xy 110.49 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82de372c-5293-44bc-b751-2fb4f728b183)
)
(wire (pts (xy 166.37 123.19) (xy 166.37 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83126558-e35f-4177-9e45-3699ed727ff9)
)
(wire (pts (xy 109.22 110.49) (xy 109.22 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 838fc5c4-77fe-402b-8637-171c5fad7010)
)
(wire (pts (xy 134.62 143.51) (xy 158.75 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c546011-7488-4058-8e32-0fbf4942d08b)
)
(wire (pts (xy 132.08 149.86) (xy 134.62 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d43c5d2-7366-44dd-bfad-4b2955fbfb7d)
)
(wire (pts (xy 158.75 120.65) (xy 149.86 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8fa130a0-f166-47ff-a0f3-51ebe1c67954)
)
(wire (pts (xy 203.2 80.01) (xy 203.2 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9716e931-e7c5-4821-b64e-724f04b977c6)
)
(wire (pts (xy 157.48 113.03) (xy 160.02 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a67aa1b-7384-439c-b1b9-2cb647ead9fe)
)
(wire (pts (xy 130.81 85.09) (xy 130.81 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9fe8f6c9-1e28-490d-be3b-de4ae853a0db)
)
(wire (pts (xy 158.75 123.19) (xy 158.75 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a06ce237-ca89-4089-9791-abec18f41287)
)
(wire (pts (xy 109.22 113.03) (xy 104.14 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3fc94cc-6bc4-4ac6-b991-848c7e334503)
)
(wire (pts (xy 110.49 44.45) (xy 107.95 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af942cb5-9bdb-444f-9704-90f64027e7aa)
)
(wire (pts (xy 172.72 118.11) (xy 166.37 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b10c88c7-0729-45f2-aa89-1fd6cd77fe2a)
)
(wire (pts (xy 149.86 118.11) (xy 166.37 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c11f4a8a-1a15-47ac-b691-f7b48a687ed9)
)
(wire (pts (xy 124.46 143.51) (xy 124.46 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c286b0bd-dfbd-498a-a65a-87c210ec3ff3)
)
(wire (pts (xy 100.33 104.14) (xy 104.14 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c412e419-b157-4cc4-92f6-072369714c78)
)
(wire (pts (xy 107.95 39.37) (xy 110.49 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7735840-b5e6-4717-8684-fc7b8013465c)
)
(wire (pts (xy 107.95 36.83) (xy 110.49 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c8843341-1f72-4909-9467-4af2efa0264a)
)
(wire (pts (xy 152.4 46.99) (xy 149.86 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb507f8c-b362-462c-ba47-4a6930e33bc5)
)
(wire (pts (xy 56.515 114.3) (xy 56.515 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc1773f2-35d8-4ff2-901a-e80e6e863509)
)
(wire (pts (xy 56.515 116.84) (xy 56.515 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf345941-743d-4fd8-b019-a1c49efaef53)
)
(wire (pts (xy 132.08 143.51) (xy 132.08 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d4b10ada-24d5-477c-a9b9-4379e79fe7ab)
)
(wire (pts (xy 149.86 102.87) (xy 172.72 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d97b4ea1-d1bf-44fc-935b-3f20dbcee107)
)
(wire (pts (xy 70.485 127) (xy 56.515 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ebcc232d-6b2b-441b-ad5b-bb974bac03d0)
)
(wire (pts (xy 149.86 52.07) (xy 203.2 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee4a5db2-09c9-4578-b265-8f88e87a5ce9)
)
(wire (pts (xy 127 143.51) (xy 127 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f0387842-9698-4008-b7d8-4f685a2f14b5)
)
(wire (pts (xy 152.4 36.83) (xy 149.86 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f4875be0-b04e-4cb3-ab59-2022152b0aef)
)
(text "https://github.com/maholli/sx1280-breakout\n" (at 160.02 170.18 0)
(effects (font (size 2.9972 2.9972) (thickness 0.5994) bold) (justify left bottom))
(uuid 00462601-721e-4e4c-babe-31c17764a1c2)
)
(text "TCXO\n" (at 64.77 105.41 0)
(effects (font (size 2.9972 2.9972)) (justify left bottom))
(uuid 316c88ad-7902-4b33-be56-6fd0c667f384)
)
(text "Castellations\n" (at 115.57 24.13 0)
(effects (font (size 2.9972 2.9972) (thickness 0.5994) bold) (justify left bottom))
(uuid 4ce6eae8-33f3-42be-800c-6b3ca32d4e0e)
)
(text "SX1280 Breakout" (at 194.31 182.88 0)
(effects (font (size 3.9878 3.9878) (thickness 0.7976) bold) (justify left bottom))
(uuid 51741ca9-fe96-4c16-811d-3658d502906a)
)
(text "w.FL\nMHF III\nAMMC" (at 213.995 76.835 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6b555010-650e-4f7f-87a2-a23766915e36)
)
(text " \n" (at 234.95 71.755 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 84552ef3-d5bc-47bd-a66b-3bf710f1a2b7)
)
(text "Filter\n" (at 182.88 93.98 0)
(effects (font (size 2.9972 2.9972)) (justify left bottom))
(uuid b6819d64-92fa-4533-8060-a60a9748d0c7)
)
(text "Radio\n" (at 123.19 81.28 0)
(effects (font (size 2.9972 2.9972)) (justify left bottom))
(uuid dc1c2464-38fd-4f65-be67-e09d79a59507)
)
(text "(Footprint compatible with RFM9x breakouts)" (at 104.14 27.94 0)
(effects (font (size 1.4986 1.4986) (thickness 0.2997) bold) (justify left bottom))
(uuid e0412e88-f7ed-4212-8d11-9566942b8167)
)
(text "50ohm\n2.4 GHz" (at 204.47 60.96 0)
(effects (font (size 2.0066 2.0066) (thickness 0.4013) bold) (justify left bottom))
(uuid ef389da4-89f7-4b81-b920-b045b468c50c)
)
(label "V_DCC" (at 104.14 111.76 90)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left bottom))
(uuid 1cd86763-1171-44c2-a16b-c9c756dadc28)
)
(label "V_DCC" (at 148.59 143.51 0)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left bottom))
(uuid aecb1517-cfd9-4f39-b48f-ff0a1cc71832)
)
(label "V_DCC2" (at 151.13 120.65 0)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left bottom))
(uuid cacbc072-7b0c-49d0-a9e8-55bb0efe7e51)
)
(global_label "MOSI" (shape input) (at 160.02 113.03 0) (fields_autoplaced)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left))
(uuid 12f61a08-f52a-472f-8488-45889b9f988f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "SX_CS" (shape input) (at 107.95 44.45 180) (fields_autoplaced)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify right))
(uuid 2ec5e006-5fea-4343-a699-cc113d3189e5)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "SX_BUSY" (shape input) (at 152.4 44.45 0) (fields_autoplaced)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left))
(uuid 3b9ae299-7ee4-4af8-9d15-55e2317ab8e7)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "SX_DIO1" (shape bidirectional) (at 152.4 36.83 0) (fields_autoplaced)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left))
(uuid 47745328-5a95-48ce-9359-ac5d52b11198)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "SX_DIO3" (shape bidirectional) (at 129.54 144.78 270) (fields_autoplaced)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify right))
(uuid 53d32a3e-34a7-467c-8dc9-40ad33327127)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)