summaryrefslogtreecommitdiff
path: root/local_oscillator.kicad_sch
blob: 584e430871adb6da877ad82fb71c08ef5b637dde (plain) (blame)
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
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
(kicad_sch (version 20230121) (generator eeschema)

  (uuid 8285df5d-6ed3-490e-93e3-6727ca83968c)

  (paper "A4")

  (lib_symbols
    (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C" (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (at 0.9652 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.508) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default))
          (fill (type none))
        )
      )
      (symbol "C_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device: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 "Interface:AD9851" (in_bom yes) (on_board yes)
      (property "Reference" "U" (at -12.7 19.05 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "AD9851" (at 12.7 19.05 0)
        (effects (font (size 1.27 1.27)) (justify right))
      )
      (property "Footprint" "Package_SO:SSOP-28_5.3x10.2mm_P0.65mm" (at 0 -30.48 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/AD9851.pdf" (at -7.62 -25.4 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "DDS direct digital synthesizer" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "CMOS, 180 MHz, DDS/DAC Synthesizer, SSOP-28" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "SSOP*5.3x10.2mm*P0.65mm*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "AD9851_0_1"
        (rectangle (start -12.7 17.78) (end 12.7 -20.32)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
      )
      (symbol "AD9851_1_1"
        (pin input line (at -15.24 7.62 0) (length 2.54)
          (name "D3" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 -22.86 90) (length 2.54)
          (name "AGND" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 20.32 270) (length 2.54)
          (name "AVDD" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 15.24 -15.24 180) (length 2.54)
          (name "RSET" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 15.24 -10.16 180) (length 2.54)
          (name "VOUTN" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 15.24 -7.62 180) (length 2.54)
          (name "VOUTP" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 15.24 -2.54 180) (length 2.54)
          (name "VINN" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 15.24 0 180) (length 2.54)
          (name "VINP" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 15.24 -17.78 180) (length 2.54)
          (name "DACBP" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -2.54 20.32 270) (length 2.54) hide
          (name "AVDD" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -2.54 -22.86 90) (length 2.54) hide
          (name "AGND" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 10.16 0) (length 2.54)
          (name "D2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 15.24 7.62 180) (length 2.54)
          (name "IOUTB" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 15.24 15.24 180) (length 2.54)
          (name "IOUT" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -12.7 0) (length 2.54)
          (name "RESET" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 20.32 270) (length 2.54)
          (name "DVDD" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -22.86 90) (length 2.54)
          (name "DGND" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -2.54 0) (length 2.54)
          (name "D7" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 0 0) (length 2.54)
          (name "D6" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 2.54 0) (length 2.54)
          (name "D5" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 5.08 0) (length 2.54)
          (name "D4" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 12.7 0) (length 2.54)
          (name "D1" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 15.24 0) (length 2.54)
          (name "D0" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 -22.86 90) (length 2.54)
          (name "PGND" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 20.32 270) (length 2.54)
          (name "PVCC" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -7.62 0) (length 2.54)
          (name "W_CLK" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -10.16 0) (length 2.54)
          (name "FQ_UD" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -17.78 0) (length 2.54)
          (name "REFCLK" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "SCLF-65+:SCLF-65+" (in_bom yes) (on_board yes)
      (property "Reference" "U" (at 0 8.255 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "SCLF-65+" (at 0 6.35 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 6.985 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 0 6.985 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "SCLF-65+_1_1"
        (rectangle (start -7.62 5.08) (end 7.62 -5.08)
          (stroke (width 0) (type default))
          (fill (type background))
        )
        (pin input line (at -10.16 2.54 0) (length 2.54)
          (name "RF_IN" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -7.62 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -7.62 90) (length 2.54) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -7.62 90) (length 2.54) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -7.62 90) (length 2.54) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -7.62 90) (length 2.54) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -7.62 90) (length 2.54) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 10.16 2.54 180) (length 2.54)
          (name "RF_OUT" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+5V" (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" "+5V" (at 0 3.556 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 \"+5V\"" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+5V_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 "+5V_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+5V" (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" (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))))
        )
      )
    )
  )

  (junction (at 136.525 114.3) (diameter 0) (color 0 0 0 0)
    (uuid 7d52b761-aad7-48c2-a8cb-62c212ce5c31)
  )
  (junction (at 153.67 74.295) (diameter 0) (color 0 0 0 0)
    (uuid 83a91bd9-4427-428a-8282-f64c74d42713)
  )
  (junction (at 136.525 64.77) (diameter 0) (color 0 0 0 0)
    (uuid 85db8896-a1a1-4b7b-bb39-f7e54b0c8e4b)
  )
  (junction (at 136.525 40.005) (diameter 0) (color 0 0 0 0)
    (uuid a759de90-05ae-4f4c-a509-b92d30a6072a)
  )
  (junction (at 125.095 32.385) (diameter 0) (color 0 0 0 0)
    (uuid a9acf408-a6f2-4e19-a4a3-1807d0dbfc05)
  )
  (junction (at 136.525 32.385) (diameter 0) (color 0 0 0 0)
    (uuid c8fd2fd9-c576-4ca7-8a22-d41d3d1dcede)
  )

  (no_connect (at 151.765 97.155) (uuid 43c8ff3e-8f31-4283-9937-6d9f5e3bbd6e))
  (no_connect (at 151.765 99.695) (uuid 485583d9-e788-4423-918d-d9ca1888bee2))
  (no_connect (at 151.765 107.315) (uuid df1c1bc0-a638-414b-ae04-9f6e74412d55))

  (bus_entry (at 111.125 89.535) (size 2.54 2.54)
    (stroke (width 0) (type default))
    (uuid 06d61ef7-140b-4f85-a970-2a8b7aae0d1f)
  )
  (bus_entry (at 111.125 74.295) (size 2.54 2.54)
    (stroke (width 0) (type default))
    (uuid 2505f51b-2f73-4916-aaab-516dfaf2b191)
  )
  (bus_entry (at 111.125 76.835) (size 2.54 2.54)
    (stroke (width 0) (type default))
    (uuid 7256bc01-20c4-4671-88a8-42d0be8575cf)
  )
  (bus_entry (at 111.125 79.375) (size 2.54 2.54)
    (stroke (width 0) (type default))
    (uuid 8231e021-e7b6-46ab-9b8d-89456f158d2b)
  )
  (bus_entry (at 111.125 86.995) (size 2.54 2.54)
    (stroke (width 0) (type default))
    (uuid 9695d4c2-72e9-4608-9330-81669d757d72)
  )
  (bus_entry (at 111.125 71.755) (size 2.54 2.54)
    (stroke (width 0) (type default))
    (uuid b64a1a8b-c1fa-4d7d-9697-736bedcda6fe)
  )
  (bus_entry (at 111.125 81.915) (size 2.54 2.54)
    (stroke (width 0) (type default))
    (uuid bba68a1d-c08f-4307-bfbd-3b8437f5fa22)
  )
  (bus_entry (at 111.125 84.455) (size 2.54 2.54)
    (stroke (width 0) (type default))
    (uuid d7b6e177-3bcb-4d61-a7cc-926442fa298a)
  )

  (wire (pts (xy 113.665 79.375) (xy 121.285 79.375))
    (stroke (width 0) (type default))
    (uuid 0c761d2a-c4d2-4883-883f-8a3b0873ccb1)
  )
  (bus (pts (xy 111.125 71.755) (xy 111.125 74.295))
    (stroke (width 0) (type default))
    (uuid 0ea643cc-dd82-4e6c-9e6f-b5de62bda156)
  )

  (wire (pts (xy 139.065 114.3) (xy 136.525 114.3))
    (stroke (width 0) (type default))
    (uuid 17fe6837-0c8f-4dad-98e8-85adc573f3f1)
  )
  (bus (pts (xy 111.125 74.295) (xy 111.125 76.835))
    (stroke (width 0) (type default))
    (uuid 1a67b862-8df5-4fb1-bae9-b1bf06bda710)
  )
  (bus (pts (xy 111.125 79.375) (xy 111.125 81.915))
    (stroke (width 0) (type default))
    (uuid 1e6f9667-37f6-43a1-bda0-59379c5207fb)
  )

  (wire (pts (xy 125.095 40.005) (xy 136.525 40.005))
    (stroke (width 0) (type default))
    (uuid 1e77a4ae-85cf-4a5b-806a-b754e922c791)
  )
  (wire (pts (xy 136.525 40.005) (xy 147.955 40.005))
    (stroke (width 0) (type default))
    (uuid 245d6c98-0e26-40f7-b2e4-2eb0f48809fd)
  )
  (wire (pts (xy 133.985 114.3) (xy 136.525 114.3))
    (stroke (width 0) (type default))
    (uuid 248e9157-de3f-459c-8b98-394212e7a47a)
  )
  (wire (pts (xy 139.065 69.215) (xy 139.065 64.77))
    (stroke (width 0) (type default))
    (uuid 24e43391-fe80-4512-bde6-50e7a2399f18)
  )
  (bus (pts (xy 111.125 68.58) (xy 111.125 71.755))
    (stroke (width 0) (type default))
    (uuid 34bde460-b9b0-493d-b1d8-64830106445e)
  )

  (wire (pts (xy 136.525 40.005) (xy 136.525 41.91))
    (stroke (width 0) (type default))
    (uuid 3ccedd08-dafe-4af6-88b5-ebfd0ab126fe)
  )
  (wire (pts (xy 202.565 74.295) (xy 210.82 74.295))
    (stroke (width 0) (type default))
    (uuid 446233ba-fb43-447e-849a-c040b26e35b0)
  )
  (wire (pts (xy 113.665 74.295) (xy 121.285 74.295))
    (stroke (width 0) (type default))
    (uuid 4f5a66e8-782e-4d93-8533-c85e5fce2029)
  )
  (wire (pts (xy 151.765 104.775) (xy 159.385 104.775))
    (stroke (width 0) (type default))
    (uuid 51de7e25-a876-4523-a924-8cd3dacb7b3e)
  )
  (wire (pts (xy 133.985 69.215) (xy 133.985 64.77))
    (stroke (width 0) (type default))
    (uuid 583279b6-8411-4645-9246-3ad083dc52aa)
  )
  (wire (pts (xy 151.765 89.535) (xy 169.545 89.535))
    (stroke (width 0) (type default))
    (uuid 5faaff3d-23eb-4d16-90d3-852082b1510b)
  )
  (wire (pts (xy 136.525 64.77) (xy 139.065 64.77))
    (stroke (width 0) (type default))
    (uuid 6be171ec-a23a-45a0-aa0c-9bd8190cd959)
  )
  (wire (pts (xy 136.525 112.395) (xy 136.525 114.3))
    (stroke (width 0) (type default))
    (uuid 7470a784-8da5-48cb-b804-361b324ecff5)
  )
  (bus (pts (xy 111.125 86.995) (xy 111.125 89.535))
    (stroke (width 0) (type default))
    (uuid 7704928b-cdef-4619-ba8c-bb30bd2a3a95)
  )

  (wire (pts (xy 136.525 62.23) (xy 136.525 64.77))
    (stroke (width 0) (type default))
    (uuid 7c81de6a-f39e-4dcd-bdb1-45129b8f40ff)
  )
  (wire (pts (xy 125.095 32.385) (xy 136.525 32.385))
    (stroke (width 0) (type default))
    (uuid 88dd1c7a-e352-4d58-bfff-7dfa2a3b45e0)
  )
  (wire (pts (xy 151.765 92.075) (xy 161.29 92.075))
    (stroke (width 0) (type default))
    (uuid 98306df1-f694-4a7e-bbfa-d2fb48e3cb3a)
  )
  (wire (pts (xy 139.065 112.395) (xy 139.065 114.3))
    (stroke (width 0) (type default))
    (uuid a5a02693-8776-4c1d-994b-282fbc7411f3)
  )
  (wire (pts (xy 151.765 81.915) (xy 160.655 81.915))
    (stroke (width 0) (type default))
    (uuid a93235aa-5e3a-4249-b00d-5efe811967ce)
  )
  (wire (pts (xy 136.525 64.77) (xy 136.525 69.215))
    (stroke (width 0) (type default))
    (uuid ab34dee4-fab1-44f4-9f54-2579198f8cfb)
  )
  (wire (pts (xy 113.665 81.915) (xy 121.285 81.915))
    (stroke (width 0) (type default))
    (uuid b22ac587-e19c-44bd-a22b-1b2e889e5483)
  )
  (wire (pts (xy 113.665 76.835) (xy 121.285 76.835))
    (stroke (width 0) (type default))
    (uuid b9b56d36-2bd7-4939-b73e-16136ace9209)
  )
  (bus (pts (xy 111.125 76.835) (xy 111.125 79.375))
    (stroke (width 0) (type default))
    (uuid c2ffb4f1-ddfe-4c11-8f42-f0d5dbe607ae)
  )

  (wire (pts (xy 125.095 29.21) (xy 125.095 32.385))
    (stroke (width 0) (type default))
    (uuid c3403ddb-0728-4ed0-be34-85a66a18cc00)
  )
  (wire (pts (xy 113.665 84.455) (xy 121.285 84.455))
    (stroke (width 0) (type default))
    (uuid c371cace-ae30-4e18-ba73-8c291b1bbc83)
  )
  (wire (pts (xy 153.67 74.295) (xy 174.625 74.295))
    (stroke (width 0) (type default))
    (uuid c4180461-9138-402c-b01f-6468853adaba)
  )
  (wire (pts (xy 113.665 92.075) (xy 121.285 92.075))
    (stroke (width 0) (type default))
    (uuid c55e4e46-2027-44ab-a8c9-e912b4e36c0a)
  )
  (wire (pts (xy 133.985 112.395) (xy 133.985 114.3))
    (stroke (width 0) (type default))
    (uuid c78f7e37-4f29-44d6-9248-f23e690e462c)
  )
  (wire (pts (xy 151.765 74.295) (xy 153.67 74.295))
    (stroke (width 0) (type default))
    (uuid cd26d463-6646-469e-874f-ec37e3a771a8)
  )
  (wire (pts (xy 136.525 32.385) (xy 147.955 32.385))
    (stroke (width 0) (type default))
    (uuid d8335be5-fdd7-4ca9-8fe3-3e3aad7c5384)
  )
  (wire (pts (xy 113.665 89.535) (xy 121.285 89.535))
    (stroke (width 0) (type default))
    (uuid d8f13603-42e5-4e93-b892-6bd05d3e1dd9)
  )
  (bus (pts (xy 111.125 84.455) (xy 111.125 86.995))
    (stroke (width 0) (type default))
    (uuid e5adf64d-9c54-4ae5-8761-aabe08f54f98)
  )

  (wire (pts (xy 136.525 64.77) (xy 133.985 64.77))
    (stroke (width 0) (type default))
    (uuid eb6561a8-cf12-4304-ae05-71a2e8806397)
  )
  (wire (pts (xy 113.665 86.995) (xy 121.285 86.995))
    (stroke (width 0) (type default))
    (uuid ee444beb-24db-45cd-99d1-bd8796c9b3fe)
  )
  (bus (pts (xy 111.125 81.915) (xy 111.125 84.455))
    (stroke (width 0) (type default))
    (uuid f76578e9-826f-413c-96fd-b2a7799526b2)
  )

  (label "D10" (at 114.935 74.295 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 1e52f596-f8f3-42c9-8be8-f390ab4d012b)
  )
  (label "D15" (at 114.935 86.995 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 21ac32bb-50b7-4ecf-a5d8-ef2b7552c0fe)
  )
  (label "D13" (at 114.935 81.915 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 635b326c-12da-4ed9-b4ec-f093e3b5b006)
  )
  (label "D14" (at 114.935 84.455 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 99c90a0e-3eb2-41aa-80b5-83b7ef42c747)
  )
  (label "D12" (at 114.935 79.375 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid be14978e-0093-4f2e-b136-c61789a675cb)
  )
  (label "D16" (at 114.935 89.535 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid cc515a6a-3b9d-4a0b-a365-6ed788fac6ee)
  )
  (label "D11" (at 114.935 76.835 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid d642aac1-e2e3-4be3-a0e3-26e2c4c89a22)
  )
  (label "D17" (at 114.935 92.075 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid e1050bca-7929-4d19-a5d4-c133dbb1737e)
  )

  (hierarchical_label "RESET" (shape input) (at 121.285 102.235 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 1741ac57-58e5-456b-9f3e-170a1f4ca142)
  )
  (hierarchical_label "FQ_UD" (shape input) (at 121.285 99.695 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 1785818b-04d8-49f8-9354-534ec5e652ed)
  )
  (hierarchical_label "D1[0..7]" (shape input) (at 111.125 68.58 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 262ea429-6b7a-447f-890c-7094813266ae)
  )
  (hierarchical_label "CLK_IN" (shape input) (at 121.285 107.315 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 4a4d231b-bbb6-4208-9120-491d2812bc7d)
  )
  (hierarchical_label "W_CLK" (shape input) (at 121.285 97.155 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 72fef94a-65b1-4bb1-baf6-cdecb16cc306)
  )
  (hierarchical_label "LO_OUT" (shape output) (at 210.82 74.295 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 74d7ff0e-7e97-4199-994a-f5683db9eba3)
  )

  (symbol (lib_id "Interface:AD9851") (at 136.525 89.535 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 0525de9a-248b-4e9b-b3f7-dc0de9b2bffd)
    (property "Reference" "U12" (at 141.2591 67.31 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "AD9851" (at 141.2591 69.85 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_SO:SSOP-28_5.3x10.2mm_P0.65mm" (at 136.525 120.015 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/AD9851.pdf" (at 128.905 114.935 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7b0cb763-f743-48e4-bd77-8f888a751580))
    (pin "10" (uuid da438c61-12ae-42f1-9390-4b057c2ceb4d))
    (pin "11" (uuid 982ac679-ff4a-424c-ba74-64310721aa7b))
    (pin "12" (uuid f894e7e5-5e4f-4905-a3ed-236897cde11e))
    (pin "13" (uuid afe261ba-4b89-4a73-9e3e-c4420b6ef3e4))
    (pin "14" (uuid 01a0dd92-dbef-4395-be36-42397f18cae3))
    (pin "15" (uuid 099802fa-d8d5-42ce-8f77-486e5e28ed6d))
    (pin "16" (uuid 0060f3fa-422c-4383-afd3-3e3aa0f194b1))
    (pin "17" (uuid dc39cdc4-122f-4c75-93c9-4e97a413f1f3))
    (pin "18" (uuid f8556cb6-3cb2-4893-8e6c-b91176ca4da0))
    (pin "19" (uuid 49f9850c-abfb-4316-a5a4-18b51ebeb568))
    (pin "2" (uuid 8dc895cc-eb3c-4c73-8e91-c14613490a1e))
    (pin "20" (uuid 80e9dbc9-98f1-4fc2-8d89-952c4d610992))
    (pin "21" (uuid b6b8a722-75e0-4c2e-a10d-ba0537a27177))
    (pin "22" (uuid 41391bc0-d03c-4236-becb-32e30547c28b))
    (pin "23" (uuid dcf0324b-5a54-41c0-a47a-339462104ca1))
    (pin "24" (uuid 74182d85-fbd9-4fa7-b903-0c58ea388ad2))
    (pin "25" (uuid e3f27999-1569-4000-bcbe-e66fd7839ce3))
    (pin "26" (uuid 6577c7d2-3f13-4bc9-87ed-863cf689f3ba))
    (pin "27" (uuid 6275480d-2fd1-4867-bb89-52e0305a5398))
    (pin "28" (uuid c491c6cd-2624-4eb5-906d-1d744f3490ce))
    (pin "3" (uuid a368b00a-5d06-40d4-a958-158b18232c4b))
    (pin "4" (uuid 1c1d518a-0723-42d3-9aef-01165d73f105))
    (pin "5" (uuid dc82f9e6-f1a7-45c5-8dad-67de4b82b750))
    (pin "6" (uuid fee49df9-d2d1-44e6-bc33-3460e2f81e4a))
    (pin "7" (uuid f20c7aaa-14a9-4e3f-952f-bbcc7939f19f))
    (pin "8" (uuid 6f63f8ae-6b30-4cce-b432-234a834547c4))
    (pin "9" (uuid 7bbd3c0b-dbb5-48aa-bcf4-f5f382b395ef))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5"
          (reference "U12") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "U14") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "U17") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 161.29 95.885 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 427b9693-7305-490d-ad6c-da57f2d5bfff)
    (property "Reference" "R17" (at 163.83 94.615 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "1K" (at 163.83 97.155 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 159.512 95.885 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 161.29 95.885 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 546a9fed-d9f9-4c44-9490-372cba56fec1))
    (pin "2" (uuid de45c9e2-8113-48ec-8bd0-be8d655f1c83))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "R17") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "R22") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 136.525 36.195 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 44e13140-f842-4d2e-9780-8f0d52842c36)
    (property "Reference" "C48" (at 139.7 34.925 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "0.1uF" (at 139.7 37.465 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 135.5598 32.385 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 136.525 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cbe6416a-e250-47a1-b207-c960cba70a76))
    (pin "2" (uuid a8b5bdfb-12b9-4335-9f13-2bb4e79c4adb))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "C48") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "C54") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+5V") (at 136.525 62.23 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 4933ad29-438d-4c24-95b6-e1d152ffedd7)
    (property "Reference" "#PWR084" (at 136.525 66.04 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (at 136.525 57.15 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 136.525 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 136.525 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6825b8b9-c1d2-4db1-a0c9-ed18089450f0))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "#PWR084") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "#PWR099") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 159.385 108.585 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 523549b5-621b-4ceb-8cef-d9820b240c6d)
    (property "Reference" "R16" (at 161.29 107.315 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "3.9K" (at 161.29 109.855 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 157.607 108.585 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 159.385 108.585 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ea4d4a1f-588a-4a16-8321-01b11cac60b0))
    (pin "2" (uuid 5e76c1e7-ef54-4eac-b31d-ecf7e81f3327))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "R16") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "R21") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 161.29 99.695 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 5c0d130e-d2b3-4ff8-bb86-ac87ae9f936c)
    (property "Reference" "#PWR088" (at 161.29 106.045 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 161.29 104.14 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 161.29 99.695 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 161.29 99.695 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 89b89150-9048-41b3-98a9-66057f46aa04))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "#PWR088") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "#PWR0103") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:+5V") (at 125.095 29.21 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 6341e7d3-75f1-44cb-8ee9-5eb4eb844017)
    (property "Reference" "#PWR082" (at 125.095 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (at 125.095 24.13 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 125.095 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 125.095 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c40d494a-6e19-4cbe-a1a0-7864ffcb4177))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "#PWR082") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "#PWR097") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 136.525 114.3 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 73559920-206d-4272-8aa9-dfb3941e34c3)
    (property "Reference" "#PWR085" (at 136.525 120.65 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 136.525 118.745 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 136.525 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 136.525 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 82433004-b889-4e15-bca7-989ca94108f8))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "#PWR085") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "#PWR0100") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 169.545 97.155 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 7c837701-830c-45c0-8a9b-e74cfe004566)
    (property "Reference" "#PWR090" (at 169.545 103.505 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 169.545 101.6 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 169.545 97.155 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 169.545 97.155 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 766347d1-8d2e-47a7-8ff1-6ff88a88af7f))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "#PWR090") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "#PWR0105") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 164.465 81.915 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 83809e18-a00f-4aeb-8246-57a11c1e6d97)
    (property "Reference" "R18" (at 163.195 80.01 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "25R" (at 165.735 80.01 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 164.465 83.693 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 164.465 81.915 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7c8b694e-5b7e-4d55-8bda-5adb185d266e))
    (pin "2" (uuid 872df453-6ef1-42b5-9261-f08377335f14))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "R18") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "R23") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 169.545 93.345 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 9641eb66-5ea5-417b-861c-12751ef3296a)
    (property "Reference" "R19" (at 171.45 92.075 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "1K" (at 171.45 94.615 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 167.767 93.345 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 169.545 93.345 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b5b6cf19-1a29-436a-93a2-59a800832d59))
    (pin "2" (uuid 5700e018-5056-41f0-8894-f20c2ccdc577))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "R19") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "R24") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 153.67 70.485 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid a401f1ca-d0eb-409e-8bde-b76e0fdc4820)
    (property "Reference" "R15" (at 156.21 69.215 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "50R" (at 156.21 71.755 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 151.892 70.485 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 153.67 70.485 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ac3095ed-8225-4ef0-8a7d-864b2548e2c2))
    (pin "2" (uuid d51e830d-d5e6-4fb4-a1ba-79f5b80f98a2))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "R15") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "R20") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "SCLF-65+:SCLF-65+") (at 184.785 76.835 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid a5f7f4d3-989b-4f73-ac2c-0beca2a704bc)
    (property "Reference" "U15" (at 184.785 66.675 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "SCLF-65+" (at 184.785 69.215 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "footprints:SCLF65" (at 184.785 69.85 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 184.785 69.85 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 079972c5-59f9-480e-b0f1-a11ee72e41bf))
    (pin "2" (uuid 7fd41663-2af6-4f10-810e-43ff7c0637b6))
    (pin "3" (uuid f7edad1c-32d9-45eb-a9ec-1273911704e1))
    (pin "4" (uuid 255095b5-b3b0-45a1-82af-663a2539059b))
    (pin "5" (uuid 36298a66-ae75-4d62-9641-8aef059f587c))
    (pin "6" (uuid 99b5a782-795c-4753-a1a7-4ae3da6c8582))
    (pin "7" (uuid df7cd75b-d36a-44d5-9721-ab9e015ccc5d))
    (pin "8" (uuid 0ece5d21-6cfc-481c-80d2-f5fd3a519342))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "U15") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "U18") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 198.755 74.295 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid ae914922-b738-4d85-bc5c-6d963a3a6fbe)
    (property "Reference" "C37" (at 198.755 67.31 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "0.1uF" (at 198.755 69.85 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 202.565 73.3298 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 198.755 74.295 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4481245e-cbde-470f-b83a-8f8aa86fab69))
    (pin "2" (uuid a6308d0f-005e-4c8d-8f3e-3522e0668ba4))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/42921d2e-336f-47b8-bd50-f98c46221e56"
          (reference "C37") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/fe78c58d-726d-42bd-820b-951ec0977bc5/d346a3dc-0ac1-4734-bc83-a04d7e077962"
          (reference "C36") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "C50") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "C56") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 125.095 36.195 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid c5b5f505-c3bc-4a6e-b86e-f816125e2c41)
    (property "Reference" "C47" (at 128.27 34.925 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "0.1uF" (at 128.27 37.465 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 126.0602 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 125.095 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f8f35cb4-698c-4c93-a3a2-501e3c0b7438))
    (pin "2" (uuid 1e783c2f-6d4c-4475-9111-2570d1e254d2))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "C47") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "C53") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 159.385 112.395 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid cdbfe7c5-ffd2-4090-95da-8d947897cfea)
    (property "Reference" "#PWR087" (at 159.385 118.745 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 159.385 116.84 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 159.385 112.395 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 159.385 112.395 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d290e3be-00ee-478c-a272-694e260232c1))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "#PWR087") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "#PWR0102") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 184.785 84.455 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid db541f21-c7cd-427d-9836-7c567facbe09)
    (property "Reference" "#PWR091" (at 184.785 90.805 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 184.785 88.9 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 184.785 84.455 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 184.785 84.455 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 51c941fe-e4b8-454d-89bf-726dd715468e))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "#PWR091") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "#PWR0106") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 147.955 36.195 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid e103336b-16bf-4497-8eb5-abdefbe3b427)
    (property "Reference" "C49" (at 151.13 34.925 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "0.1uF" (at 151.13 37.465 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 146.9898 32.385 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 147.955 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 59e35e0c-2ce5-4582-b642-fbd27780901f))
    (pin "2" (uuid a027e579-4c46-41f1-989d-bd5994702bf6))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "C49") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "C55") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 168.275 81.915 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid e3b4b439-2e33-4568-8809-35e37a04091e)
    (property "Reference" "#PWR089" (at 174.625 81.915 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 172.72 81.915 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 168.275 81.915 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 168.275 81.915 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 568a75d9-c8f5-4ca5-9617-3558fc83d734))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "#PWR089") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "#PWR0104") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 136.525 41.91 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid e5117307-09ab-42d4-9e52-1020dd6499dc)
    (property "Reference" "#PWR083" (at 136.525 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 136.525 46.355 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 136.525 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 136.525 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid dbc066e7-e185-41d6-b902-f7d387b3dffd))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "#PWR083") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "#PWR098") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 153.67 66.675 180) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid f5c78503-2bc9-4dd4-a2e8-d6dd275541da)
    (property "Reference" "#PWR086" (at 153.67 60.325 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 153.67 61.595 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 153.67 66.675 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 153.67 66.675 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6f520bf8-59e0-4d3e-94f5-4a3b3126c756))
    (instances
      (project "analog_frontend"
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/7ba80321-1d1d-4032-a2ce-d86c8a1f2486"
          (reference "#PWR086") (unit 1)
        )
        (path "/8520eda6-8ea2-46c6-b936-856b6ab0ca14/f819deb7-0b24-4ad4-81b9-22d14f779e77"
          (reference "#PWR0101") (unit 1)
        )
      )
    )
  )
)