-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMAX2769FT2232H.net
1807 lines (1807 loc) · 67.1 KB
/
MAX2769FT2232H.net
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
(export (version D)
(design
(source C:\Users\Kyle\Documents\KiCAD\MAX2769FT2232H\MAX2769FT2232H.sch)
(date "12/01/2021 10:47:06")
(tool "Eeschema (5.1.8)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title MAX2769<->FT2232H)
(company)
(rev v01)
(date 2020-07-20)
(source MAX2769FT2232H.sch)
(comment (number 1) (value creativecommons.org/licenses/by/4.0/))
(comment (number 2) (value "License: CC BY 4.0"))
(comment (number 3) (value "Maxim 2769 To FT2232H USB Converter (L1 IF Stream)"))
(comment (number 4) (value "Author: W. Kyle Gilbertson")))))
(components
(comp (ref C1)
(value "27 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 27PF 50V C0G/NP0 0402 5%")
(field (name Digi-Key) 490-12651-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC6C16D))
(comp (ref C2)
(value "470 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 470PF 50V C0G/NP0 0402 10%")
(field (name Digi-Key) 490-6242-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC6D207))
(comp (ref C3)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC744F3))
(comp (ref C4)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC773A4))
(comp (ref C5)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC78B45))
(comp (ref C6)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC79469))
(comp (ref C7)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC7A767))
(comp (ref C9)
(value "470 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 470PF 50V C0G/NP0 0402 10%")
(field (name Digi-Key) 490-6242-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC80865))
(comp (ref C10)
(value "10 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 10000PF 10V X7R 0402 10%")
(field (name Digi-Key) 399-7759-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC827E9))
(comp (ref C11)
(value "10 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 10000PF 10V X7R 0402 10%")
(field (name Digi-Key) 399-7759-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC846FC))
(comp (ref C12)
(value "470 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 470PF 50V C0G/NP0 0402 10%")
(field (name Digi-Key) 490-6242-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC8656D))
(comp (ref C13)
(value "100 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 100PF 50V C0G/NP0 0402 5%")
(field (name Digi-Key) 399-3194-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC89A96))
(comp (ref C14)
(value "100 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 100PF 50V C0G/NP0 0402 5%")
(field (name Digi-Key) 399-3194-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC8D52D))
(comp (ref C15)
(value "100 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 100PF 50V C0G/NP0 0402 5%")
(field (name Digi-Key) 399-3194-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC92E55))
(comp (ref C16)
(value "100 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 100PF 50V C0G/NP0 0402 5%")
(field (name Digi-Key) 399-3194-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC98B69))
(comp (ref C17)
(value "100 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 100PF 50V C0G/NP0 0402 5%")
(field (name Digi-Key) 399-3194-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5ECA1992))
(comp (ref J1)
(value Conn_Coaxial)
(footprint MAX2769FT2232H:SMA_Amphenol_132203-12_Horizontal)
(datasheet " ~")
(fields
(field (name Description) "CONN SMA JACK R/A 50 OHM PCB")
(field (name Digi-Key) ACX1232-ND))
(libsource (lib MAX2769FT2232H) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /) (tstamps /))
(tstamp 5ECBFA8E))
(comp (ref C20)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5ECD287C))
(comp (ref C19)
(value "100 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 100PF 50V C0G/NP0 0402 5%")
(field (name Digi-Key) 399-3194-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5ECD288B))
(comp (ref L1)
(value "33 nH")
(footprint MAX2769FT2232H:L_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "FIXED IND 33NH 350MA 580 MOHM")
(field (name Digi-Key) 490-2629-1-ND))
(libsource (lib MAX2769FT2232H) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5ECDB30B))
(comp (ref C24)
(value "1.0 uF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 1UF 6.3V X6S 0402")
(field (name Digi-Key) 490-12233-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EE21E88))
(comp (ref C28)
(value "1.0 uF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 1UF 6.3V X6S 0402")
(field (name Digi-Key) 490-12233-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EE2DF68))
(comp (ref C23)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EE697AC))
(comp (ref C27)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EE70D02))
(comp (ref C22)
(value NC)
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 10000PF 10V X7R 0402")
(field (name Digi-Key) 399-7759-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EEC8C6E))
(comp (ref C26)
(value NC)
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 10000PF 10V X7R 0402")
(field (name Digi-Key) 399-7759-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EEEBD2B))
(comp (ref C29)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5ED0054F))
(comp (ref C25)
(value "1.0 uF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 1UF 6.3V X6S 0402")
(field (name Digi-Key) 490-12233-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5ED466FD))
(comp (ref C21)
(value "1.0 uF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 1UF 6.3V X6S 0402")
(field (name Digi-Key) 490-12233-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EE15DA1))
(comp (ref R3)
(value NC)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 0 OHM JUMPER 0603")
(field (name Digi-Key) 2019-RK73Z1JTTDCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FAC46C7))
(comp (ref R2)
(value 0)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 0 OHM JUMPER 0603")
(field (name Digi-Key) 2019-RK73Z1JTTDCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB3D107))
(comp (ref R1)
(value 20k)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 20K OHM 1% 1/10W 0603")
(field (name Digi-Key) 2019-RK73H1JTTD2002FCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB5632A))
(comp (ref J3)
(value RF_Shield_One_Piece)
(footprint MAX2769FT2232H:Laird_Technologies_BMI-S-103_26.21x26.21mm)
(datasheet ~)
(fields
(field (name Description) "RF SHIELD 1.032\"X1.032\" SLDR 1PC")
(field (name Digi-Key) 903-1008-1-ND))
(libsource (lib MAX2769FT2232H) (part RF_Shield_One_Piece) (description "One-piece EMI RF shielding cabinet"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7DCFA0))
(comp (ref C46)
(value "470 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 470PF 50V C0G/NP0 0402 10%")
(field (name Digi-Key) 490-6242-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F85952A))
(comp (ref J4)
(value Conn_Coaxial)
(footprint MAX2769FT2232H:MMCX_Molex_73415-1471_Vertical)
(datasheet " ~")
(fields
(field (name Description) "CONN MMCX JACK STR 50 OHM PCB")
(field (name Digi-Key) ARF1904-ND))
(libsource (lib MAX2769FT2232H) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F8E4CB2))
(comp (ref R5)
(value 0)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 0 OHM JUMPER 0603")
(field (name Digi-Key) 2019-RK73Z1JTTDCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FCC758A))
(comp (ref R6)
(value NC)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 0 OHM JUMPER 0603")
(field (name Digi-Key) 2019-RK73Z1JTTDCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FCC7592))
(comp (ref R7)
(value 0)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 0 OHM JUMPER 0603")
(field (name Digi-Key) 2019-RK73Z1JTTDCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FCEDC2A))
(comp (ref R8)
(value NC)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 0 OHM JUMPER 0603")
(field (name Digi-Key) 2019-RK73Z1JTTDCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 600FC682))
(comp (ref R9)
(value NC)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 0 OHM JUMPER 0603")
(field (name Digi-Key) 2019-RK73Z1JTTDCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 601DD071))
(comp (ref R10)
(value NC)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 0 OHM JUMPER 0603")
(field (name Digi-Key) 2019-RK73Z1JTTDCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 602931D0))
(comp (ref R4)
(value 0)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 0 OHM JUMPER 0603")
(field (name Digi-Key) 2019-RK73Z1JTTDCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6037DDB8))
(comp (ref TP2)
(value TestPoint)
(footprint MAX2769FT2232H:TestPoint_Pad_D1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 6084B848))
(comp (ref TP1)
(value TestPoint)
(footprint MAX2769FT2232H:TestPoint_Pad_D1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 6084C9A1))
(comp (ref H2)
(value MountingHole_Pad)
(footprint MAX2769FT2232H:MountingHole_2.2mm_M2_Pad_Via)
(datasheet ~)
(libsource (lib MAX2769FT2232H) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5EFFD0D2))
(comp (ref H1)
(value MountingHole_Pad)
(footprint MAX2769FT2232H:MountingHole_2.2mm_M2_Pad_Via)
(datasheet ~)
(libsource (lib MAX2769FT2232H) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5F05E293))
(comp (ref H4)
(value MountingHole_Pad)
(footprint MAX2769FT2232H:MountingHole_2.2mm_M2_Pad_Via)
(datasheet ~)
(libsource (lib MAX2769FT2232H) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF4555F))
(comp (ref H3)
(value MountingHole_Pad)
(footprint MAX2769FT2232H:MountingHole_2.2mm_M2_Pad_Via)
(datasheet ~)
(libsource (lib MAX2769FT2232H) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF45566))
(comp (ref TP4)
(value TestPoint)
(footprint MAX2769FT2232H:TestPoint_Pad_D1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF693CE))
(comp (ref TP3)
(value TestPoint)
(footprint MAX2769FT2232H:TestPoint_Pad_D1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5EFC9D8A))
(comp (ref C47)
(value "10 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 10000PF 10V X7R 0402")
(field (name Digi-Key) 399-7759-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F1C6465))
(comp (ref C48)
(value "10 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 10000PF 10V X7R 0402")
(field (name Digi-Key) 399-7759-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F1C6D13))
(comp (ref C44)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60185B37))
(comp (ref C45)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6001D593))
(comp (ref R18)
(value 10k)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 10K OHM 1% 1/10W 0603")
(field (name Digi-Key) 2019-RK73H1JTTD1002FCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FDA9520))
(comp (ref R16)
(value 10k)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 10K OHM 1% 1/10W 0603")
(field (name Digi-Key) 2019-RK73H1JTTD1002FCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD90E0A))
(comp (ref R15)
(value 10k)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 10K OHM 1% 1/10W 0603")
(field (name Digi-Key) 2019-RK73H1JTTD1002FCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD768EF))
(comp (ref R12)
(value 2.2k)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 2.2K OHM 1% 1/10W 0603")
(field (name Digi-Key) 2019-RK73H1JTTD2201FCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD5D5D8))
(comp (ref R14)
(value 12k)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 12K OHM 1% 1/10W 0603")
(field (name Digi-Key) 2019-RK73H1JTTD1202FCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FCFAFD9))
(comp (ref R17)
(value 1k)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 1K OHM 1% 1/8W 0603")
(field (name Digi-Key) 2019-RK73H1JTTD1001FCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB8D83F))
(comp (ref R11)
(value 0)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 0 OHM JUMPER 0603")
(field (name Digi-Key) 2019-RK73Z1JTTDCT-ND))
(libsource (lib MAX2769FT2232H) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA6022F))
(comp (ref C43)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7C4C8E))
(comp (ref C42)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AEA2C))
(comp (ref C41)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F798C10))
(comp (ref C40)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F782F0B))
(comp (ref C39)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F76D58C))
(comp (ref C38)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F757C1D))
(comp (ref C37)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7426FB))
(comp (ref C34)
(value "3.3 uF")
(footprint MAX2769FT2232H:C_0805_2012Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 3.3UF 16V X7R 0805")
(field (name Digi-Key) 490-13309-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F5D8EAC))
(comp (ref C32)
(value "4.7 uF")
(footprint MAX2769FT2232H:C_0805_2012Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 4.7UF 6.3V X7R 0805")
(field (name Digi-Key) 399-15725-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F51C1E7))
(comp (ref C33)
(value "4.7 uF")
(footprint MAX2769FT2232H:C_0805_2012Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 4.7UF 6.3V X7R 0805")
(field (name Digi-Key) 399-15725-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F4F8F24))
(comp (ref C35)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F46CDFC))
(comp (ref C36)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F45C7CA))
(comp (ref R13)
(value 1k)
(footprint MAX2769FT2232H:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name Description) "RES 1K OHM 1% 1/8W 0603")
(field (name Digi-Key) 2019-RK73H1JTTD1001FCT-ND))
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F16449D))
(comp (ref C30)
(value "1.0 uF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 1UF 6.3V X6S 0402")
(field (name Digi-Key) 490-12233-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5ED0878F))
(comp (ref C31)
(value "1.0 uF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 1UF 6.3V X6S 0402")
(field (name Digi-Key) 490-12233-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5ECFE89E))
(comp (ref FB2)
(value Ferrite_Bead)
(footprint MAX2769FT2232H:L_0805_2012Metric)
(datasheet ~)
(fields
(field (name Description) "FERRITE BEAD 1 KOHM 0805 1LN")
(field (name Digi-Key) 490-1041-1-ND))
(libsource (lib MAX2769FT2232H) (part Ferrite_Bead) (description "Ferrite bead"))
(sheetpath (names /) (tstamps /))
(tstamp 5ECE109A))
(comp (ref FB1)
(value Ferrite_Bead)
(footprint MAX2769FT2232H:L_0805_2012Metric)
(datasheet ~)
(fields
(field (name Description) "FERRITE BEAD 1 KOHM 0805 1LN")
(field (name Digi-Key) 490-1041-1-ND))
(libsource (lib MAX2769FT2232H) (part Ferrite_Bead) (description "Ferrite bead"))
(sheetpath (names /) (tstamps /))
(tstamp 5ECDEDD4))
(comp (ref C18)
(value "100 pF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 100PF 50V C0G/NP0 0402 5%")
(field (name Digi-Key) 399-3194-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5ECA9F41))
(comp (ref C8)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC7CF35))
(comp (ref C49)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 62653503))
(comp (ref C50)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 628D3719))
(comp (ref C51)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61506213))
(comp (ref C52)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F6CBAE3))
(comp (ref J2)
(value USB_A)
(footprint MAX2769FT2232H:USB_A_CNCTech_1001-011-01101_Horizontal)
(datasheet " ~")
(fields
(field (name Description) "CONN PLUG USB2.0 TYPEA 4P SMD RA")
(field (name Digi-Key) WM3983CT-ND))
(libsource (lib MAX2769FT2232H) (part USB_A) (description "USB Type A connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5F302390))
(comp (ref U6)
(value FT2232H-Interface_USB)
(footprint MAX2769FT2232H:LQFP-64_10x10mm_P0.5mm)
(fields
(field (name Description) "IC USB HS DUAL UART/FIFO 64-LQFP")
(field (name Digi-Key) 768-1024-1-ND))
(libsource (lib MAX2769FT2232H) (part FT2232H-Interface_USB) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F304EA0))
(comp (ref U5)
(value 93LC66BT-I_OT)
(footprint MAX2769FT2232H:93LC66BT-I&slash_OT)
(fields
(field (name Description) "IC EEPROM 4K SPI 2MHZ SOT23-6")
(field (name Digi-Key) 93LC66BT-I/OTCT-ND))
(libsource (lib MAX2769FT2232H) (part 93LC66BT-I_OT) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F309FF8))
(comp (ref X2)
(value SIT2024BA-S8-33E-12.00000E)
(footprint MAX2769FT2232H:SIT2024BA-S8-33E-8.000000E)
(fields
(field (name Description) "MEMS OSC XO 12.0000MHZ LVCMOS LV")
(field (name Digi-Key) 1473-SIT2024BA-S8-33E-12.000000G-ND))
(libsource (lib MAX2769FT2232H) (part SIT2024BA-S8-33E-12.00000E) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F30BB40))
(comp (ref U1)
(value MAX2769ETI+T)
(footprint MAX2769FT2232H:MAX2769ETI&plus_T)
(fields
(field (name Description) "RF RX GNSS 1575.42MHZ 28TQFN")
(field (name Digi-Key) MAX2769BETI/V+-ND))
(libsource (lib MAX2769FT2232H) (part MAX2769ETI+T) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F30E452))
(comp (ref X1)
(value Taiten-16.368MHz)
(footprint MAX2769FT2232H:TXETCDSANF-16.368000)
(fields
(field (name Description) "XTAL OSC TCXO 16.3680MHZ SNWV")
(field (name Digi-Key) 1664-1271-1-ND))
(libsource (lib MAX2769FT2232H) (part Taiten-16.368MHz) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3124F5))
(comp (ref U2)
(value TPS717285DCKR)
(footprint MAX2769FT2232H:TPS717285DCKR)
(fields
(field (name Description) "IC REG LINEAR 2.85V 150MA SC70-5")
(field (name Digi-Key) 296-19649-1-ND))
(libsource (lib MAX2769FT2232H) (part TPS717285DCKR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3139E9))
(comp (ref U3)
(value TPS717285DCKR)
(footprint MAX2769FT2232H:TPS717285DCKR)
(fields
(field (name Description) "IC REG LINEAR 2.85V 150MA SC70-5")
(field (name Digi-Key) 296-19649-1-ND))
(libsource (lib MAX2769FT2232H) (part TPS717285DCKR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3154C8))
(comp (ref U4)
(value NCP164CSN330T1G)
(footprint MAX2769FT2232H:TSOT-23-5)
(datasheet https://www.onsemi.com/pub/Collateral/NCP164C-D.PDF)
(fields
(field (name Description) "LDO 300 MA AD 3.3V, ULTRA")
(field (name Digi-Key) 488-NCP164CSN330T1GCT-ND))
(libsource (lib MAX2769FT2232H) (part NCP164CSN330T1G) (description "300mA, Low Noise, Linear Regulator, 1.6-5.0V input voltage range, 3.3V fixed positive output, TSOT-23-5"))
(sheetpath (names /) (tstamps /))
(tstamp 5F4FBA74))
(comp (ref C53)
(value "100 nF")
(footprint MAX2769FT2232H:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name Description) "CAP CER 0.1UF 16V X7R 0402 10%")
(field (name Digi-Key) 490-6328-1-ND))
(libsource (lib MAX2769FT2232H) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F71CD36))
(comp (ref U9)
(value 74LVC374)
(footprint MAX2769FT2232H:TSSOP-20_4.4x6.5mm_P0.65mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74hct374.pdf)
(fields
(field (name Description) "IC FF D-TYPE SNGL 8BIT 20TSSOP")
(field (name Digi-Key) 296-1238-6-ND))
(libsource (lib MAX2769FT2232H) (part 74LVC374) (description "8-bit Register, 3-state outputs"))
(sheetpath (names /) (tstamps /))
(tstamp 5F567B4A))
(comp (ref U10)
(value 74LVC374)
(footprint MAX2769FT2232H:TSSOP-20_4.4x6.5mm_P0.65mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74hct374.pdf)
(fields
(field (name Description) "IC FF D-TYPE SNGL 8BIT 20TSSOP")
(field (name Digi-Key) 296-1238-6-ND))
(libsource (lib MAX2769FT2232H) (part 74LVC374) (description "8-bit Register, 3-state outputs"))
(sheetpath (names /) (tstamps /))
(tstamp 5F6726FD))
(comp (ref U7)
(value 74LVC1G74)
(footprint MAX2769FT2232H:SOT-833-1)
(datasheet https://assets.nexperia.com/documents/data-sheet/74LVC1G74.pdf)
(fields
(field (name Description) "IC FF D-TYPE SNGL 1BIT 8XSON")
(field (name Digi-Key) 1727-3558-1-ND))
(libsource (lib MAX2769FT2232H) (part 74LVC1G74) (description "Single D Flip-Flop, Low-Voltage CMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5F747663))
(comp (ref U11)
(value 74HC2G04)
(footprint MAX2769FT2232H:SOT-363_SC-70-6)
(datasheet https://assets.nexperia.com/documents/data-sheet/74HC_HCT2G04_Q100.pdf)
(fields
(field (name Description) "IC INVERTER 2CH 2-INP 6TSSOP")
(field (name Digi-Key) 1727-6045-1-ND))
(libsource (lib MAX2769FT2232H) (part 74HC2G04) (description "Hex Inverter"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE3269F))
(comp (ref U8)
(value 74LVC1G04)
(footprint MAX2769FT2232H:SOT-353_SC-70-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74LVC1G04.pdf)
(fields
(field (name Description) "IC INVERTER 1CH 1-INP 5TSSOP")
(field (name Digi-Key) 1727-2871-1-ND))
(libsource (lib MAX2769FT2232H) (part 74LVC1G04) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6006598C)))
(libparts
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) TestPoint))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib Device) (part R_US)
(description "Resistor, US symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_US))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib MAX2769FT2232H) (part 74HC2G04)