summaryrefslogtreecommitdiff
path: root/frontend_board/frontend_board.net
blob: a63c019d8166e38395f5e4443e3b65ca0e5df53d (plain)
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
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
(export (version D)
  (design
    (source /home/user/ref/ads_frontend/frontend_board.sch)
    (date "Sat Jun 30 14:03:15 2018")
    (tool "Eeschema 4.0.7")
    (sheet (number 1) (name /) (tstamps /)
      (title_block
        (title)
        (company)
        (rev)
        (date)
        (source frontend_board.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value "")))))
  (components
    (comp (ref C19)
      (value 10u)
      (footprint Capacitors_SMD:C_0603)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B336BE0))
    (comp (ref U1)
      (value ADS1299_TQFP)
      (footprint Housings_QFP:TQFP-64_10x10mm_Pitch0.5mm)
      (libsource (lib components) (part ADS1299_TQFP))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3372B9))
    (comp (ref C20)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B336BBF))
    (comp (ref C14)
      (value 100u)
      (footprint Capacitors_SMD:C_1210)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B337731))
    (comp (ref C15)
      (value 1u)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B337783))
    (comp (ref C16)
      (value 1u)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3377A8))
    (comp (ref C17)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3377D4))
    (comp (ref C18)
      (value 1u)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3377FF))
    (comp (ref C12)
      (value 100p)
      (footprint Capacitors_SMD:C_0402_NoSilk)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33846C))
    (comp (ref R32)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B338472))
    (comp (ref R35)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B338478))
    (comp (ref C11)
      (value 100p)
      (footprint Capacitors_SMD:C_0402_NoSilk)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B339087))
    (comp (ref R28)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33908D))
    (comp (ref R31)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B339093))
    (comp (ref C10)
      (value 100p)
      (footprint Capacitors_SMD:C_0402_NoSilk)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3391A9))
    (comp (ref R23)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3391AF))
    (comp (ref R26)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3391B5))
    (comp (ref C9)
      (value 100p)
      (footprint Capacitors_SMD:C_0402_NoSilk)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3391C5))
    (comp (ref R19)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3391CB))
    (comp (ref R21)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3391D1))
    (comp (ref C8)
      (value 100p)
      (footprint Capacitors_SMD:C_0402_NoSilk)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B339503))
    (comp (ref R14)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B339509))
    (comp (ref R17)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33950F))
    (comp (ref C7)
      (value 100p)
      (footprint Capacitors_SMD:C_0402_NoSilk)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33951F))
    (comp (ref R10)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B339525))
    (comp (ref R13)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33952B))
    (comp (ref C6)
      (value 100p)
      (footprint Capacitors_SMD:C_0402_NoSilk)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33953B))
    (comp (ref R7)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B339541))
    (comp (ref R9)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B339547))
    (comp (ref C3)
      (value 100p)
      (footprint Capacitors_SMD:C_0402_NoSilk)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B339557))
    (comp (ref R3)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33955D))
    (comp (ref R6)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B339563))
    (comp (ref C13)
      (value DNP)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part CP_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33C224))
    (comp (ref R11)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33C747))
    (comp (ref R12)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33CC33))
    (comp (ref R22)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33CCFE))
    (comp (ref R24)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33CDAA))
    (comp (ref R25)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33CE29))
    (comp (ref R27)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33CEAB))
    (comp (ref R29)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33CF34))
    (comp (ref R30)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33CFBC))
    (comp (ref R33)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33D04B))
    (comp (ref R34)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33D0E1))
    (comp (ref R36)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33D176))
    (comp (ref R15)
      (value 220)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33DF77))
    (comp (ref R16)
      (value 220)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33DF7D))
    (comp (ref R18)
      (value 220)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33DF83))
    (comp (ref R20)
      (value 220)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33DF89))
    (comp (ref D4)
      (value red)
      (footprint LEDs:LED_0603_HandSoldering)
      (libsource (lib device) (part LED_Small_ALT))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33E31B))
    (comp (ref D5)
      (value red)
      (footprint LEDs:LED_0603_HandSoldering)
      (libsource (lib device) (part LED_Small_ALT))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33E731))
    (comp (ref D6)
      (value red)
      (footprint LEDs:LED_0603_HandSoldering)
      (libsource (lib device) (part LED_Small_ALT))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33E7DF))
    (comp (ref D7)
      (value red)
      (footprint LEDs:LED_0603_HandSoldering)
      (libsource (lib device) (part LED_Small_ALT))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B33E894))
    (comp (ref D8)
      (value TPD4E1B06)
      (footprint footprints:SOT-363_SC-70-6-nosilk)
      (libsource (lib components) (part TPD4E1B06))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B341609))
    (comp (ref D9)
      (value TPD4E1B06)
      (footprint footprints:SOT-363_SC-70-6-nosilk)
      (libsource (lib components) (part TPD4E1B06))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B341C37))
    (comp (ref D3)
      (value TPD4E1B06)
      (footprint footprints:SOT-363_SC-70-6-nosilk)
      (libsource (lib components) (part TPD4E1B06))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B342C31))
    (comp (ref D2)
      (value TPD4E1B06)
      (footprint footprints:SOT-363_SC-70-6-nosilk)
      (libsource (lib components) (part TPD4E1B06))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B342C37))
    (comp (ref J1)
      (value Conn_02x20_Odd_Even)
      (footprint footprints:bergstak_receptacle1_2x20_female)
      (libsource (lib conn) (part Conn_02x20_Odd_Even))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3484F9))
    (comp (ref J3)
      (value Conn_02x20_Odd_Even)
      (footprint footprints:bergstak_receptacle1_2x20_female)
      (libsource (lib conn) (part Conn_02x20_Odd_Even))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B348A9B))
    (comp (ref R1)
      (value 2k2)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B34B28E))
    (comp (ref R5)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B34C075))
    (comp (ref R8)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B34C13F))
    (comp (ref C2)
      (value 0)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B34C7E5))
    (comp (ref C5)
      (value 0)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B34D83B))
    (comp (ref D10)
      (value TPD4E1B06)
      (footprint TO_SOT_Packages_SMD:SOT-363_SC-70-6)
      (libsource (lib components) (part TPD4E1B06))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B365703))
    (comp (ref C32)
      (value 47u)
      (footprint Capacitors_SMD:C_0603)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36A439))
    (comp (ref C33)
      (value 47u)
      (footprint Capacitors_SMD:C_0603)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36A9A9))
    (comp (ref C34)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36AB6B))
    (comp (ref C35)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36ACDF))
    (comp (ref C36)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36ADD3))
    (comp (ref C37)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36AEC2))
    (comp (ref L3)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36D7F7))
    (comp (ref L2)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36E807))
    (comp (ref L5)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36F6EB))
    (comp (ref L7)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36F848))
    (comp (ref L9)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36F84F))
    (comp (ref L11)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36FA73))
    (comp (ref L13)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36FA7A))
    (comp (ref L15)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36FA81))
    (comp (ref L17)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36FA88))
    (comp (ref L19)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36FC53))
    (comp (ref L20)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36FC5A))
    (comp (ref L21)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36FC61))
    (comp (ref C21)
      (value 10u)
      (footprint Capacitors_SMD:C_0603)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B371E92))
    (comp (ref C23)
      (value 10u)
      (footprint Capacitors_SMD:C_0603)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B371E98))
    (comp (ref C24)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B371E9E))
    (comp (ref C25)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B371EA4))
    (comp (ref C26)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B371EAA))
    (comp (ref C27)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B371EB0))
    (comp (ref U2)
      (value ADM7170)
      (footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
      (libsource (lib components) (part ADM7170))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37644C))
    (comp (ref C29)
      (value 10u)
      (footprint Capacitors_SMD:C_0603)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37669C))
    (comp (ref C28)
      (value 10u)
      (footprint Capacitors_SMD:C_0603)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37683A))
    (comp (ref C30)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37697D))
    (comp (ref U3)
      (value LD1117S50TR_SOT223)
      (footprint TO_SOT_Packages_SMD:SOT-223-3Lead_TabPin2)
      (libsource (lib regul) (part LD1117S50TR_SOT223))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B378EBD))
    (comp (ref C31)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37A3CC))
    (comp (ref C1)
      (value 1u)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37BE4F))
    (comp (ref L1)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37D36F))
    (comp (ref R4)
      (value 10k)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B381684))
    (comp (ref C4)
      (value 0)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B381F87))
    (comp (ref R2)
      (value 10k)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B383BEC))
    (comp (ref L22)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3855A3))
    (comp (ref D1)
      (value TPD4E1B06)
      (footprint TO_SOT_Packages_SMD:SOT-363_SC-70-6)
      (libsource (lib components) (part TPD4E1B06))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B393336))
    (comp (ref L23)
      (value 0)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B39AE71))
    (comp (ref C22)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B39AFF9))
    (comp (ref D11)
      (value red)
      (footprint LEDs:LED_0603_HandSoldering)
      (libsource (lib device) (part LED_Small_ALT))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3A82DA))
    (comp (ref R37)
      (value 220)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3A8518))
    (comp (ref J2)
      (value Conn_02x10_Odd_Even)
      (footprint Pin_Headers:Pin_Header_Straight_2x10_Pitch2.54mm_SMD)
      (libsource (lib conn) (part Conn_02x10_Odd_Even))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B3634A1))
    (comp (ref L4)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36B63B))
    (comp (ref L6)
      (value L_Core_Ferrite_Small)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part L_Core_Ferrite_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36B7A7))
    (comp (ref TP3)
      (value TEST)
      (footprint footprints:patch_pad)
      (libsource (lib device) (part TEST))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36E052))
    (comp (ref TP4)
      (value TEST)
      (footprint footprints:patch_pad)
      (libsource (lib device) (part TEST))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36E1C8))
    (comp (ref TP2)
      (value TEST)
      (footprint footprints:patch_pad)
      (libsource (lib device) (part TEST))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36F726))
    (comp (ref TP1)
      (value TEST)
      (footprint footprints:patch_pad)
      (libsource (lib device) (part TEST))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B36F888))
    (comp (ref C38)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B362B54))
    (comp (ref C39)
      (value 100n)
      (footprint Capacitors_SMD:C_0402)
      (libsource (lib device) (part C_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B362CBF))
    (comp (ref D12)
      (value red)
      (footprint LEDs:LED_0603_HandSoldering)
      (libsource (lib device) (part LED_Small_ALT))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B379875))
    (comp (ref R38)
      (value 220)
      (footprint Resistors_SMD:R_0402)
      (libsource (lib device) (part R_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37987B))
    (comp (ref TP5)
      (value TEST)
      (footprint footprints:patch_pad)
      (libsource (lib device) (part TEST))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37AA55))
    (comp (ref TP6)
      (value TEST)
      (footprint footprints:patch_pad)
      (libsource (lib device) (part TEST))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37AF47))
    (comp (ref TP7)
      (value TEST)
      (footprint footprints:patch_pad)
      (libsource (lib device) (part TEST))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37C944))
    (comp (ref TP8)
      (value TEST)
      (footprint footprints:patch_pad)
      (libsource (lib device) (part TEST))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37CAC9))
    (comp (ref TP9)
      (value TEST)
      (footprint footprints:patch_pad)
      (libsource (lib device) (part TEST))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37CC43))
    (comp (ref TP10)
      (value TEST)
      (footprint footprints:patch_pad)
      (libsource (lib device) (part TEST))
      (sheetpath (names /) (tstamps /))
      (tstamp 5B37CDC4)))
  (libparts
    (libpart (lib components) (part ADM7170)
      (fields
        (field (name Reference) U)
        (field (name Value) ADM7170))
      (pins
        (pin (num 1) (name VOUT) (type output))
        (pin (num 2) (name VOUT) (type output))
        (pin (num 3) (name SENSE) (type output))
        (pin (num 4) (name SS) (type output))
        (pin (num 5) (name EN) (type output))
        (pin (num 6) (name GND) (type output))
        (pin (num 7) (name VIN) (type output))
        (pin (num 8) (name VIN) (type output))
        (pin (num 9) (name EP) (type output))))
    (libpart (lib components) (part ADS1299_TQFP)
      (description "ADS1298 Low-Power, 8-Channel, 24-Bit Analog Front-End for Biopotential Measurements, TQFP-64")
      (docs http://www.ti.com/lit/gpn/ads1298)
      (footprints
        (fp TQFP*10x10mm*Pitch0.5mm*))
      (fields
        (field (name Reference) U)
        (field (name Value) ADS1299_TQFP)
        (field (name Footprint) Housings_QFP:TQFP-64_10x10mm_Pitch0.5mm))
      (pins
        (pin (num 1) (name IN8N) (type input))
        (pin (num 2) (name IN8P) (type input))
        (pin (num 3) (name IN7P) (type input))
        (pin (num 4) (name IN7N) (type input))
        (pin (num 5) (name IN6N) (type input))
        (pin (num 6) (name IN6P) (type input))
        (pin (num 7) (name IN5N) (type input))
        (pin (num 8) (name IN5P) (type input))
        (pin (num 9) (name IN4N) (type input))
        (pin (num 10) (name IN4P) (type input))
        (pin (num 11) (name IN3N) (type input))
        (pin (num 12) (name IN3P) (type input))
        (pin (num 13) (name IN2N) (type input))
        (pin (num 14) (name IN2P) (type input))
        (pin (num 15) (name IN1N) (type input))
        (pin (num 16) (name IN1P) (type input))
        (pin (num 17) (name SRB1) (type BiDi))
        (pin (num 18) (name SRB2) (type BiDi))
        (pin (num 19) (name AVDD) (type power_in))
        (pin (num 20) (name AVSS) (type power_in))
        (pin (num 21) (name AVDD) (type power_in))
        (pin (num 22) (name AVDD) (type power_in))
        (pin (num 23) (name AVSS) (type power_in))
        (pin (num 24) (name VREFP) (type BiDi))
        (pin (num 25) (name VREFN) (type input))
        (pin (num 26) (name VCAP4) (type passive))
        (pin (num 27) (name NC) (type NotConnected))
        (pin (num 28) (name VCAP1) (type output))
        (pin (num 29) (name NC) (type NotConnected))
        (pin (num 30) (name VCAP2) (type passive))
        (pin (num 31) (name RESV1) (type input))
        (pin (num 32) (name AVSS) (type power_in))
        (pin (num 33) (name DGND) (type power_in))
        (pin (num 34) (name DIN) (type input))
        (pin (num 35) (name ~PWDN) (type input))
        (pin (num 36) (name ~RESET) (type input))
        (pin (num 37) (name CLK) (type BiDi))
        (pin (num 38) (name START) (type input))
        (pin (num 39) (name ~CS) (type input))
        (pin (num 40) (name SCLK) (type input))
        (pin (num 41) (name DAISY_IN) (type input))
        (pin (num 42) (name GPIO1) (type BiDi))
        (pin (num 43) (name DOUT) (type output))
        (pin (num 44) (name GPIO2) (type BiDi))
        (pin (num 45) (name GPIO3) (type BiDi))
        (pin (num 46) (name GPIO4) (type BiDi))
        (pin (num 47) (name ~DRDY) (type output))
        (pin (num 48) (name DVDD) (type power_in))
        (pin (num 49) (name DGND) (type power_in))
        (pin (num 50) (name DVDD) (type power_in))
        (pin (num 51) (name DGND) (type power_in))
        (pin (num 52) (name CLKSEL) (type input))
        (pin (num 53) (name AVSS1) (type power_in))
        (pin (num 54) (name AVDD1) (type power_in))
        (pin (num 55) (name VCAP3) (type passive))
        (pin (num 56) (name AVDD) (type power_in))
        (pin (num 57) (name AVSS) (type power_in))
        (pin (num 58) (name AVSS) (type power_in))
        (pin (num 59) (name AVDD) (type power_in))
        (pin (num 60) (name BIASREF) (type input))
        (pin (num 61) (name BIASINV) (type BiDi))
        (pin (num 62) (name BIASIN) (type input))
        (pin (num 63) (name BIASOUT) (type output))
        (pin (num 64) (name RESERVED) (type output))))
    (libpart (lib regul) (part AP1117-15)
      (aliases
        (alias AP1117-18)
        (alias AP1117-25)
        (alias AP1117-33)
        (alias AP1117-50)
        (alias LD1117S33TR_SOT223)
        (alias LD1117S12TR_SOT223)
        (alias LD1117S18TR_SOT223)
        (alias LD1117S25TR_SOT223)
        (alias LD1117S50TR_SOT223)
        (alias NCP1117-12_SOT223)
        (alias NCP1117-1.5_SOT223)
        (alias NCP1117-1.8_SOT223)
        (alias NCP1117-2.0_SOT223)
        (alias NCP1117-2.5_SOT223)
        (alias NCP1117-2.85_SOT223)
        (alias NCP1117-3.3_SOT223)
        (alias NCP1117-5.0_SOT223))
      (description "1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223")
      (docs http://www.diodes.com/datasheets/AP1117.pdf)
      (footprints
        (fp SOT?223*TabPin2*))
      (fields
        (field (name Reference) U)
        (field (name Value) AP1117-15)
        (field (name Footprint) TO_SOT_Packages_SMD:SOT-223-3Lead_TabPin2))
      (pins
        (pin (num 1) (name GND) (type power_in))
        (pin (num 2) (name VO) (type passive))
        (pin (num 3) (name VI) (type power_in))))
    (libpart (lib device) (part CP_Small)
      (description "Polarised capacitor")
      (footprints
        (fp CP_*))
      (fields
        (field (name Reference) C)
        (field (name Value) CP_Small))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part C_Small)
      (description "Unpolarized capacitor")
      (footprints
        (fp C_*))
      (fields
        (field (name Reference) C)
        (field (name Value) C_Small))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib conn) (part Conn_02x10_Odd_Even)
      (description "Generic connector, double row, 02x10, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers)")
      (docs ~)
      (footprints
        (fp Connector*:*2x??x*mm*)
        (fp Connector*:*2x???Pitch*)
        (fp Pin_Header_Straight_2X*)
        (fp Pin_Header_Angled_2X*)
        (fp Socket_Strip_Straight_2X*)
        (fp Socket_Strip_Angled_2X*))
      (fields
        (field (name Reference) J)
        (field (name Value) Conn_02x10_Odd_Even))
      (pins
        (pin (num 1) (name Pin_1) (type passive))
        (pin (num 2) (name Pin_2) (type passive))
        (pin (num 3) (name Pin_3) (type passive))
        (pin (num 4) (name Pin_4) (type passive))
        (pin (num 5) (name Pin_5) (type passive))
        (pin (num 6) (name Pin_6) (type passive))
        (pin (num 7) (name Pin_7) (type passive))
        (pin (num 8) (name Pin_8) (type passive))
        (pin (num 9) (name Pin_9) (type passive))
        (pin (num 10) (name Pin_10) (type passive))
        (pin (num 11) (name Pin_11) (type passive))
        (pin (num 12) (name Pin_12) (type passive))
        (pin (num 13) (name Pin_13) (type passive))
        (pin (num 14) (name Pin_14) (type passive))
        (pin (num 15) (name Pin_15) (type passive))
        (pin (num 16) (name Pin_16) (type passive))
        (pin (num 17) (name Pin_17) (type passive))
        (pin (num 18) (name Pin_18) (type passive))
        (pin (num 19) (name Pin_19) (type passive))
        (pin (num 20) (name Pin_20) (type passive))))
    (libpart (lib conn) (part Conn_02x20_Odd_Even)
      (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers)")
      (docs ~)
      (footprints
        (fp Connector*:*2x??x*mm*)
        (fp Connector*:*2x???Pitch*)
        (fp Pin_Header_Straight_2X*)
        (fp Pin_Header_Angled_2X*)
        (fp Socket_Strip_Straight_2X*)
        (fp Socket_Strip_Angled_2X*))
      (fields
        (field (name Reference) J)
        (field (name Value) Conn_02x20_Odd_Even))
      (pins
        (pin (num 1) (name Pin_1) (type passive))
        (pin (num 2) (name Pin_2) (type passive))
        (pin (num 3) (name Pin_3) (type passive))
        (pin (num 4) (name Pin_4) (type passive))
        (pin (num 5) (name Pin_5) (type passive))
        (pin (num 6) (name Pin_6) (type passive))
        (pin (num 7) (name Pin_7) (type passive))
        (pin (num 8) (name Pin_8) (type passive))
        (pin (num 9) (name Pin_9) (type passive))
        (pin (num 10) (name Pin_10) (type passive))
        (pin (num 11) (name Pin_11) (type passive))
        (pin (num 12) (name Pin_12) (type passive))
        (pin (num 13) (name Pin_13) (type passive))
        (pin (num 14) (name Pin_14) (type passive))
        (pin (num 15) (name Pin_15) (type passive))
        (pin (num 16) (name Pin_16) (type passive))
        (pin (num 17) (name Pin_17) (type passive))
        (pin (num 18) (name Pin_18) (type passive))
        (pin (num 19) (name Pin_19) (type passive))
        (pin (num 20) (name Pin_20) (type passive))
        (pin (num 21) (name Pin_21) (type passive))
        (pin (num 22) (name Pin_22) (type passive))
        (pin (num 23) (name Pin_23) (type passive))
        (pin (num 24) (name Pin_24) (type passive))
        (pin (num 25) (name Pin_25) (type passive))
        (pin (num 26) (name Pin_26) (type passive))
        (pin (num 27) (name Pin_27) (type passive))
        (pin (num 28) (name Pin_28) (type passive))
        (pin (num 29) (name Pin_29) (type passive))
        (pin (num 30) (name Pin_30) (type passive))
        (pin (num 31) (name Pin_31) (type passive))
        (pin (num 32) (name Pin_32) (type passive))
        (pin (num 33) (name Pin_33) (type passive))
        (pin (num 34) (name Pin_34) (type passive))
        (pin (num 35) (name Pin_35) (type passive))
        (pin (num 36) (name Pin_36) (type passive))
        (pin (num 37) (name Pin_37) (type passive))
        (pin (num 38) (name Pin_38) (type passive))
        (pin (num 39) (name Pin_39) (type passive))
        (pin (num 40) (name Pin_40) (type passive))))
    (libpart (lib device) (part LED_Small_ALT)
      (description "LED, small symbol, alternativ symbol")
      (footprints
        (fp LED-*)
        (fp LED_*))
      (fields
        (field (name Reference) D)
        (field (name Value) LED_Small_ALT))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive))))
    (libpart (lib device) (part L_Core_Ferrite_Small)
      (description "Inductor with ferrite core, small symbol")
      (footprints
        (fp Choke_*)
        (fp *Coil*)
        (fp Inductor_*)
        (fp L_*))
      (fields
        (field (name Reference) L)
        (field (name Value) L_Core_Ferrite_Small))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part R_Small)
      (description "Resistor, small symbol")
      (footprints
        (fp R_*))
      (fields
        (field (name Reference) R)
        (field (name Value) R_Small))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part TEST)
      (description "Testpoint, connection for test equipment")
      (fields
        (field (name Reference) TP)
        (field (name Value) TEST))
      (pins
        (pin (num 1) (name ~) (type passive))))
    (libpart (lib components) (part TPD4E1B06)
      (fields
        (field (name Reference) D)
        (field (name Value) TPD4E1B06))
      (pins
        (pin (num 1) (name IO1) (type output))
        (pin (num 2) (name IO2) (type output))
        (pin (num 3) (name GND) (type output))
        (pin (num 4) (name IO3) (type output))
        (pin (num 5) (name IO4) (type output))
        (pin (num 6) (name NC) (type output)))))
  (libraries
    (library (logical device)
      (uri /usr/share/kicad/library/device.lib))
    (library (logical conn)
      (uri /usr/share/kicad/library/conn.lib))
    (library (logical regul)
      (uri /usr/share/kicad/library/regul.lib))
    (library (logical components)
      (uri components.lib)))
  (nets
    (net (code 1) (name /BIASIN)
      (node (ref R5) (pin 2))
      (node (ref U1) (pin 62)))
    (net (code 2) (name "Net-(J2-Pad7)")
      (node (ref J2) (pin 7))
      (node (ref L7) (pin 2)))
    (net (code 3) (name "Net-(J2-Pad10)")
      (node (ref J2) (pin 10))
      (node (ref L21) (pin 2)))
    (net (code 4) (name "Net-(J2-Pad8)")
      (node (ref J2) (pin 8))
      (node (ref L20) (pin 2)))
    (net (code 5) (name "Net-(J2-Pad6)")
      (node (ref L19) (pin 2))
      (node (ref J2) (pin 6)))
    (net (code 6) (name "Net-(J2-Pad4)")
      (node (ref L17) (pin 2))
      (node (ref J2) (pin 4)))
    (net (code 7) (name "Net-(J2-Pad15)")
      (node (ref J2) (pin 15))
      (node (ref L15) (pin 2)))
    (net (code 8) (name "Net-(J2-Pad13)")
      (node (ref J2) (pin 13))
      (node (ref L13) (pin 2)))
    (net (code 9) (name "Net-(J2-Pad11)")
      (node (ref J2) (pin 11))
      (node (ref L11) (pin 2)))
    (net (code 10) (name "Net-(J2-Pad9)")
      (node (ref L9) (pin 2))
      (node (ref J2) (pin 9)))
    (net (code 11) (name "Net-(J2-Pad5)")
      (node (ref J2) (pin 5))
      (node (ref L5) (pin 2)))
    (net (code 12) (name "Net-(J2-Pad3)")
      (node (ref J2) (pin 3))
      (node (ref L3) (pin 2)))
    (net (code 13) (name /ADS_GPIO2)
      (node (ref U1) (pin 44))
      (node (ref R18) (pin 2)))
    (net (code 14) (name "Net-(D4-Pad1)")
      (node (ref R15) (pin 1))
      (node (ref D4) (pin 1)))
    (net (code 15) (name "Net-(D5-Pad1)")
      (node (ref D5) (pin 1))
      (node (ref R16) (pin 1)))
    (net (code 16) (name "Net-(D6-Pad1)")
      (node (ref D6) (pin 1))
      (node (ref R18) (pin 1)))
    (net (code 17) (name "Net-(D7-Pad1)")
      (node (ref R20) (pin 1))
      (node (ref D7) (pin 1)))
    (net (code 18) (name /ADS_GPIO4)
      (node (ref R15) (pin 2))
      (node (ref U1) (pin 46)))
    (net (code 19) (name /ADS_GPIO3)
      (node (ref R16) (pin 2))
      (node (ref U1) (pin 45)))
    (net (code 20) (name /ADS_GPIO1)
      (node (ref R20) (pin 2))
      (node (ref U1) (pin 42)))
    (net (code 21) (name /ADS_DAISY_IN_DR)
      (node (ref U1) (pin 41))
      (node (ref R36) (pin 2)))
    (net (code 22) (name /ADS_CLKSEL_DR)
      (node (ref U1) (pin 52))
      (node (ref R34) (pin 2)))
    (net (code 23) (name /ADS_CLK_DR)
      (node (ref U1) (pin 37))
      (node (ref R33) (pin 2)))
    (net (code 24) (name /ADS_NDRDY_DR)
      (node (ref U1) (pin 47))
      (node (ref R30) (pin 2)))
    (net (code 25) (name /ADS_START_DR)
      (node (ref R29) (pin 2))
      (node (ref U1) (pin 38)))
    (net (code 26) (name /ADS_NCS_DR)
      (node (ref R27) (pin 2))
      (node (ref U1) (pin 39)))
    (net (code 27) (name /ADS_DIN_DR)
      (node (ref R25) (pin 2))
      (node (ref U1) (pin 34)))
    (net (code 28) (name /ADS_DOUT_DR)
      (node (ref U1) (pin 43))
      (node (ref R24) (pin 2)))
    (net (code 29) (name /ADS_SCLK_DR)
      (node (ref U1) (pin 40))
      (node (ref R22) (pin 2)))
    (net (code 30) (name /ADS_NRST_DR)
      (node (ref R12) (pin 2))
      (node (ref U1) (pin 36)))
    (net (code 31) (name /ADS_NPWDN_DR)
      (node (ref R11) (pin 2))
      (node (ref U1) (pin 35)))
    (net (code 32) (name /BIASINV)
      (node (ref R8) (pin 2))
      (node (ref U1) (pin 61))
      (node (ref C5) (pin 1)))
    (net (code 33) (name /BIASOUT)
      (node (ref U1) (pin 63))
      (node (ref R8) (pin 1))
      (node (ref C2) (pin 2))
      (node (ref R5) (pin 1))
      (node (ref R1) (pin 1))
      (node (ref C5) (pin 2)))
    (net (code 34) (name "Net-(J2-Pad17)")
      (node (ref L22) (pin 1))
      (node (ref J2) (pin 17))
      (node (ref J2) (pin 19)))
    (net (code 35) (name GNDD)
      (node (ref U1) (pin 33))
      (node (ref U1) (pin 49))
      (node (ref C31) (pin 2))
      (node (ref J2) (pin 1))
      (node (ref U1) (pin 51))
      (node (ref J2) (pin 2))
      (node (ref U3) (pin 1))
      (node (ref U1) (pin 31))
      (node (ref TP9) (pin 1))
      (node (ref J2) (pin 16))
      (node (ref C34) (pin 2))
      (node (ref C35) (pin 2))
      (node (ref C37) (pin 2))
      (node (ref J1) (pin 7))
      (node (ref C36) (pin 2))
      (node (ref R37) (pin 1))
      (node (ref C29) (pin 2))
      (node (ref J3) (pin 34))
      (node (ref J3) (pin 33))
      (node (ref J1) (pin 8))
      (node (ref C32) (pin 2))
      (node (ref C33) (pin 2)))
    (net (code 36) (name "Net-(J2-Pad14)")
      (node (ref J2) (pin 14))
      (node (ref L6) (pin 2)))
    (net (code 37) (name "Net-(J2-Pad12)")
      (node (ref J2) (pin 12))
      (node (ref L4) (pin 2)))
    (net (code 38) (name "Net-(J2-Pad18)")
      (node (ref L2) (pin 2))
      (node (ref J2) (pin 18))
      (node (ref J2) (pin 20)))
    (net (code 39) (name /SRB1)
      (node (ref J1) (pin 36))
      (node (ref U1) (pin 17))
      (node (ref D10) (pin 5)))
    (net (code 40) (name /SRB2)
      (node (ref D10) (pin 4))
      (node (ref U1) (pin 18))
      (node (ref J1) (pin 38)))
    (net (code 41) (name VSSA)
      (node (ref J3) (pin 27))
      (node (ref J3) (pin 5))
      (node (ref J3) (pin 19))
      (node (ref C19) (pin 2))
      (node (ref J1) (pin 17))
      (node (ref J3) (pin 17))
      (node (ref C16) (pin 2))
      (node (ref J1) (pin 19))
      (node (ref J3) (pin 2))
      (node (ref J3) (pin 25))
      (node (ref C13) (pin 2))
      (node (ref J3) (pin 13))
      (node (ref J3) (pin 31))
      (node (ref J3) (pin 21))
      (node (ref J3) (pin 11))
      (node (ref J3) (pin 23))
      (node (ref J3) (pin 9))
      (node (ref J3) (pin 7))
      (node (ref D12) (pin 1))
      (node (ref C15) (pin 2))
      (node (ref U1) (pin 23))
      (node (ref U1) (pin 58))
      (node (ref U1) (pin 25))
      (node (ref U1) (pin 20))
      (node (ref U1) (pin 32))
      (node (ref J3) (pin 1))
      (node (ref U1) (pin 57))
      (node (ref C38) (pin 2))
      (node (ref J1) (pin 27))
      (node (ref C39) (pin 2))
      (node (ref J1) (pin 15))
      (node (ref J1) (pin 25))
      (node (ref J1) (pin 40))
      (node (ref J3) (pin 15))
      (node (ref C14) (pin 2))
      (node (ref C20) (pin 2))
      (node (ref J1) (pin 29))
      (node (ref J1) (pin 11))
      (node (ref J1) (pin 33))
      (node (ref J1) (pin 23))
      (node (ref J1) (pin 13))
      (node (ref J1) (pin 31))
      (node (ref J1) (pin 21))
      (node (ref U1) (pin 53))
      (node (ref J1) (pin 39))
      (node (ref J1) (pin 9))
      (node (ref TP7) (pin 1))
      (node (ref C25) (pin 2))
      (node (ref C24) (pin 2))
      (node (ref C21) (pin 2))
      (node (ref C30) (pin 2))
      (node (ref C28) (pin 2))
      (node (ref U2) (pin 9))
      (node (ref U2) (pin 6))
      (node (ref C26) (pin 2))
      (node (ref C23) (pin 2))
      (node (ref C27) (pin 2))
      (node (ref C18) (pin 2))
      (node (ref J3) (pin 29))
      (node (ref C1) (pin 2))
      (node (ref C22) (pin 2))
      (node (ref D1) (pin 3))
      (node (ref C4) (pin 2))
      (node (ref R4) (pin 1))
      (node (ref C17) (pin 2)))
    (net (code 42) (name /SCL_PT)
      (node (ref TP6) (pin 1))
      (node (ref L15) (pin 1))
      (node (ref J1) (pin 4))
      (node (ref J3) (pin 38)))
    (net (code 43) (name /SDA_PT)
      (node (ref J3) (pin 40))
      (node (ref TP5) (pin 1))
      (node (ref L13) (pin 1))
      (node (ref J1) (pin 2)))
    (net (code 44) (name VDDA)
      (node (ref L1) (pin 1))
      (node (ref C38) (pin 1))
      (node (ref R38) (pin 2))
      (node (ref L23) (pin 2))
      (node (ref U1) (pin 21))
      (node (ref J3) (pin 3))
      (node (ref TP8) (pin 1))
      (node (ref U1) (pin 19))
      (node (ref C23) (pin 1))
      (node (ref U1) (pin 59))
      (node (ref J1) (pin 37))
      (node (ref C27) (pin 1))
      (node (ref C26) (pin 1))
      (node (ref U1) (pin 56))
      (node (ref C24) (pin 1))
      (node (ref C25) (pin 1))
      (node (ref R2) (pin 2))
      (node (ref U1) (pin 22))
      (node (ref C39) (pin 1)))
    (net (code 45) (name "Net-(D12-Pad2)")
      (node (ref R38) (pin 1))
      (node (ref D12) (pin 2)))
    (net (code 46) (name VDD)
      (node (ref J1) (pin 5))
      (node (ref L2) (pin 1))
      (node (ref D4) (pin 2))
      (node (ref U1) (pin 50))
      (node (ref U1) (pin 48))
      (node (ref J3) (pin 36))
      (node (ref C32) (pin 1))
      (node (ref J1) (pin 6))
      (node (ref C37) (pin 1))
      (node (ref C36) (pin 1))
      (node (ref C35) (pin 1))
      (node (ref C34) (pin 1))
      (node (ref C33) (pin 1))
      (node (ref U3) (pin 2))
      (node (ref J3) (pin 35))
      (node (ref D11) (pin 2))
      (node (ref D5) (pin 2))
      (node (ref D6) (pin 2))
      (node (ref D7) (pin 2))
      (node (ref TP10) (pin 1)))
    (net (code 47) (name "Net-(J3-Pad37)")
      (node (ref J3) (pin 37))
      (node (ref TP4) (pin 1)))
    (net (code 48) (name "Net-(J1-Pad1)")
      (node (ref J1) (pin 1))
      (node (ref TP2) (pin 1)))
    (net (code 49) (name "Net-(J1-Pad3)")
      (node (ref TP1) (pin 1))
      (node (ref J1) (pin 3)))
    (net (code 50) (name "Net-(J3-Pad39)")
      (node (ref J3) (pin 39))
      (node (ref TP3) (pin 1)))
    (net (code 51) (name /BIASREF)
      (node (ref R2) (pin 1))
      (node (ref C4) (pin 1))
      (node (ref U1) (pin 60))
      (node (ref R4) (pin 2)))
    (net (code 52) (name +BATT)
      (node (ref L22) (pin 2))
      (node (ref U3) (pin 3))
      (node (ref C30) (pin 1))
      (node (ref U2) (pin 7))
      (node (ref C28) (pin 1))
      (node (ref C31) (pin 1))
      (node (ref C29) (pin 1))
      (node (ref U2) (pin 8))
      (node (ref U2) (pin 5)))
    (net (code 53) (name "Net-(D11-Pad1)")
      (node (ref R37) (pin 2))
      (node (ref D11) (pin 1)))
    (net (code 54) (name /AVDD1)
      (node (ref L1) (pin 2))
      (node (ref C1) (pin 1))
      (node (ref U1) (pin 54)))
    (net (code 55) (name "Net-(C21-Pad1)")
      (node (ref U2) (pin 1))
      (node (ref L23) (pin 1))
      (node (ref C22) (pin 1))
      (node (ref U2) (pin 3))
      (node (ref U2) (pin 2))
      (node (ref C21) (pin 1)))
    (net (code 56) (name "Net-(D8-Pad6)")
      (node (ref D8) (pin 6)))
    (net (code 57) (name "Net-(D2-Pad6)")
      (node (ref D2) (pin 6)))
    (net (code 58) (name "Net-(D3-Pad6)")
      (node (ref D3) (pin 6)))
    (net (code 59) (name "Net-(D9-Pad6)")
      (node (ref D9) (pin 6)))
    (net (code 60) (name /ADS_DAISY_IN)
      (node (ref L19) (pin 1))
      (node (ref R36) (pin 1)))
    (net (code 61) (name /ADS_CLKSEL)
      (node (ref R34) (pin 1))
      (node (ref L6) (pin 1)))
    (net (code 62) (name /ADS_CLK)
      (node (ref L9) (pin 1))
      (node (ref R33) (pin 1)))
    (net (code 63) (name "Net-(J3-Pad6)")
      (node (ref J3) (pin 6)))
    (net (code 64) (name "Net-(J3-Pad4)")
      (node (ref J3) (pin 4)))
    (net (code 65) (name /ADS_NDRDY)
      (node (ref R30) (pin 1))
      (node (ref L17) (pin 1)))
    (net (code 66) (name "Net-(J1-Pad35)")
      (node (ref J1) (pin 35)))
    (net (code 67) (name "Net-(U1-Pad27)")
      (node (ref U1) (pin 27)))
    (net (code 68) (name "Net-(U1-Pad64)")
      (node (ref U1) (pin 64)))
    (net (code 69) (name /VCAP3)
      (node (ref C17) (pin 1))
      (node (ref C16) (pin 1))
      (node (ref U1) (pin 55)))
    (net (code 70) (name /VCAP2)
      (node (ref U1) (pin 30))
      (node (ref C15) (pin 1)))
    (net (code 71) (name /VCAP1)
      (node (ref C13) (pin 1))
      (node (ref C14) (pin 1))
      (node (ref U1) (pin 28)))
    (net (code 72) (name "Net-(U1-Pad29)")
      (node (ref U1) (pin 29)))
    (net (code 73) (name /3ND)
      (node (ref R13) (pin 1))
      (node (ref U1) (pin 11))
      (node (ref C7) (pin 2)))
    (net (code 74) (name /4ND)
      (node (ref R17) (pin 1))
      (node (ref C8) (pin 2))
      (node (ref U1) (pin 9)))
    (net (code 75) (name /5ND)
      (node (ref R21) (pin 1))
      (node (ref C9) (pin 2))
      (node (ref U1) (pin 7)))
    (net (code 76) (name /6ND)
      (node (ref R26) (pin 1))
      (node (ref C10) (pin 2))
      (node (ref U1) (pin 5)))
    (net (code 77) (name /7ND)
      (node (ref U1) (pin 3))
      (node (ref R31) (pin 1))
      (node (ref C11) (pin 2)))
    (net (code 78) (name /8ND)
      (node (ref R35) (pin 1))
      (node (ref C12) (pin 2))
      (node (ref U1) (pin 1)))
    (net (code 79) (name /2ND)
      (node (ref U1) (pin 13))
      (node (ref R9) (pin 1))
      (node (ref C6) (pin 2)))
    (net (code 80) (name /2PD)
      (node (ref C6) (pin 1))
      (node (ref R7) (pin 1))
      (node (ref U1) (pin 14)))
    (net (code 81) (name /3PD)
      (node (ref U1) (pin 12))
      (node (ref R10) (pin 1))
      (node (ref C7) (pin 1)))
    (net (code 82) (name /4PD)
      (node (ref C8) (pin 1))
      (node (ref R14) (pin 1))
      (node (ref U1) (pin 10)))
    (net (code 83) (name /ADS_START)
      (node (ref R29) (pin 1))
      (node (ref L20) (pin 1)))
    (net (code 84) (name /ADS_NCS)
      (node (ref R27) (pin 1))
      (node (ref L7) (pin 1)))
    (net (code 85) (name /ADS_MOSI)
      (node (ref L4) (pin 1))
      (node (ref R25) (pin 1)))
    (net (code 86) (name /ADS_MISO)
      (node (ref L3) (pin 1))
      (node (ref R24) (pin 1)))
    (net (code 87) (name /ADS_SCK)
      (node (ref R22) (pin 1))
      (node (ref L5) (pin 1)))
    (net (code 88) (name /ADS_NRST)
      (node (ref L21) (pin 1))
      (node (ref R12) (pin 1)))
    (net (code 89) (name /ADS_NPWDN)
      (node (ref L11) (pin 1))
      (node (ref R11) (pin 1)))
    (net (code 90) (name /1ND)
      (node (ref R6) (pin 1))
      (node (ref C3) (pin 2))
      (node (ref U1) (pin 15)))
    (net (code 91) (name /1PD)
      (node (ref C3) (pin 1))
      (node (ref U1) (pin 16))
      (node (ref R3) (pin 1)))
    (net (code 92) (name /8PD)
      (node (ref U1) (pin 2))
      (node (ref R32) (pin 1))
      (node (ref C12) (pin 1)))
    (net (code 93) (name /VCAP4)
      (node (ref C18) (pin 1))
      (node (ref U1) (pin 26)))
    (net (code 94) (name /5PD)
      (node (ref R19) (pin 1))
      (node (ref C9) (pin 1))
      (node (ref U1) (pin 8)))
    (net (code 95) (name /6PD)
      (node (ref R23) (pin 1))
      (node (ref C10) (pin 1))
      (node (ref U1) (pin 6)))
    (net (code 96) (name /7PD)
      (node (ref R28) (pin 1))
      (node (ref C11) (pin 1))
      (node (ref U1) (pin 4)))
    (net (code 97) (name /VREFP)
      (node (ref C20) (pin 1))
      (node (ref C19) (pin 1))
      (node (ref U1) (pin 24)))
    (net (code 98) (name "Net-(D1-Pad6)")
      (node (ref D1) (pin 6)))
    (net (code 99) (name "Net-(D10-Pad6)")
      (node (ref D10) (pin 6)))
    (net (code 100) (name "Net-(D10-Pad2)")
      (node (ref D10) (pin 2)))
    (net (code 101) (name "Net-(D10-Pad1)")
      (node (ref D10) (pin 1)))
    (net (code 102) (name /IN3N)
      (node (ref D2) (pin 2))
      (node (ref R13) (pin 2))
      (node (ref J1) (pin 18)))
    (net (code 103) (name /IN3P)
      (node (ref D2) (pin 1))
      (node (ref R10) (pin 2))
      (node (ref J1) (pin 20)))
    (net (code 104) (name /IN2N)
      (node (ref J1) (pin 24))
      (node (ref D3) (pin 4))
      (node (ref R9) (pin 2)))
    (net (code 105) (name /IN2P)
      (node (ref D3) (pin 5))
      (node (ref R7) (pin 2))
      (node (ref J1) (pin 26)))
    (net (code 106) (name /IN1N)
      (node (ref R6) (pin 2))
      (node (ref J1) (pin 30))
      (node (ref D3) (pin 2)))
    (net (code 107) (name /IN1P)
      (node (ref J1) (pin 32))
      (node (ref D3) (pin 1))
      (node (ref R3) (pin 2)))
    (net (code 108) (name /BIAS)
      (node (ref D10) (pin 3))
      (node (ref R1) (pin 2))
      (node (ref C2) (pin 1))
      (node (ref D2) (pin 3))
      (node (ref J3) (pin 20))
      (node (ref J3) (pin 26))
      (node (ref D1) (pin 5))
      (node (ref J3) (pin 8))
      (node (ref J3) (pin 32))
      (node (ref D9) (pin 3))
      (node (ref D1) (pin 4))
      (node (ref J3) (pin 14))
      (node (ref J1) (pin 22))
      (node (ref J1) (pin 10))
      (node (ref J1) (pin 34))
      (node (ref J1) (pin 16))
      (node (ref J1) (pin 28))
      (node (ref D3) (pin 3))
      (node (ref D1) (pin 1))
      (node (ref D8) (pin 3))
      (node (ref D1) (pin 2)))
    (net (code 109) (name /IN4P)
      (node (ref J1) (pin 14))
      (node (ref R14) (pin 2))
      (node (ref D2) (pin 5)))
    (net (code 110) (name /IN8N)
      (node (ref R35) (pin 2))
      (node (ref J3) (pin 10))
      (node (ref D9) (pin 4)))
    (net (code 111) (name /IN8P)
      (node (ref R32) (pin 2))
      (node (ref D9) (pin 5))
      (node (ref J3) (pin 12)))
    (net (code 112) (name /IN7N)
      (node (ref D9) (pin 2))
      (node (ref J3) (pin 16))
      (node (ref R31) (pin 2)))
    (net (code 113) (name /IN7P)
      (node (ref J3) (pin 18))
      (node (ref R28) (pin 2))
      (node (ref D9) (pin 1)))
    (net (code 114) (name /IN6N)
      (node (ref R26) (pin 2))
      (node (ref D8) (pin 4))
      (node (ref J3) (pin 22)))
    (net (code 115) (name /IN6P)
      (node (ref D8) (pin 5))
      (node (ref J3) (pin 24))
      (node (ref R23) (pin 2)))
    (net (code 116) (name /IN5N)
      (node (ref J3) (pin 28))
      (node (ref D8) (pin 2))
      (node (ref R21) (pin 2)))
    (net (code 117) (name /IN5P)
      (node (ref R19) (pin 2))
      (node (ref D8) (pin 1))
      (node (ref J3) (pin 30)))
    (net (code 118) (name /IN4N)
      (node (ref D2) (pin 4))
      (node (ref J1) (pin 12))
      (node (ref R17) (pin 2)))
    (net (code 119) (name "Net-(U2-Pad4)")
      (node (ref U2) (pin 4)))))