aboutsummaryrefslogtreecommitdiffstats
path: root/hardware/kicad/SIMtrace.net
blob: 68130cd49e409e5e9058ae0e449cb736b101035e (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
(export (version D)
  (design
    (source /home/kevredon/simtrace/hardware/kicad/SIMtrace.sch)
    (date "So 17 Mai 2015 14:31:22 CEST")
    (tool "eeschema (2013-may-18)-stable"))
  (components
    (comp (ref R26)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 53A3E46E))
    (comp (ref R25)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 53A3E45D))
    (comp (ref R23)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4FB50700))
    (comp (ref IC4)
      (value CB3Q3244)
      (footprint SSOP20_BDQ)
      (libsource (lib SIMtrace) (part CB3Q3244))
      (sheetpath (names /) (tstamps /))
      (tstamp 4EB57076))
    (comp (ref C24)
      (value 100nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DFF9964))
    (comp (ref R22)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DFF9902))
    (comp (ref IC2)
      (value AP7332)
      (footprint SOT26)
      (libsource (lib SIMtrace) (part AP7332))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DFF8B97))
    (comp (ref R21)
      (value 10k1%)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DFF746C))
    (comp (ref R20)
      (value 10k1%)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DFF7469))
    (comp (ref R19)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DFF73B0))
    (comp (ref J2)
      (value JACK_2.5)
      (footprint JACK_2.5)
      (libsource (lib SIMtrace) (part JACK_2.5))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DCBE233))
    (comp (ref P4)
      (value SIM)
      (footprint SIM_AMPHENOL)
      (libsource (lib smartcard) (part ISO7816_NO))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC8FA06))
    (comp (ref C12)
      (value 2.2uF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC8F97A))
    (comp (ref C1)
      (value 2.2uF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC8F975))
    (comp (ref BT1)
      (value 4.5-6V)
      (footprint PIN_ARRAY_2X1)
      (libsource (lib device) (part BATTERY))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC804A6))
    (comp (ref R16)
      (value 10K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC7A441))
    (comp (ref Q2)
      (value BC847)
      (footprint SOT23_BC847)
      (libsource (lib SIMtrace) (part BC847))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC7A43A))
    (comp (ref Q1)
      (value BC847)
      (footprint SOT23_BC847)
      (libsource (lib SIMtrace) (part BC847))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC7A1CA))
    (comp (ref C5)
      (value 33pF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC79EDF))
    (comp (ref C13)
      (value 15pF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC79EDC))
    (comp (ref C11)
      (value 15pF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC79ED8))
    (comp (ref R1)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC79ED1))
    (comp (ref R3)
      (value 1K5)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC79ECE))
    (comp (ref R9)
      (value 27R)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC79EAD))
    (comp (ref R10)
      (value 27R)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC79EA7))
    (comp (ref R2)
      (value 10K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC79E9A))
    (comp (ref J1)
      (value USB-B_MINI)
      (footprint USB-MINI-B_UX60)
      (libsource (lib SIMtrace) (part USB-B_MINI))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CFAC6EA))
    (comp (ref FB1)
      (value FILTER)
      (footprint SM0805)
      (libsource (lib device) (part FILTER))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC79E48))
    (comp (ref R17)
      (value 10K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC799F2))
    (comp (ref C14)
      (value 4.7uF)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC6A5DE))
    (comp (ref C22)
      (value 1uF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC6A5D9))
    (comp (ref C21)
      (value 1uF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC6A5CB))
    (comp (ref C23)
      (value 100nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC68E45))
    (comp (ref FB2)
      (value FILTER)
      (footprint SM0805)
      (libsource (lib device) (part FILTER))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC68E1D))
    (comp (ref SW2)
      (value BOOTLOADER)
      (footprint PUSH_BUTTON)
      (libsource (lib device) (part SW_PUSH))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC6852C))
    (comp (ref JP2)
      (value ERASE)
      (footprint PIN_ARRAY_2X1)
      (libsource (lib device) (part JUMPER))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC683ED))
    (comp (ref JP1)
      (value TEST)
      (footprint PIN_ARRAY_2X1)
      (libsource (lib device) (part JUMPER))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC68259))
    (comp (ref C19)
      (value 100nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC664E0))
    (comp (ref C16)
      (value 100nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC664DD))
    (comp (ref C4)
      (value 100nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC66392))
    (comp (ref R18)
      (value 10K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC5A30D))
    (comp (ref U1)
      (value FLASH)
      (footprint SOC008_WIDE)
      (libsource (lib SIMtrace) (part FLASH_SPI))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC5A250))
    (comp (ref R14)
      (value 150R)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC555D0))
    (comp (ref R13)
      (value 150R)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CF7BAEE))
    (comp (ref P3)
      (value REBELSIM)
      (footprint FFC_REBELSIM)
      (libsource (lib smartcard) (part REBELSIM))
      (sheetpath (names /) (tstamps /))
      (tstamp 4DC51F05))
    (comp (ref C3)
      (value 100nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4D037E30))
    (comp (ref C20)
      (value 100nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4D020EDF))
    (comp (ref C15)
      (value 100nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4D020ED8))
    (comp (ref C6)
      (value 10nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4D020DD3))
    (comp (ref C10)
      (value 1nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4D020DCD))
    (comp (ref R11)
      (value 1K5)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4D020DC6))
    (comp (ref C9)
      (value 100nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4D020BEB))
    (comp (ref C7)
      (value 100nF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4D020BDE))
    (comp (ref SW1)
      (value RESET)
      (footprint PUSH_BUTTON)
      (libsource (lib device) (part SW_PUSH))
      (sheetpath (names /) (tstamps /))
      (tstamp 4D020733))
    (comp (ref R12)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4D0206C7))
    (comp (ref P1)
      (value JTAG)
      (footprint PIN_ARRAY_10X2)
      (libsource (lib SIMtrace) (part JTAG))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CFCD6C9))
    (comp (ref D5)
      (value GREEN)
      (footprint LED-0805)
      (libsource (lib device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CF5471F))
    (comp (ref D4)
      (value RED)
      (footprint LED-0805)
      (libsource (lib device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CF54717))
    (comp (ref IC3)
      (value ATSAM3S2B)
      (footprint TQFP_64)
      (libsource (lib at91sam7sxxx-au) (part AT91SAM7S512/256/128/64/321-AU))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CE84486))
    (comp (ref P2)
      (value DEBUG)
      (footprint PIN_ARRAY-6X1)
      (libsource (lib SIMtrace) (part DEBUG))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CE9ADCF))
    (comp (ref R8)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CE9A6AE))
    (comp (ref R7)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CE9A6A9))
    (comp (ref R6)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CE9A6A5))
    (comp (ref R5)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CE9A69A))
    (comp (ref R4)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CE9A68C))
    (comp (ref C18)
      (value 10pF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CE91633))
    (comp (ref C17)
      (value 10pF)
      (footprint SM0603)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CE9162F))
    (comp (ref X1)
      (value 18.432MHz)
      (footprint Q_49U3HMS)
      (libsource (lib device) (part CRYSTAL))
      (sheetpath (names /) (tstamps /))
      (tstamp 4CE915DE))
    (comp (ref IC1)
      (value FPF2109)
      (footprint SOT23-5)
      (datasheet https://www.fairchildsemi.com/ds/FP/FPF2110.pdf)
      (libsource (lib SIMtrace) (part FPF210X))
      (sheetpath (names /) (tstamps /))
      (tstamp 526C41E4))
    (comp (ref D1)
      (value MBR0530)
      (footprint SOD123)
      (libsource (lib SIMtrace) (part SCHOTTKY))
      (sheetpath (names /) (tstamps /))
      (tstamp 526C4CBB))
    (comp (ref D2)
      (value MBR0530)
      (footprint SOD123)
      (libsource (lib SIMtrace) (part SCHOTTKY))
      (sheetpath (names /) (tstamps /))
      (tstamp 526C4CDD))
    (comp (ref D3)
      (value MBR0530)
      (footprint SOD123)
      (libsource (lib SIMtrace) (part SCHOTTKY))
      (sheetpath (names /) (tstamps /))
      (tstamp 526C4CEC))
    (comp (ref D6)
      (value MBR0530)
      (footprint SOD123)
      (libsource (lib SIMtrace) (part SCHOTTKY))
      (sheetpath (names /) (tstamps /))
      (tstamp 526C4D13))
    (comp (ref R24)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 526C5026))
    (comp (ref R15)
      (value 100K)
      (footprint SM0603)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 526C5035)))
  (libparts
    (libpart (lib device) (part BATTERY)
      (fields
        (field (name Reference) BT)
        (field (name Value) BATTERY)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name +) (type passive))
        (pin (num 2) (name -) (type passive))))
    (libpart (lib device) (part C)
      (description "Condensateur non polarise")
      (footprints
        (fp SM*)
        (fp C?)
        (fp C1-1))
      (fields
        (field (name Reference) C)
        (field (name Value) C)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part CRYSTAL)
      (fields
        (field (name Reference) X)
        (field (name Value) CRYSTAL)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib device) (part FILTER)
      (description "Filtre EMI")
      (fields
        (field (name Reference) FB)
        (field (name Value) FILTER)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib device) (part JUMPER)
      (fields
        (field (name Reference) JP)
        (field (name Value) JUMPER)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib device) (part LED)
      (footprints
        (fp LED-3MM)
        (fp LED-5MM)
        (fp LED-10MM)
        (fp LED-0603)
        (fp LED-0805)
        (fp LED-1206)
        (fp LEDV))
      (fields
        (field (name Reference) D)
        (field (name Value) LED)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name A) (type passive))
        (pin (num 2) (name K) (type passive))))
    (libpart (lib device) (part R)
      (description Resistance)
      (footprints
        (fp R?)
        (fp SM0603)
        (fp SM0805)
        (fp R?-*)
        (fp SM1206))
      (fields
        (field (name Reference) R)
        (field (name Value) R)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part SW_PUSH)
      (description "Push Button")
      (fields
        (field (name Reference) SW)
        (field (name Value) SW_PUSH)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib at91sam7sxxx-au) (part AT91SAM7S512/256/128/64/321-AU)
      (fields
        (field (name Reference) IC)
        (field (name Value) AT91SAM7S512/256/128/64/321-AU)
        (field (name Footprint) at91sam7sxxx-au-LQFP64))
      (pins
        (pin (num 1) (name ADVREF) (type passive))
        (pin (num 2) (name GND@0) (type power_in))
        (pin (num 3) (name AD4) (type passive))
        (pin (num 4) (name AD5) (type passive))
        (pin (num 5) (name AD6) (type passive))
        (pin (num 6) (name AD7) (type passive))
        (pin (num 7) (name VDDIN) (type power_in))
        (pin (num 8) (name VDDOUT) (type power_out))
        (pin (num 9) (name PA17/TD/PCK1/AD0) (type BiDi))
        (pin (num 10) (name PA18/RD/PCK2/AD1) (type BiDi))
        (pin (num 11) (name PA21/RXD1/PCK1) (type BiDi))
        (pin (num 12) (name VDDCORE@0) (type power_in))
        (pin (num 13) (name PA19/RK/FIQ) (type BiDi))
        (pin (num 14) (name PA22/TXD1/NPCS3) (type BiDi))
        (pin (num 15) (name PA23/SCK1/PWM0) (type BiDi))
        (pin (num 16) (name PA20/RF/IRQ0/AD3) (type BiDi))
        (pin (num 17) (name GND@1) (type power_in))
        (pin (num 18) (name VDDIO@0) (type power_in))
        (pin (num 19) (name PA16/TK/TIOB1) (type BiDi))
        (pin (num 20) (name PA15/TF/TIOA1) (type BiDi))
        (pin (num 21) (name PA14/SPCK/PWM3) (type BiDi))
        (pin (num 22) (name PA13/MOSI/PWM2) (type BiDi))
        (pin (num 23) (name PA24/RTS1/PWM1) (type BiDi))
        (pin (num 24) (name VDDCORE@1) (type power_in))
        (pin (num 25) (name PA25/CTS1/PWM2) (type BiDi))
        (pin (num 26) (name PA26/DCD1/TIOA2) (type BiDi))
        (pin (num 27) (name PA12/MISO/PWM1) (type BiDi))
        (pin (num 28) (name PA11/NPCS0/PWM0) (type BiDi))
        (pin (num 29) (name PA10/DTXD/NPCS2) (type BiDi))
        (pin (num 30) (name PA9/DRXD/NPCS1) (type BiDi))
        (pin (num 31) (name PA8/CTS0/ADTRG) (type BiDi))
        (pin (num 32) (name PA7/RTS0/PWM3) (type BiDi))
        (pin (num 33) (name TDI) (type input))
        (pin (num 34) (name PA6/TXD0/PCK0) (type BiDi))
        (pin (num 35) (name PA5/RXD0/NPCS3) (type BiDi))
        (pin (num 36) (name PA4/TWCK/TLCK0) (type BiDi))
        (pin (num 37) (name PA27/DTR1/TIOB2) (type BiDi))
        (pin (num 38) (name PA28/DSR1/TCLK1) (type BiDi))
        (pin (num 39) (name /NRST) (type BiDi))
        (pin (num 40) (name TST) (type input))
        (pin (num 41) (name PA29/RI1/TCLK2) (type BiDi))
        (pin (num 42) (name PA30/IRQ1/NPCS2) (type BiDi))
        (pin (num 43) (name PA3/TWD/NPCS3) (type BiDi))
        (pin (num 44) (name PA2/PWM2/SCK0) (type BiDi))
        (pin (num 45) (name VDDIO@1) (type power_in))
        (pin (num 46) (name GND@2) (type power_in))
        (pin (num 47) (name PA1/PWM1/TIOB0) (type BiDi))
        (pin (num 48) (name PA0/PWM0/TIOA0) (type BiDi))
        (pin (num 49) (name TDO) (type output))
        (pin (num 50) (name JTAGSEL) (type input))
        (pin (num 51) (name TMS) (type input))
        (pin (num 52) (name PA31/NPCS1/PCK2) (type BiDi))
        (pin (num 53) (name TCK) (type input))
        (pin (num 54) (name VDDCORE@2) (type power_in))
        (pin (num 55) (name ERASE) (type input))
        (pin (num 56) (name DDM) (type passive))
        (pin (num 57) (name DDP) (type passive))
        (pin (num 58) (name VDDIO@2) (type power_in))
        (pin (num 59) (name VDDFLASH) (type power_in))
        (pin (num 60) (name GND@3) (type power_in))
        (pin (num 61) (name XOUT) (type passive))
        (pin (num 62) (name XIN) (type passive))
        (pin (num 63) (name PLLRC) (type passive))
        (pin (num 64) (name VDDPLL) (type power_in))))
    (libpart (lib SIMtrace) (part AP7332)
      (fields
        (field (name Reference) IC)
        (field (name Value) AP7332)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name VOUT2) (type power_out))
        (pin (num 2) (name GND) (type power_in))
        (pin (num 3) (name EN2) (type input))
        (pin (num 4) (name EN1) (type input))
        (pin (num 5) (name VIN) (type power_in))
        (pin (num 6) (name VOUT1) (type power_out))))
    (libpart (lib SIMtrace) (part BC847)
      (docs transistors/bipolar/*.*)
      (fields
        (field (name Reference) Q)
        (field (name Value) BC847)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name B) (type input))
        (pin (num 2) (name E) (type passive))
        (pin (num 3) (name C) (type passive))))
    (libpart (lib SIMtrace) (part CB3Q3244)
      (description SN74CB3Q3244)
      (fields
        (field (name Reference) IC)
        (field (name Value) CB3Q3244)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name /1OE) (type input))
        (pin (num 2) (name 1A1) (type BiDi))
        (pin (num 3) (name 2B4) (type BiDi))
        (pin (num 4) (name 1A2) (type BiDi))
        (pin (num 5) (name 2B3) (type BiDi))
        (pin (num 6) (name 1A3) (type BiDi))
        (pin (num 7) (name 2B2) (type BiDi))
        (pin (num 8) (name 1A4) (type BiDi))
        (pin (num 9) (name 2B1) (type BiDi))
        (pin (num 10) (name GND) (type power_in))
        (pin (num 11) (name 2A1) (type BiDi))
        (pin (num 12) (name 1B4) (type BiDi))
        (pin (num 13) (name 2A2) (type BiDi))
        (pin (num 14) (name 1B3) (type BiDi))
        (pin (num 15) (name 2A3) (type BiDi))
        (pin (num 16) (name 1B2) (type BiDi))
        (pin (num 17) (name 2A4) (type BiDi))
        (pin (num 18) (name 1B1) (type BiDi))
        (pin (num 19) (name /2OE) (type input))
        (pin (num 20) (name VCC) (type power_in))))
    (libpart (lib SIMtrace) (part DEBUG)
      (fields
        (field (name Reference) P)
        (field (name Value) DEBUG)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name GND) (type power_in))
        (pin (num 2) (name CTS) (type output))
        (pin (num 3) (name VCC) (type power_in))
        (pin (num 4) (name TXD) (type output))
        (pin (num 5) (name RXD) (type input))
        (pin (num 6) (name RTS) (type input))))
    (libpart (lib SIMtrace) (part FLASH_SPI)
      (fields
        (field (name Reference) U)
        (field (name Value) FLASH_SPI)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name /CS) (type input))
        (pin (num 2) (name SO) (type output))
        (pin (num 3) (name /WP) (type output))
        (pin (num 4) (name GND) (type power_in))
        (pin (num 5) (name SI) (type input))
        (pin (num 6) (name SCK) (type input))
        (pin (num 7) (name /HOLD) (type input))
        (pin (num 8) (name VCC) (type power_in))))
    (libpart (lib SIMtrace) (part FPF210X)
      (description "Fairchild Semiconductors FPF2108-FPF2110 IC-switch")
      (fields
        (field (name Reference) IC)
        (field (name Value) FPF210X)
        (field (name Footprint) SOT23-5)
        (field (name Datasheet) https://www.fairchildsemi.com/ds/FP/FPF2110.pdf))
      (pins
        (pin (num 1) (name VIN) (type power_in))
        (pin (num 2) (name GND) (type power_in))
        (pin (num 3) (name ON) (type input))
        (pin (num 4) (name FLAGB) (type input))
        (pin (num 5) (name VOUT) (type power_out))))
    (libpart (lib SIMtrace) (part JACK_2.5)
      (fields
        (field (name Reference) J)
        (field (name Value) JACK_2.5)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name SLEEVE) (type passive))
        (pin (num 2) (name TIP) (type passive))
        (pin (num 3) (name RING) (type passive))))
    (libpart (lib SIMtrace) (part JTAG)
      (description "symbole general de connecteur")
      (fields
        (field (name Reference) P)
        (field (name Value) JTAG)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name VREF) (type passive))
        (pin (num 2) (name VCC) (type passive))
        (pin (num 3) (name nTRST) (type passive))
        (pin (num 4) (name GND) (type passive))
        (pin (num 5) (name TDI) (type passive))
        (pin (num 6) (name GND) (type passive))
        (pin (num 7) (name TMS) (type passive))
        (pin (num 8) (name GND) (type passive))
        (pin (num 9) (name TCK) (type passive))
        (pin (num 10) (name GND) (type passive))
        (pin (num 11) (name RTCK) (type passive))
        (pin (num 12) (name GND) (type passive))
        (pin (num 13) (name TDO) (type passive))
        (pin (num 14) (name GND) (type passive))
        (pin (num 15) (name nSRST) (type passive))
        (pin (num 16) (name GND) (type passive))
        (pin (num 17) (name DBGRQ) (type passive))
        (pin (num 18) (name GND) (type passive))
        (pin (num 19) (name DGBACK) (type passive))
        (pin (num 20) (name GND) (type passive))))
    (libpart (lib SIMtrace) (part SCHOTTKY)
      (description "Diode schottky")
      (footprints
        (fp D?)
        (fp S*))
      (fields
        (field (name Reference) D)
        (field (name Value) SCHOTTKY)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive))))
    (libpart (lib SIMtrace) (part USB-B_MINI)
      (fields
        (field (name Reference) J)
        (field (name Value) USB-B_MINI)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name VCC) (type power_out))
        (pin (num 2) (name D-) (type BiDi))
        (pin (num 3) (name D+) (type BiDi))
        (pin (num 4) (name ID) (type passive))
        (pin (num 5) (name GND) (type power_in))))
    (libpart (lib smartcard) (part ISO7816_NO)
      (description "smart card with normally closed presence switch")
      (fields
        (field (name Reference) P)
        (field (name Value) ISO7816_NO))
      (pins
        (pin (num C1) (name VCC) (type power_in))
        (pin (num C2) (name RST) (type input))
        (pin (num C3) (name CLK) (type input))
        (pin (num C4) (name RFU) (type unspc))
        (pin (num C5) (name GND) (type power_in))
        (pin (num C6) (name VPP) (type power_in))
        (pin (num C7) (name I/O) (type BiDi))
        (pin (num C8) (name RFU) (type unspc))
        (pin (num SW1) (name ~) (type passive))
        (pin (num SW2) (name ~) (type passive))))
    (libpart (lib smartcard) (part REBELSIM)
      (description "ymbole general de connecteur")
      (fields
        (field (name Reference) P)
        (field (name Value) REBELSIM))
      (pins
        (pin (num 1) (name VCC) (type power_out))
        (pin (num 2) (name RST) (type output))
        (pin (num 3) (name CLK) (type output))
        (pin (num 4) (name I/O) (type BiDi))
        (pin (num 5) (name VPP) (type power_out))
        (pin (num 6) (name GND) (type power_out)))))
  (libraries
    (library (logical device)
      (uri /usr/share/kicad/library/device.lib))
    (library (logical at91sam7sxxx-au)
      (uri lib/at91sam7sxxx-au.lib))
    (library (logical SIMtrace)
      (uri lib/SIMtrace.lib))
    (library (logical smartcard)
      (uri lib/smartcard.lib)))
  (nets
    (net (code 1) (name /TEST)
      (node (ref JP1) (pin 1))
      (node (ref IC3) (pin 40)))
    (net (code 2) (name /SC_SW)
      (node (ref IC3) (pin 16))
      (node (ref IC4) (pin 1)))
    (net (code 3) (name GND)
      (node (ref C18) (pin 2))
      (node (ref IC1) (pin 2))
      (node (ref R15) (pin 2))
      (node (ref R24) (pin 2))
      (node (ref C17) (pin 2))
      (node (ref P4) (pin C5))
      (node (ref J1) (pin 5))
      (node (ref R17) (pin 2))
      (node (ref IC3) (pin 46))
      (node (ref C13) (pin 2))
      (node (ref C11) (pin 2))
      (node (ref P2) (pin 1))
      (node (ref IC3) (pin 17))
      (node (ref IC3) (pin 4))
      (node (ref IC3) (pin 3))
      (node (ref IC3) (pin 2))
      (node (ref IC3) (pin 5))
      (node (ref IC3) (pin 60))
      (node (ref P1) (pin 12))
      (node (ref P1) (pin 18))
      (node (ref P1) (pin 4))
      (node (ref P1) (pin 16))
      (node (ref P1) (pin 14))
      (node (ref P1) (pin 20))
      (node (ref P1) (pin 10))
      (node (ref P1) (pin 8))
      (node (ref P1) (pin 6))
      (node (ref C9) (pin 2))
      (node (ref SW1) (pin 2))
      (node (ref C7) (pin 2))
      (node (ref C10) (pin 1))
      (node (ref C6) (pin 1))
      (node (ref C15) (pin 2))
      (node (ref C20) (pin 2))
      (node (ref C24) (pin 2))
      (node (ref U1) (pin 4))
      (node (ref R23) (pin 1))
      (node (ref C21) (pin 2))
      (node (ref C22) (pin 2))
      (node (ref P4) (pin SW2))
      (node (ref C14) (pin 2))
      (node (ref C12) (pin 2))
      (node (ref C1) (pin 2))
      (node (ref C19) (pin 2))
      (node (ref BT1) (pin 2))
      (node (ref C23) (pin 2))
      (node (ref P3) (pin 6))
      (node (ref C3) (pin 2))
      (node (ref IC2) (pin 2))
      (node (ref C4) (pin 2))
      (node (ref C16) (pin 2))
      (node (ref IC4) (pin 10))
      (node (ref Q2) (pin 2))
      (node (ref J2) (pin 1))
      (node (ref SW2) (pin 2))
      (node (ref R19) (pin 1))
      (node (ref R21) (pin 1)))
    (net (code 4) (name /I/O_SIM)
      (node (ref IC3) (pin 34))
      (node (ref IC4) (pin 9))
      (node (ref P4) (pin C7))
      (node (ref IC3) (pin 47))
      (node (ref R26) (pin 2)))
    (net (code 5) (name /CLK_SIM)
      (node (ref IC3) (pin 44))
      (node (ref P4) (pin C3))
      (node (ref R25) (pin 2))
      (node (ref IC3) (pin 36))
      (node (ref IC4) (pin 14)))
    (net (code 6) (name /RST_SIM)
      (node (ref IC4) (pin 16))
      (node (ref IC3) (pin 32))
      (node (ref P4) (pin C2)))
    (net (code 7) (name /SCK)
      (node (ref U1) (pin 6))
      (node (ref IC3) (pin 21)))
    (net (code 8) (name "")
      (node (ref R18) (pin 1))
      (node (ref U1) (pin 7)))
    (net (code 9) (name /CS)
      (node (ref IC3) (pin 28))
      (node (ref U1) (pin 1)))
    (net (code 10) (name /MISO)
      (node (ref U1) (pin 2))
      (node (ref IC3) (pin 27)))
    (net (code 11) (name "")
      (node (ref P4) (pin C8)))
    (net (code 12) (name "")
      (node (ref R16) (pin 1))
      (node (ref Q2) (pin 1)))
    (net (code 13) (name "")
      (node (ref D3) (pin 1))
      (node (ref C14) (pin 1))
      (node (ref IC2) (pin 4))
      (node (ref IC2) (pin 5))
      (node (ref D2) (pin 1)))
    (net (code 14) (name "")
      (node (ref IC3) (pin 6))
      (node (ref R20) (pin 2))
      (node (ref R21) (pin 2)))
    (net (code 15) (name /UDP_PUP)
      (node (ref R1) (pin 2))
      (node (ref Q1) (pin 1))
      (node (ref D1) (pin 2))
      (node (ref Q2) (pin 3)))
    (net (code 16) (name "")
      (node (ref P4) (pin C4)))
    (net (code 17) (name /A-B-DETECT)
      (node (ref IC3) (pin 41))
      (node (ref J1) (pin 4))
      (node (ref R2) (pin 1)))
    (net (code 18) (name "")
      (node (ref R3) (pin 2))
      (node (ref Q1) (pin 2)))
    (net (code 19) (name /DDP)
      (node (ref C13) (pin 1))
      (node (ref IC3) (pin 57))
      (node (ref R10) (pin 1)))
    (net (code 20) (name "")
      (node (ref J1) (pin 3))
      (node (ref C5) (pin 2))
      (node (ref R10) (pin 2))
      (node (ref R3) (pin 1)))
    (net (code 21) (name "")
      (node (ref P2) (pin 2))
      (node (ref P2) (pin 6)))
    (net (code 22) (name "")
      (node (ref P2) (pin 3)))
    (net (code 23) (name /TDO)
      (node (ref IC3) (pin 49))
      (node (ref R8) (pin 1))
      (node (ref P1) (pin 13)))
    (net (code 24) (name "")
      (node (ref IC3) (pin 50)))
    (net (code 25) (name "")
      (node (ref JP2) (pin 2))
      (node (ref IC3) (pin 55)))
    (net (code 26) (name "")
      (node (ref IC3) (pin 37)))
    (net (code 27) (name "")
      (node (ref IC3) (pin 19))
      (node (ref R16) (pin 2)))
    (net (code 28) (name /DTXD)
      (node (ref P2) (pin 5))
      (node (ref J2) (pin 3))
      (node (ref IC3) (pin 29)))
    (net (code 29) (name "")
      (node (ref C18) (pin 1))
      (node (ref IC3) (pin 62))
      (node (ref X1) (pin 2)))
    (net (code 30) (name "")
      (node (ref R22) (pin 2))
      (node (ref IC1) (pin 4)))
    (net (code 31) (name //RESET)
      (node (ref P1) (pin 15))
      (node (ref R12) (pin 2))
      (node (ref SW1) (pin 1))
      (node (ref D1) (pin 1))
      (node (ref IC3) (pin 39)))
    (net (code 32) (name /USBVCC)
      (node (ref D2) (pin 2))
      (node (ref FB1) (pin 2)))
    (net (code 33) (name "")
      (node (ref D3) (pin 2))
      (node (ref BT1) (pin 1)))
    (net (code 34) (name "")
      (node (ref D6) (pin 2))
      (node (ref R24) (pin 1))
      (node (ref IC2) (pin 1))
      (node (ref C21) (pin 1)))
    (net (code 35) (name "")
      (node (ref IC3) (pin 42)))
    (net (code 36) (name "")
      (node (ref P1) (pin 19)))
    (net (code 37) (name "")
      (node (ref P1) (pin 17)))
    (net (code 38) (name "")
      (node (ref IC3) (pin 43)))
    (net (code 39) (name /I/O_PHONE)
      (node (ref IC4) (pin 11))
      (node (ref IC3) (pin 14))
      (node (ref P3) (pin 4))
      (node (ref IC3) (pin 11)))
    (net (code 40) (name /CLK_PHONE)
      (node (ref P3) (pin 3))
      (node (ref IC4) (pin 6))
      (node (ref IC3) (pin 15))
      (node (ref IC3) (pin 38)))
    (net (code 41) (name /VCC_SIM)
      (node (ref IC1) (pin 5))
      (node (ref D6) (pin 1))
      (node (ref R15) (pin 1))
      (node (ref C24) (pin 1))
      (node (ref P4) (pin C1)))
    (net (code 42) (name "")
      (node (ref C6) (pin 2))
      (node (ref R11) (pin 2)))
    (net (code 43) (name "")
      (node (ref P1) (pin 3))
      (node (ref R4) (pin 1)))
    (net (code 44) (name /MOSI)
      (node (ref IC3) (pin 22))
      (node (ref U1) (pin 5)))
    (net (code 45) (name /WP)
      (node (ref R17) (pin 1))
      (node (ref U1) (pin 3))
      (node (ref IC3) (pin 20)))
    (net (code 46) (name /TMS)
      (node (ref R6) (pin 1))
      (node (ref IC3) (pin 51))
      (node (ref P1) (pin 7)))
    (net (code 47) (name "")
      (node (ref IC3) (pin 61))
      (node (ref X1) (pin 1))
      (node (ref C17) (pin 1)))
    (net (code 48) (name /BOOTLOADER)
      (node (ref IC3) (pin 52))
      (node (ref SW2) (pin 1)))
    (net (code 49) (name /I/O_SW)
      (node (ref IC4) (pin 19))
      (node (ref IC3) (pin 13)))
    (net (code 50) (name "")
      (node (ref IC3) (pin 63))
      (node (ref C10) (pin 2))
      (node (ref R11) (pin 1)))
    (net (code 51) (name /SW_SIM)
      (node (ref IC3) (pin 31))
      (node (ref P4) (pin SW1)))
    (net (code 52) (name /SIM_PWEN)
      (node (ref IC2) (pin 3))
      (node (ref IC3) (pin 35)))
    (net (code 53) (name "")
      (node (ref R14) (pin 2))
      (node (ref D5) (pin 1)))
    (net (code 54) (name /LED_G)
      (node (ref IC3) (pin 10))
      (node (ref D5) (pin 2)))
    (net (code 55) (name "")
      (node (ref D4) (pin 1))
      (node (ref R13) (pin 2)))
    (net (code 56) (name /LED_R)
      (node (ref D4) (pin 2))
      (node (ref IC3) (pin 9)))
    (net (code 57) (name 3V3)
      (node (ref IC4) (pin 20))
      (node (ref R2) (pin 2))
      (node (ref JP1) (pin 2))
      (node (ref IC2) (pin 6))
      (node (ref IC3) (pin 59))
      (node (ref FB2) (pin 2))
      (node (ref R1) (pin 1))
      (node (ref Q1) (pin 3))
      (node (ref R18) (pin 2))
      (node (ref R26) (pin 1))
      (node (ref JP2) (pin 1))
      (node (ref R13) (pin 1))
      (node (ref C4) (pin 1))
      (node (ref U1) (pin 8))
      (node (ref C22) (pin 1))
      (node (ref C3) (pin 1))
      (node (ref C1) (pin 1))
      (node (ref R25) (pin 1))
      (node (ref R14) (pin 1))
      (node (ref R4) (pin 2))
      (node (ref R5) (pin 2))
      (node (ref IC3) (pin 7))
      (node (ref C7) (pin 1))
      (node (ref P1) (pin 2))
      (node (ref P1) (pin 1))
      (node (ref R12) (pin 1))
      (node (ref C9) (pin 1))
      (node (ref IC3) (pin 45))
      (node (ref R6) (pin 2))
      (node (ref R7) (pin 2))
      (node (ref R8) (pin 2))
      (node (ref IC3) (pin 58))
      (node (ref IC3) (pin 48))
      (node (ref IC3) (pin 18)))
    (net (code 58) (name /TDI)
      (node (ref IC3) (pin 33))
      (node (ref R5) (pin 1))
      (node (ref P1) (pin 5)))
    (net (code 59) (name /TCK)
      (node (ref IC3) (pin 53))
      (node (ref P1) (pin 9))
      (node (ref P1) (pin 11))
      (node (ref R7) (pin 1)))
    (net (code 60) (name /VCC_PHONE)
      (node (ref IC3) (pin 25))
      (node (ref R19) (pin 2))
      (node (ref IC1) (pin 1))
      (node (ref R20) (pin 1))
      (node (ref P3) (pin 1))
      (node (ref R22) (pin 1)))
    (net (code 61) (name "")
      (node (ref R9) (pin 2))
      (node (ref J1) (pin 2))
      (node (ref C5) (pin 1)))
    (net (code 62) (name "")
      (node (ref J1) (pin 1))
      (node (ref FB1) (pin 1)))
    (net (code 63) (name /DDM)
      (node (ref C11) (pin 1))
      (node (ref IC3) (pin 56))
      (node (ref R9) (pin 1)))
    (net (code 64) (name "")
      (node (ref FB2) (pin 1))
      (node (ref C23) (pin 1))
      (node (ref IC3) (pin 1)))
    (net (code 65) (name /DRXD)
      (node (ref P2) (pin 4))
      (node (ref J2) (pin 2))
      (node (ref IC3) (pin 30)))
    (net (code 66) (name /RST_PHONE)
      (node (ref R23) (pin 2))
      (node (ref IC3) (pin 23))
      (node (ref P3) (pin 2))
      (node (ref IC4) (pin 4)))
    (net (code 67) (name /VPP_SIM)
      (node (ref P4) (pin C6))
      (node (ref IC4) (pin 12)))
    (net (code 68) (name /VPP_PHONE)
      (node (ref P3) (pin 5))
      (node (ref IC4) (pin 8)))
    (net (code 69) (name /VCC_FWD)
      (node (ref IC1) (pin 3))
      (node (ref IC3) (pin 26)))
    (net (code 70) (name +1.8V)
      (node (ref C12) (pin 1))
      (node (ref C16) (pin 1))
      (node (ref C19) (pin 1))
      (node (ref IC3) (pin 8))
      (node (ref C20) (pin 1))
      (node (ref IC3) (pin 24))
      (node (ref IC3) (pin 12))
      (node (ref C15) (pin 1))
      (node (ref IC3) (pin 64))
      (node (ref IC3) (pin 54)))))