summaryrefslogblamecommitdiff
path: root/analog_frontend.kicad_sch
blob: d3b1935fcb2064f6f7356b82abfb6d5e1985b3d7 (plain) (tree)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131










































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                  
(kicad_sch (version 20230121) (generator eeschema)

  (uuid 8520eda6-8ea2-46c6-b936-856b6ab0ca14)

  (paper "A4")

  (lib_symbols
    (symbol "ABM8G-25.000MHZ-4Y-T3:ABM8G-25.000MHZ-4Y-T3" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "Y" (at -5.08 6.35 0)
        (effects (font (size 1.27 1.27)) (justify left bottom))
      )
      (property "Value" "ABM8G-25.000MHZ-4Y-T3" (at -12.7 -12.7 0)
        (effects (font (size 1.27 1.27)) (justify left bottom))
      )
      (property "Footprint" "XTAL_ABM8G-25.000MHZ-4Y-T3" (at -12.7 8.89 0)
        (effects (font (size 1.27 1.27)) (justify left bottom) hide)
      )
      (property "Datasheet" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) (justify left bottom) hide)
      )
      (property "PARTREV" "08.13.15" (at 7.62 6.35 0)
        (effects (font (size 1.27 1.27)) (justify left bottom) hide)
      )
      (property "STANDARD" "Manufacturer Recommendations" (at -11.43 11.43 0)
        (effects (font (size 1.27 1.27)) (justify left bottom) hide)
      )
      (property "MAXIMUM_PACKAGE_HEIGHT" "1.0 mm" (at -1.27 6.35 0)
        (effects (font (size 1.27 1.27)) (justify left bottom) hide)
      )
      (property "MANUFACTURER" "Abracon" (at 16.51 6.35 0)
        (effects (font (size 1.27 1.27)) (justify left bottom) hide)
      )
      (property "ki_locked" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)))
      )
      (symbol "ABM8G-25.000MHZ-4Y-T3_0_0"
        (rectangle (start -5.08 -10.16) (end 5.08 5.08)
          (stroke (width 0.254) (type solid))
          (fill (type background))
        )
        (polyline
          (pts
            (xy -5.08 0)
            (xy -2.54 0)
          )
          (stroke (width 0.1524) (type solid))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.3368 2.54)
            (xy -2.3368 -2.54)
          )
          (stroke (width 0.4064) (type solid))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.397 2.54)
            (xy -1.397 -2.54)
          )
          (stroke (width 0.4064) (type solid))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.397 2.54)
            (xy 1.397 2.54)
          )
          (stroke (width 0.4064) (type solid))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.397 -2.54)
            (xy -1.397 -2.54)
          )
          (stroke (width 0.4064) (type solid))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.397 2.54)
            (xy 1.397 -2.54)
          )
          (stroke (width 0.4064) (type solid))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.3368 2.54)
            (xy 2.3368 -2.54)
          )
          (stroke (width 0.4064) (type solid))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 0)
            (xy 5.08 0)
          )
          (stroke (width 0.1524) (type solid))
          (fill (type none))
        )
        (pin passive line (at -7.62 0 0) (length 2.54)
          (name "~" (effects (font (size 1.016 1.016))))
          (number "1" (effects (font (size 1.016 1.016))))
        )
        (pin power_in line (at 7.62 -5.08 180) (length 2.54)
          (name "GND" (effects (font (size 1.016 1.016))))
          (number "2" (effects (font (size 1.016 1.016))))
        )
        (pin passive line (at 7.62 0 180) (length 2.54)
          (name "~" (effects (font (size 1.016 1.016))))
          (number "3" (effects (font (size 1.016 1.016))))
        )
        (pin power_in line (at 7.62 -7.62 180) (length 2.54)
          (name "GND__1" (effects (font (size 1.016 1.016))))
          (number "4" (effects (font (size 1.016 1.016))))
        )
      )
    )
    (symbol "ADE-1MHW+:ADE-1MHW+" (in_bom yes) (on_board yes)
      (property "Reference" "U" (at 0 7.62 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "" (at -1.27 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at -1.27 2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at -1.27 2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "ADE-1MHW+_1_1"
        (rectangle (start -5.08 6.35) (end 5.08 -6.35)
          (stroke (width 0) (type default))
          (fill (type background))
        )
        (pin power_in line (at -7.62 3.81 0) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -7.62 0 0) (length 2.54)
          (name "IF" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -7.62 -3.81 0) (length 2.54)
          (name "RF" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 7.62 -3.81 180) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 7.62 0 180) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 7.62 3.81 180) (length 2.54)
          (name "LO" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "BGA614H6327XTSA1:BGA614H6327XTSA1" (in_bom yes) (on_board yes)
      (property "Reference" "U2" (at 0.0001 -6.985 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "~" (at -1.27 1.27 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at -1.27 1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at -1.27 1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "BGA614H6327XTSA1_1_1"
        (rectangle (start -5.08 3.81) (end 5.08 -5.08)
          (stroke (width 0) (type default))
          (fill (type background))
        )
        (text "BGA614H6327XTSA1" (at 0 5.08 0)
          (effects (font (size 1.27 1.27) (color 0 132 132 1)))
        )
        (pin input line (at -7.62 1.27 0) (length 2.54)
          (name "IN" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_out line (at -7.62 -2.54 0) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 7.62 1.27 180) (length 2.54)
          (name "OUT" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_out line (at 7.62 -2.54 180) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:Antenna" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "AE" (at -1.905 1.905 0)
        (effects (font (size 1.27 1.27)) (justify right))
      )
      (property "Value" "Antenna" (at -1.905 0 0)
        (effects (font (size 1.27 1.27)) (justify right))
      )
      (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" "antenna" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Antenna" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Antenna_0_1"
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0 -3.81)
          )
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 2.54)
            (xy 0 -2.54)
            (xy -1.27 2.54)
          )
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
      )
      (symbol "Antenna_1_1"
        (pin input line (at 0 -5.08 90) (length 2.54)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (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:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (at 2.032 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R" (at 0 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at -1.778 0 90)
        (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" "R res resistor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_0_1"
        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
      )
      (symbol "R_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 "Oscillator:Si5351A-B-GT" (in_bom yes) (on_board yes)
      (property "Reference" "U" (at -8.89 11.43 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Si5351A-B-GT" (at -12.7 -12.7 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" (at 0 -20.32 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf" (at -8.89 -2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "CMOS Synth Oscillator I2C" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "I2C Programmable Any-Frequency CMOS Clock Generator, MSOP-8" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "MSOP*3x3mm*P0.5mm*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Si5351A-B-GT_0_1"
        (rectangle (start -10.16 10.16) (end 10.16 -10.16)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
      )
      (symbol "Si5351A-B-GT_1_1"
        (pin power_in line (at -2.54 12.7 270) (length 2.54)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 12.7 5.08 180) (length 2.54)
          (name "CLK0" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -12.7 7.62 0) (length 2.54)
          (name "XA" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -12.7 2.54 0) (length 2.54)
          (name "XB" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -12.7 -5.08 0) (length 2.54)
          (name "SCL" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -7.62 0) (length 2.54)
          (name "SDA" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 12.7 -5.08 180) (length 2.54)
          (name "CLK2" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 12.7 270) (length 2.54)
          (name "VDDO" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -12.7 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 12.7 0 180) (length 2.54)
          (name "CLK1" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (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" "global power" (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" (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))
          (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:VDD" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "VDD" (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" "global power" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"VDD\"" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "VDD_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "VDD_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 158.75 54.61) (diameter 0) (color 0 0 0 0)
    (uuid 11dfd9b2-8905-4bea-ac3c-9154dd6f5339)
  )
  (junction (at 222.25 52.705) (diameter 0) (color 0 0 0 0)
    (uuid 121b888b-5d55-4b0f-8dbc-f1eaad1d186f)
  )
  (junction (at 133.985 52.705) (diameter 0) (color 0 0 0 0)
    (uuid 793203d3-dba0-421a-b185-7475db50dea7)
  )
  (junction (at 207.645 52.705) (diameter 0) (color 0 0 0 0)
    (uuid 8a9a54d1-7d9f-4a87-bb2e-a448471c0a7e)
  )
  (junction (at 192.405 41.91) (diameter 0) (color 0 0 0 0)
    (uuid a61930c1-f657-4fee-8b9d-c805304189fd)
  )
  (junction (at 101.6 80.01) (diameter 0) (color 0 0 0 0)
    (uuid b620fbfb-1f08-44e2-af91-ec845545f74f)
  )

  (wire (pts (xy 131.445 52.705) (xy 133.985 52.705))
    (stroke (width 0) (type default))
    (uuid 03647762-5c7d-43ef-bff3-5efe7c88cf7f)
  )
  (wire (pts (xy 107.95 76.835) (xy 114.935 76.835))
    (stroke (width 0) (type default))
    (uuid 168eecf8-c089-47b4-a7af-8138d5d692f9)
  )
  (wire (pts (xy 217.805 52.705) (xy 222.25 52.705))
    (stroke (width 0) (type default))
    (uuid 1830a6a8-1f39-41eb-b398-bce5050c09e4)
  )
  (wire (pts (xy 200.025 41.91) (xy 192.405 41.91))
    (stroke (width 0) (type default))
    (uuid 38122052-15ba-4cd3-bfa8-e8fb61a10a02)
  )
  (wire (pts (xy 102.87 76.835) (xy 102.87 80.01))
    (stroke (width 0) (type default))
    (uuid 39e7e8bf-e52d-4267-b02c-bf431de0fbd9)
  )
  (wire (pts (xy 158.75 52.705) (xy 158.75 54.61))
    (stroke (width 0) (type default))
    (uuid 3bd91e54-4e78-440b-9090-35f33c9cbac7)
  )
  (wire (pts (xy 146.685 64.135) (xy 158.75 64.135))
    (stroke (width 0) (type default))
    (uuid 4435d2cd-2603-4a5d-abd8-6cbb1a76ec85)
  )
  (wire (pts (xy 156.845 54.61) (xy 158.75 54.61))
    (stroke (width 0) (type default))
    (uuid 5053e98d-04fe-42a9-bffb-62e070ff7d50)
  )
  (wire (pts (xy 222.25 52.705) (xy 222.25 54.61))
    (stroke (width 0) (type default))
    (uuid 53af3022-f375-4459-84a1-e4c7d31dcf88)
  )
  (wire (pts (xy 210.185 52.705) (xy 207.645 52.705))
    (stroke (width 0) (type default))
    (uuid 598e844c-3522-4fcd-a357-6fb29a3f8ecf)
  )
  (wire (pts (xy 136.525 52.705) (xy 133.985 52.705))
    (stroke (width 0) (type default))
    (uuid 5b047fd4-1be3-4642-886a-8e23402a14f1)
  )
  (wire (pts (xy 107.95 61.595) (xy 121.285 61.595))
    (stroke (width 0) (type default))
    (uuid 5d6db336-32ac-4d78-a50a-1371fdfffe1c)
  )
  (wire (pts (xy 114.935 66.675) (xy 121.285 66.675))
    (stroke (width 0) (type default))
    (uuid 5dd96334-db48-415b-b822-38f1edbfe3df)
  )
  (wire (pts (xy 200.025 52.705) (xy 207.645 52.705))
    (stroke (width 0) (type default))
    (uuid 6155129b-1a3b-41a6-800a-fb7b560cbdcc)
  )
  (wire (pts (xy 136.525 56.515) (xy 136.525 52.705))
    (stroke (width 0) (type default))
    (uuid 67ff2edf-4906-46d4-8548-e21a911dd9cd)
  )
  (wire (pts (xy 222.25 52.705) (xy 226.06 52.705))
    (stroke (width 0) (type default))
    (uuid 69bde4e2-cc5c-4917-a457-a6c37a170804)
  )
  (wire (pts (xy 184.785 41.91) (xy 192.405 41.91))
    (stroke (width 0) (type default))
    (uuid 6e139a46-6edf-401d-ac8e-f80377ad76b3)
  )
  (wire (pts (xy 177.165 56.515) (xy 177.165 79.375))
    (stroke (width 0) (type default))
    (uuid 76b202ff-f571-418f-afd2-bf1280e1d4ea)
  )
  (wire (pts (xy 184.785 41.91) (xy 184.785 48.895))
    (stroke (width 0) (type default))
    (uuid 85ee9cd9-cfcc-48c1-badb-e6b78b56811d)
  )
  (wire (pts (xy 173.99 52.705) (xy 184.785 52.705))
    (stroke (width 0) (type default))
    (uuid 87548a6d-97d3-425f-8e23-9b42a1910137)
  )
  (wire (pts (xy 131.445 56.515) (xy 131.445 52.705))
    (stroke (width 0) (type default))
    (uuid 96617f72-b4cb-467c-a7f1-d7b3912d2ab1)
  )
  (wire (pts (xy 102.87 80.01) (xy 101.6 80.01))
    (stroke (width 0) (type default))
    (uuid a5795dc4-9a2d-41b8-9461-ba4186b3fd99)
  )
  (wire (pts (xy 233.68 52.705) (xy 240.03 52.705))
    (stroke (width 0) (type default))
    (uuid a68e2f71-04b8-4ca3-8cd7-e27c9b8a9a05)
  )
  (wire (pts (xy 158.75 54.61) (xy 158.75 56.515))
    (stroke (width 0) (type default))
    (uuid c27589da-5601-465f-8619-198e90a35e3e)
  )
  (wire (pts (xy 207.645 52.705) (xy 207.645 54.61))
    (stroke (width 0) (type default))
    (uuid c482c903-0292-4727-a0a7-0f984a936600)
  )
  (wire (pts (xy 100.33 80.01) (xy 101.6 80.01))
    (stroke (width 0) (type default))
    (uuid ca24fae0-7999-4c1c-92c7-69142dfb9f36)
  )
  (wire (pts (xy 200.025 48.895) (xy 200.025 41.91))
    (stroke (width 0) (type default))
    (uuid d1feef96-c8df-49c3-9724-61ef4ca60d54)
  )
  (wire (pts (xy 100.33 76.835) (xy 100.33 80.01))
    (stroke (width 0) (type default))
    (uuid deb8f504-ecdc-42f4-8425-129864e575b2)
  )
  (wire (pts (xy 158.75 64.135) (xy 158.75 60.325))
    (stroke (width 0) (type default))
    (uuid ea4840c9-60db-4cd3-84e7-f3550f531bac)
  )
  (wire (pts (xy 173.99 56.515) (xy 177.165 56.515))
    (stroke (width 0) (type default))
    (uuid ef98ab47-ba0b-4bb6-ac6d-6164f430e79c)
  )
  (wire (pts (xy 114.935 76.835) (xy 114.935 66.675))
    (stroke (width 0) (type default))
    (uuid f0f85dc6-4a94-41a4-b91f-e6617274c1ba)
  )

  (symbol (lib_id "power:GND") (at 222.25 62.23 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 078187d0-6b8e-41b0-888e-0da1e5ea040b)
    (property "Reference" "#PWR06" (at 222.25 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 222.25 67.31 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 222.25 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 222.25 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e3003d8f-97aa-4b50-a925-2756a1d42344))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR06") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 207.645 58.42 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 139bd585-31c8-4bf5-971f-42ebdcf3ffaa)
    (property "Reference" "R1" (at 209.55 57.15 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "R" (at 209.55 59.69 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 205.867 58.42 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 207.645 58.42 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ed3ea645-bc41-4b2b-a7d2-14f58a496a0d))
    (pin "2" (uuid fa119143-c7b3-4dcf-83d2-124cd414e2d7))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "R1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:Antenna") (at 240.03 47.625 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 1bc82cd2-58b4-44f7-9b7d-4a881489da2d)
    (property "Reference" "AE1" (at 242.57 46.99 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Antenna" (at 242.57 49.53 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 240.03 47.625 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 240.03 47.625 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 31940add-e250-45b7-b21a-e1dde7b27214))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "AE1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "ABM8G-25.000MHZ-4Y-T3:ABM8G-25.000MHZ-4Y-T3") (at 107.95 69.215 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 2213773d-465b-4190-8fee-9d17e10c76d4)
    (property "Reference" "Y1" (at 106.68 55.245 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "ABM8G-25.000MHZ-4Y-T3" (at 93.98 57.785 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "XTAL_ABM8G-25.000MHZ-4Y-T3" (at 116.84 56.515 0)
      (effects (font (size 1.27 1.27)) (justify left bottom) hide)
    )
    (property "Datasheet" "" (at 107.95 69.215 0)
      (effects (font (size 1.27 1.27)) (justify left bottom) hide)
    )
    (property "PARTREV" "08.13.15" (at 114.3 76.835 0)
      (effects (font (size 1.27 1.27)) (justify left bottom) hide)
    )
    (property "STANDARD" "Manufacturer Recommendations" (at 119.38 57.785 0)
      (effects (font (size 1.27 1.27)) (justify left bottom) hide)
    )
    (property "MAXIMUM_PACKAGE_HEIGHT" "1.0 mm" (at 114.3 67.945 0)
      (effects (font (size 1.27 1.27)) (justify left bottom) hide)
    )
    (property "MANUFACTURER" "Abracon" (at 114.3 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left bottom) hide)
    )
    (pin "1" (uuid fc6c559c-7a18-4010-8ab4-49f137767545))
    (pin "2" (uuid 01d2b3d4-e3d0-4f5c-97d3-a139510ae5f8))
    (pin "3" (uuid f62b3a87-645f-409c-905e-d05a50751f6b))
    (pin "4" (uuid f92b797e-8d8e-4c50-9976-30f4581223c5))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "Y1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "ADE-1MHW+:ADE-1MHW+") (at 166.37 56.515 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 34d99c43-947e-46f8-932b-bb73478c35b0)
    (property "Reference" "U3" (at 166.37 47.625 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "ADE-1MHW+" (at 166.37 64.135 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 167.64 59.055 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 167.64 59.055 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 749725dc-9ecb-4c08-ba75-62a44cc573a6))
    (pin "2" (uuid 2140fe23-679c-494d-b567-abc75eeb9476))
    (pin "3" (uuid 1fdc5c01-8f04-4c30-a14c-c7b6b4fd51b7))
    (pin "4" (uuid fbc2171c-6110-4b57-a07b-43a93f3c0668))
    (pin "5" (uuid 86120068-f15f-4712-9faf-af4001bc7dad))
    (pin "6" (uuid b41060e8-59e0-4b37-9ca2-1de7c4df53f2))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "U3") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 133.985 81.915 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 394c1819-82e7-497c-a051-ee221f1d0de7)
    (property "Reference" "#PWR02" (at 133.985 88.265 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 133.985 86.36 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 133.985 81.915 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 133.985 81.915 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6a674234-64a0-4973-803a-6830e9bf656f))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR02") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 229.87 52.705 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 4191c31e-34ba-4419-97a4-1b200281245e)
    (property "Reference" "R2" (at 229.87 46.99 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "R" (at 229.87 49.53 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 229.87 54.483 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 229.87 52.705 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b364fa2c-d7fe-408c-92c1-7d1a52adf72a))
    (pin "2" (uuid 2b96b563-0ae2-41b4-9509-e7bf15677b7c))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "R2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 156.845 54.61 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 479878a7-7f44-4ac2-b694-48f19afef858)
    (property "Reference" "#PWR07" (at 150.495 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 153.035 54.61 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 156.845 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 156.845 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1f0ac91c-3b57-4faf-9b84-5bcd7a3c517b))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR07") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 222.25 58.42 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 4c3dc937-aa90-4faf-8dab-8c07e1d5a3a0)
    (property "Reference" "C2" (at 226.06 57.15 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "C" (at 226.06 59.69 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (at 223.2152 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 222.25 58.42 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8fdbe49c-fbbf-44f2-a8a9-f91107edb3be))
    (pin "2" (uuid a2345826-a743-4a41-bd02-003afeb11ebb))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 213.995 52.705 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid a26a59e0-e3e0-4294-8f82-b13c79f85193)
    (property "Reference" "C1" (at 213.995 45.72 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "C" (at 213.995 48.26 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 217.805 51.7398 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 213.995 52.705 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7f605236-0b5c-41f5-ae55-71a64befd884))
    (pin "2" (uuid b9b64f21-f3db-40ec-87d3-d5c1c910f5db))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "C1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:VDD") (at 133.985 52.705 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid bc3a9632-c03a-471a-b7b6-9c1c1084a2ec)
    (property "Reference" "#PWR03" (at 133.985 56.515 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VDD" (at 133.985 48.26 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 133.985 52.705 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 133.985 52.705 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7dbe16e4-1143-4fe4-a42c-0576217baa59))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR03") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Oscillator:Si5351A-B-GT") (at 133.985 69.215 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid cdd67133-58c0-47e3-8b3c-d64337a25997)
    (property "Reference" "U1" (at 136.1791 81.915 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Si5351A-B-GT" (at 136.1791 84.455 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" (at 133.985 89.535 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf" (at 125.095 71.755 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid aa544640-38e1-4951-8572-23467d5dedd8))
    (pin "10" (uuid 4260dfcd-aa0a-4a61-a035-250f3d6ee307))
    (pin "2" (uuid 771cae26-098e-4d19-a451-8943e840a24c))
    (pin "3" (uuid f66d862a-e69d-4e52-9dc8-eeac92eb544e))
    (pin "4" (uuid 5e96a505-3e7a-4607-835e-384b575c5266))
    (pin "5" (uuid b0fde914-d2ec-4f63-966d-96ddf5ce0b9a))
    (pin "6" (uuid dfbcc42f-876f-4724-8a48-cd1000d5fa08))
    (pin "7" (uuid ed78be6b-4fa9-495c-9192-84222e0f38d3))
    (pin "8" (uuid 2192a168-ea5d-4050-ad4c-2899883997a7))
    (pin "9" (uuid 89241f92-ec6f-40b3-b86b-490d28e0c416))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "U1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "BGA614H6327XTSA1:BGA614H6327XTSA1") (at 192.405 51.435 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid d1077385-ac97-4559-9a95-ca0a7919615d)
    (property "Reference" "U2" (at 192.4049 44.45 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "~" (at 193.675 52.705 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 193.675 52.705 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 193.675 52.705 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 32ea3736-edb7-4274-92df-b35c7de3887c))
    (pin "2" (uuid 0ae960fa-2bc9-4e62-afd6-7f3e806d7ba0))
    (pin "3" (uuid 630c0bb3-e76d-4ecb-acd3-1df2daf7a6c9))
    (pin "4" (uuid 231c31e2-b1d9-4d47-879e-495dfade8e82))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "U2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 207.645 62.23 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid d83b5b8e-d49a-4968-99ec-97c74ab749b4)
    (property "Reference" "#PWR05" (at 207.645 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 207.645 67.31 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 207.645 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 207.645 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8ef3d414-eb81-4da5-98b1-60150c570d5c))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR05") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 192.405 41.91 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid dd16b448-9510-4df9-a114-6031a2497451)
    (property "Reference" "#PWR04" (at 192.405 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 192.405 37.465 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 192.405 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 192.405 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0da7c280-eaa6-4562-bbc3-ee00824342ff))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR04") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 101.6 80.01 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid fc3be643-a5ab-4bae-a728-42a60f7a292a)
    (property "Reference" "#PWR01" (at 101.6 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 101.6 85.09 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 101.6 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 101.6 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b1830346-f0a7-4953-a609-69dc28f34180))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR01") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 173.99 60.325 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid fcf81651-4473-41f3-890a-4bff7eb1b739)
    (property "Reference" "#PWR08" (at 180.34 60.325 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 177.8 60.325 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (at 173.99 60.325 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 173.99 60.325 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0491406d-2456-4d9f-8eaa-ca14e5c014bf))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14"
          (reference "#PWR08") (unit 1)
        )
      )
    )
  )

  (sheet (at 170.18 82.55) (size 24.765 19.05) (fields_autoplaced)
    (stroke (width 0.1524) (type solid))
    (fill (color 0 0 0 0.0000))
    (uuid ff4ef286-bc40-4d3c-9dc6-366537f626d8)
    (property "Sheetname" "STM32H747BIT6" (at 170.18 81.8384 0)
      (effects (font (size 1.27 1.27)) (justify left bottom))
    )
    (property "Sheetfile" "STM32H747BIT6.kicad_sch" (at 170.18 102.1846 0)
      (effects (font (size 1.27 1.27)) (justify left top))
    )
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14" (page "2"))
      )
    )
  )

  (sheet_instances
    (path "/" (page "1"))
  )
)