forked from adamgreig/agg-kicad
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcusf-kicad.dcm
976 lines (976 loc) · 22.4 KB
/
cusf-kicad.dcm
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
EESchema-DOCLIB Version 2.0
#==============================================================================
# Automatically generated by agg-kicad compile_lib.py
# on 2021-03-28 18:06:41.388217
# using git version d1a8455c-dirty
# See github.com/adamgreig/agg-kicad
#==============================================================================
#
$CMP 7499210124A
D Shielded 8P8C Modular Connector with Magnetics, PoE, and LEDs
F https://katalog.we-online.de/pbs/datasheet/7499210124A.pdf
$ENDCMP
$CMP 7499410213
D Shielded 8P8C Modular Connector with Magnetics and LEDs
F https://katalog.we-online.de/pbs/datasheet/7499410213.pdf
$ENDCMP
#
#
$CMP COAX
D Coaxial connection
$ENDCMP
#
#
$CMP MICROSD
D MicroSD card holder, Molex 503398-1892
$ENDCMP
#
#
$CMP MICROUSB
D Micro USB connector
$ENDCMP
#
#
$CMP PSG01550
F http://www.farnell.com/datasheets/2826737.pdf
$ENDCMP
#
$CMP RJHSE-538x-04
D 4-Port Shielded 8P8C Modular Connector with LEDs
F https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/rjhse538x04.pdf
$ENDCMP
$CMP RJHSE-538x
D Shielded 8P8C Modular Connector with LEDs
F http://www.farnell.com/cad/2167247.pdf
$ENDCMP
$CMP RJMG16x
D Shielded 8P8C Modular Connector with Magnetics and LEDs
F http://www.farnell.com/datasheets/71713.pdf
$ENDCMP
#
$CMP SWD
D Serial Wire Debug Port
$ENDCMP
#
#
$CMP SWD_TC
D SWD TagConnect
$ENDCMP
#
$CMP USB-A-SS
D USB Type A SuperSpeed Connector
F http://www.te.com/usa-en/product-1932258-1.html
$ENDCMP
#
$CMP USB-A
D USB Type A Receptacle
$ENDCMP
#
$CMP USB-C
D USB Type C Connector
F http://www.te.com/usa-en/product-2129691-1.html
$ENDCMP
$CMP USB4085
D Type C USB 2.0 Connector
F https://gct.co/connector/usb4085
$ENDCMP
$CMP AD8041
D 160MHz rail-to-rail opamp with disable
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD8041.pdf
$ENDCMP
$CMP AD8138
D Low distortion, differential ADC driver
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD8138.pdf
$ENDCMP
#
$CMP AD8226
D Instrumentation Amplifier
$ENDCMP
#
$CMP AD8422
D High Performance, Low Power, Rail-to-Rail Precision Instrumentation Amplifier
F https://www.analog.com/media/en/technical-documentation/data-sheets/AD8422.pdf
$ENDCMP
#
$CMP AD8495
D K-Type Thermocouple Amplifier
$ENDCMP
#
#
$CMP AD8541
D Op Amp
$ENDCMP
#
#
$CMP AD8542
D Op Amp
$ENDCMP
#
#
$CMP AD8551
D Zero-Drift, Single-Supply, Rail-to-Rail Input/Output Operational Amplifiers
F https://www.analog.com/media/en/technical-documentation/data-sheets/AD8551_8552_8554.pdf
$ENDCMP
#
#
$CMP AD8552
D Zero-Drift, Single-Supply, Rail-to-Rail Input/Output Operational Amplifiers
F https://www.analog.com/media/en/technical-documentation/data-sheets/AD8551_8552_8554.pdf
$ENDCMP
#
#
$CMP AD8605
D Precision, Low Noise, CMOS, Rail-to-Rail, Input/Output Operational Amplifier
F https://www.analog.com/media/en/technical-documentation/data-sheets/AD8605_8606_8608.pdf
$ENDCMP
#
$CMP AD8639
D 16 V Auto-Zero, Rail-to-Rail Operational Amplifiers
F https://www.analog.com/media/en/technical-documentation/data-sheets/AD8638_8639.pdf
$ENDCMP
#
#
#
$CMP ADR4525
D Ultralow Noise, High Accuracy Voltage Reference
F https://www.analog.com/media/en/technical-documentation/data-sheets/ADR4520_4525_4530_4533_4540_4550.pdf
$ENDCMP
#
$CMP INA139
D High-Side Measurement Current Shunt Monitor
F http://www.ti.com/lit/ds/symlink/ina139.pdf
$ENDCMP
#
$CMP LMx93
D Dual differential comparator
F http://www.ti.com/lit/ds/symlink/lm393.pdf
$ENDCMP
$CMP LTC2983
D Digital Temperature Measurement System
F http://cds.linear.com/docs/en/datasheet/2983fc.pdf
$ENDCMP
$CMP MAX11665AUT
D 500ksps 12bit ADC
F https://datasheets.maximintegrated.com/en/ds/MAX11661-MAX11666.pdf
$ENDCMP
#
$CMP OP1177
D Precision opamp
$ENDCMP
#
#
$CMP OP2177
D Dual precision opamp
$ENDCMP
#
$CMP SSM2305
D Mono 2.8W Class D Audio Amplifier
F http://www.analog.com/media/en/technical-documentation/data-sheets/SSM2305.pdf
$ENDCMP
$CMP TPA301
D 350mW Mono Audio Power Amplifier
F http://www.ti.com/lit/ds/symlink/tpa301.pdf
$ENDCMP
$CMP CS2100-CP
D Fractional-N Clock Multiplier
F https://www.cirrus.com/en/pubs/proDatasheet/CS2100-CP_F3.pdf
$ENDCMP
$CMP DS3231MZ
D I2C integrated RTC/TCXO/Crystal
F https://datasheets.maximintegrated.com/en/ds/DS3231M.pdf
$ENDCMP
$CMP SG-3030CM
D 32.768 kHz Crystal Oscillator
F http://www.farnell.com/datasheets/1804150.pdf
$ENDCMP
$CMP Si53307
D Ultra-Low Additive Jitter Fanout Clock Buffer
F https://www.silabs.com/documents/public/data-sheets/si5330x-datasheet.pdf
$ENDCMP
$CMP SL18860DC
D 3-Channel Clock Distribution Buffer
F http://www.silabs.com/Support%20Documents/TechnicalDocs/SL18860.pdf
$ENDCMP
$CMP iCE40HX8K-BG121
D iCE40 HX FPGA
F http://www.latticesemi.com/view_document?document_id=49312
$ENDCMP
$CMP iCE40UP5K-SG48
D iCE40 UP5K FPGA
F http://www.latticesemi.com/view_document?document_id=51968
$ENDCMP
$CMP AD9218
D 10bit 105MSPS dual ADC
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD9218.pdf
$ENDCMP
$CMP AD9744
D 14bit 210MSPS DAC
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD9744.pdf
$ENDCMP
$CMP AM26C31
D Quad RS422 driver
F http://www.ti.com.cn/cn/lit/ds/symlink/am26c31.pdf
$ENDCMP
$CMP AR1021
D Resistive Touch Screen Controller
F http://ww1.microchip.com/downloads/en/DeviceDoc/40001393C.pdf
$ENDCMP
$CMP HD3SS3220
D USB Type-C DRP Port Controller with SuperSpeed 2:1 MUX
F http://www.ti.com/lit/gpn/hd3ss3220
$ENDCMP
$CMP ISO1050DUB
D Isolated CAN transceiver
F http://www.ti.com/lit/ds/symlink/iso1050.pdf
$ENDCMP
$CMP KSZ8081RNx
D RMII 100/10Mbps ethernet PHY
F http://ww1.microchip.com/downloads/en/DeviceDoc/KSZ8081RNA_RND.pdf
$ENDCMP
$CMP LAN8720A
D RMII 10/100 Ethernet Transceiver
F http://ww1.microchip.com/downloads/en/DeviceDoc/8720a.pdf
$ENDCMP
$CMP MAX14787E
D MAX14787E/MAX14789E Full Duplex RS485 Driver
F https://datasheets.maximintegrated.com/en/ds/MAX14784E-MAX14789E.pdf
$ENDCMP
$CMP MAX5969x
D MAX5969x 802.3af PoE PD controller
F https://datasheets.maximintegrated.com/en/ds/MAX5969A-MAX5969B.pdf
$ENDCMP
$CMP MCP2562
D High Speed CAN Transceiver
F http://ww1.microchip.com/downloads/en/DeviceDoc/20005167C.pdf
$ENDCMP
$CMP PCA9502
D I2C 8-bit Port Expander
F http://cache.nxp.com/documents/data_sheet/PCA9502.pdf
$ENDCMP
$CMP PCAL9538A
D Low-voltage and power 8-bit I2C SMBus expander
F http://www.nxp.com/documents/data_sheet/PCAL9538A.pdf
$ENDCMP
$CMP SNx5176B
D Differential bus transceiver
F http://www.ti.com.cn/cn/lit/ds/symlink/sn75176b.pdf
$ENDCMP
$CMP ST3232
D RS-232 driver & receiver
F www.st.com/resource/en/datasheet/st3232b.pdf
$ENDCMP
$CMP TPS2378
D TPS2378 802.3at PoE PD controller
F http://www.ti.com/lit/ds/symlink/tps2378.pdf
$ENDCMP
$CMP USB251xB
D USB 2.0 Hi-Speed Hub Controller
F http://ww1.microchip.com/downloads/en/DeviceDoc/00001692C.pdf
$ENDCMP
$CMP USB5534B
D 4-Port SS/HS USB Hub Controller
F http://ww1.microchip.com/downloads/en/DeviceDoc/00001681C.pdf
$ENDCMP
#
$CMP ADuM1201
D 2 channel isolater
$ENDCMP
#
#
$CMP ADuM5201
D 2 channel isolater with DCDC converter
$ENDCMP
#
#
#
$CMP 4017
D 4017 Decade Counter
$ENDCMP
#
#
$CMP 555
D 555 timer
$ENDCMP
#
$CMP 74HC139
D Dual 2-to-4 line decoder/demultiplexer
F http://cache.nxp.com/documents/data_sheet/74HC_HCT139.pdf
$ENDCMP
$CMP 74HC595
D 8-bit serial-to-parallel shift register
F http://www.nxp.com/documents/data_sheet/74HC_HCT595.pdf
$ENDCMP
$CMP LSF0204
D Logic Level Translator
F http://www.ti.com/lit/ds/symlink/lsf0204.pdf
$ENDCMP
#
$CMP NC7SZ04
D Inverter
$ENDCMP
#
$CMP NPIC6C596A
D 8-bit serial-to-parallel open drain power shift register
F http://assets.nexperia.com/documents/data-sheet/NPIC6C596A.pdf
$ENDCMP
$CMP SN74LVC1G07
D Buffer / Line Driver, Non-Inverting, 1 Gate, 1 Input, 1.65V to 5.5V
F http://www.ti.com/lit/ds/symlink/sn74lvc1g07.pdf
$ENDCMP
$CMP SN74LVC1G0832
D AND / OR Gate
F http://www.ti.com/lit/ds/symlink/sn74lvc1g0832.pdf
$ENDCMP
$CMP SN74LVC4245A
D Logic Level Translator & Buffer
F http://www.ti.com/lit/ds/symlink/sn74lvc4245a.pdf
$ENDCMP
$CMP 24AA01
D 1K I2C Serial EEPROM
F http://ww1.microchip.com/downloads/en/DeviceDoc/21711c.pdf
$ENDCMP
$CMP 25AA02E48
D 2kbit SPI EEPROM with EUI-48 (MAC) address
F http://ww1.microchip.com/downloads/en/DeviceDoc/20002123F.pdf
$ENDCMP
$CMP W25Q80
D 8Mbit SPI flash memory
F http://www.winbond.com/resource-files/w25q80dv%20dl_revh_10022015.pdf
$ENDCMP
#
$CMP STM32F0xxCxTx
D STM32F0 48 pin LQFP package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00090510.pdf
$ENDCMP
$CMP STM32F0xxCxUx
D STM32F0 48 pin UFQFPN package
F http://www.st.com/resource/en/datasheet/stm32f051c8.pdf
$ENDCMP
$CMP STM32F0xxFxPx
D STM32F042 in TSSOP-20 package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00105814.pdf
$ENDCMP
$CMP STM32F0xxGxUx
D STM32F0 28 pin UQFPN package
F http://www.st.com/resource/en/datasheet/stm32f042g6.pdf
$ENDCMP
$CMP STM32F0xxKxTx
D STM32F0 32 pin LQFP package
F http://www.st.com/web/en/resource/technical/document/datasheet/DM00088500.pdf
$ENDCMP
$CMP STM32F0xxKxUx
D STM32F0 32 pin UFQFPN package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00039193.pdf
$ENDCMP
$CMP STM32F0xxRxHx
D STM32F0 64 pin UFBGA package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00115237.pdf
$ENDCMP
$CMP STM32F1xxCxUx
D STM32F1 48 pin UFQFPN package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00161566.pdf
$ENDCMP
$CMP STM32F1xxRxTx
D STM32F105/107 LQFP64 Package
F http://www.st.com/content/ccc/resource/technical/document/datasheet/e4/f3/1a/89/5a/02/46/ae/CD00220364.pdf/files/CD00220364.pdf/jcr:content/translations/en.CD00220364.pdf
$ENDCMP
$CMP STM32F1xxVxTx
D STM32F105/107 LQFP100 Package
F http://www.st.com/content/ccc/resource/technical/document/datasheet/e4/f3/1a/89/5a/02/46/ae/CD00220364.pdf/files/CD00220364.pdf/jcr:content/translations/en.CD00220364.pdf
$ENDCMP
$CMP STM32F3xxCxTx
D STM32F3 48 pin LQFP package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00058181.pdf
$ENDCMP
$CMP STM32F3xxKxTx
D STM32F3 32 pin LQFP package
F http://www.st.com/resource/en/datasheet/stm32f334k8.pdf
$ENDCMP
$CMP STM32F405RxTx
D STM32F4 64 pin TQFP package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00037051.pdf
$ENDCMP
$CMP STM32F411CxUx
D STM32F4 48 pin UFQFN package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00115249.pdf
$ENDCMP
$CMP STM32F4xxVxTx
D STM32F4 100 pin LQFP package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00037051.pdf
$ENDCMP
$CMP STM32F4xxZxJx
D STM32F4 144 pin 10x10 UFBGA package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00141306.pdf
$ENDCMP
$CMP STM32F7xxZxTx
D STM32F7 144 pin LQFP package
F www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00273119.pdf
$ENDCMP
$CMP STM32L4xxJxYx
D STM32L4 72 pin WLCSP package
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00108833.pdf
$ENDCMP
$CMP ADP124
D 500mA LDO
F http://www.analog.com/media/en/technical-documentation/data-sheets/ADP124_125.pdf
$ENDCMP
$CMP ADP2370
D 800mA Buck Regulator
F http://www.analog.com/media/en/technical-documentation/data-sheets/ADP2370_2371.pdf
$ENDCMP
$CMP ADP2389
D 18 V, 12 A Step-Down Regulator with Programmable Current Limit
F http://www.analog.com/media/en/technical-documentation/data-sheets/ADP2389_2390.pdf
$ENDCMP
#
$CMP ADP3335
D LDO Voltage Regulator
$ENDCMP
#
#
$CMP ADP3338
D High current LDO voltage regulator
$ENDCMP
#
$CMP ADP7105
D Low Noise 500mA LDO
F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP7105.pdf
$ENDCMP
$CMP BQ24232HA
D USB-friendly 500mA LiPO charger with power-path management
F http://www.ti.com/lit/ds/symlink/bq24232ha.pdf
$ENDCMP
$CMP BQ40Z60
D Programmable Battery Management Unit
F http://www.ti.com/lit/ds/symlink/bq40z60.pdf
$ENDCMP
$CMP BSP772T
D Smart High-Side Power Switch 34V 2.6A
F https://www.infineon.com/dgdl/Infineon-BSP772T-DS-v01_01-EN.pdf?fileId=5546d4625a888733015aadefb07a4c41
$ENDCMP
$CMP HV823
D High voltage EL lamp driver
F http://ww1.microchip.com/downloads/en/DeviceDoc/HV823%20C082213.pdf
$ENDCMP
$CMP LDL212DR
D High PSRR 1.2A adjustable LDO
F http://www.st.com/resource/en/datasheet/ldl212.pdf
$ENDCMP
$CMP LT3083
D Adjustable 3A single-resistor LDO regulator
F http://cds.linear.com/docs/en/datasheet/3083fa.pdf
$ENDCMP
$CMP LT3751
D High Voltage Capacitor Charger Controller with Regulation
F https://www.analog.com/media/en/technical-documentation/data-sheets/LT3751.pdf
$ENDCMP
$CMP LTC2975
D 4 Channel PMBus Power System Manager
F https://cds.linear.com/docs/en/datasheet/2975f.pdf
$ENDCMP
#
$CMP LTC3105
D Solar MPPT Tracker
$ENDCMP
#
$CMP LTC3535
D LTC3535 Dual DC-DC Converter
F http://cds.linear.com/docs/en/datasheet/3535fa.pdf
$ENDCMP
$CMP LTC3887
D Dual Output PolyPhase Step-Down DC/DC Controllerwith Digital Power System Management
F http://cds.linear.com/docs/en/datasheet/3887fb.pdf
$ENDCMP
$CMP LTC4151
D I2C Power Monitor
F https://cds.linear.com/docs/en/datasheet/4151ff.pdf
$ENDCMP
$CMP LTC4353
D Dual Output Low Voltage Ideal Diode Controller
F https://cds.linear.com/docs/en/datasheet/4353f.pdf
$ENDCMP
$CMP MAX14521
D I2C Quad EL lamp driver
F https://datasheets.maximintegrated.com/en/ds/MAX14521E.pdf
$ENDCMP
$CMP MAX15062
D 60V 300mA Step-Down DC-DC Converter
F https://datasheets.maximintegrated.com/en/ds/MAX15062.pdf
$ENDCMP
$CMP MAX17435
D Multi-chemistry battery charger with SMBus communication
F https://datasheets.maximintegrated.com/en/ds/MAX17435-MAX17535.pdf
$ENDCMP
$CMP MAX17503
D Step-down DC-DC converter
F https://datasheets.maximintegrated.com/en/ds/MAX17503.pdf
$ENDCMP
$CMP MCP1416
D 1.5A High Speed Power MOSFET Driver
F http://ww1.microchip.com/downloads/en/DeviceDoc/20002092F.pdf
$ENDCMP
#
$CMP MCP1700
D LDO Voltage Regulator
$ENDCMP
#
$CMP MCP1804
D 150mA 28V LDO
F http://ww1.microchip.com/downloads/en/DeviceDoc/20002200D.pdf
$ENDCMP
$CMP MIC2004-0_5YM5
D 500mA current limiting power switch in SOT23-5
F http://ww1.microchip.com/downloads/en/DeviceDoc/mic20xx.pdf
$ENDCMP
$CMP MIC2287C
D 1.2MHz PWM White LED Driver
F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2287c.pdf
$ENDCMP
$CMP MIC5270
D 100mA negative LDO
F http://ww1.microchip.com/downloads/en/DeviceDoc/mic5270.pdf
$ENDCMP
$CMP MIC550x
D 300mA LDO
F http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550X.pdf
$ENDCMP
$CMP NCP161
D 450 mA, Ultra-Low Noise and High PSRR LDO Regulator for RF and Analog Circuits
F https://www.onsemi.com/pub/Collateral/NCP161-D.PDF
$ENDCMP
$CMP NCP380
D Fixed/Adjustable Current-Limiting Power-Distribution Switch
F http://www.onsemi.com/pub_link/Collateral/NCP380-D.PDF
$ENDCMP
$CMP NCP4620
D 150mA, 10V, Low Dropout Regulator
F http://www.farnell.com/datasheets/1878393.pdf
$ENDCMP
$CMP NCV8460A
D Self Protected High Side Driver with Temperature Shutdown and Current Limit
F https://www.onsemi.com/pub/Collateral/NCV8460-D.PDF
$ENDCMP
$CMP Si3402-B
D PoE PD interface and switching regulator
F http://www.silabs.com/Support%20Documents/TechnicalDocs/Si3402-B.pdf
$ENDCMP
$CMP TEC2
D Isolated DC-DC converter
F https://assets.tracopower.com/20181123133641/TEC2/documents/tec2-datasheet.pdf
$ENDCMP
$CMP TLV61220
D Adjustable 200mA Boost Converter
F http://www.ti.com/lit/ds/symlink/tlv61220.pdf
$ENDCMP
$CMP TLV61225
D 3.3V 400mA Boost Converter
F http://www.ti.com/lit/ds/symlink/tlv61225.pdf
$ENDCMP
$CMP TLV76012
D Fixed Output LDO Regulator 12v 100mA
F http://www.ti.com/lit/ds/symlink/tlv760.pdf
$ENDCMP
$CMP TLV76015
D Fixed Output LDO Regulator 15v 100mA
F http://www.ti.com/lit/ds/symlink/tlv760.pdf
$ENDCMP
$CMP TLV76033
D Fixed Output LDO Regulator 3.3v 100mA
F http://www.ti.com/lit/ds/symlink/tlv760.pdf
$ENDCMP
$CMP TLV76050
D Fixed Output LDO Regulator 5v 100mA
F http://www.ti.com/lit/ds/symlink/tlv760.pdf
$ENDCMP
$CMP TME
D Isolated DC-DC converter
F https://assets.tracopower.com/20190429154235/TME/documents/tme-datasheet.pdf
$ENDCMP
$CMP TPS62130
D 3A Adjustable Buck Converter
F http://www.ti.com/lit/ds/symlink/tps62130.pdf
$ENDCMP
$CMP TPS62132
D 3.3Vout 3A, fixed, Buck Converter
F http://www.ti.com/lit/ds/symlink/tps62132.pdf
$ENDCMP
$CMP TPS62133
D 5Vout 3A, fixed, Buck Converter
F http://www.ti.com/lit/ds/symlink/tps62133.pdf
$ENDCMP
$CMP TPS62152
D 3.3Vout 1A, fixed, Buck Converter
F http://www.ti.com/lit/ds/symlink/tps62152.pdf
$ENDCMP
$CMP TPS92512
D 2.5A constant current buck converter / LED driver
F http://www.ti.com/lit/ds/symlink/tps92512.pdf
$ENDCMP
$CMP TSR1
D TSR1 Switch Mode Regulators
F http://www.tracopower.com/products/tsr1.pdf
$ENDCMP
$CMP UCS1002
D Programmable USB Port Power Controllerwith Charger Emulation
F http://ww1.microchip.com/downloads/en/DeviceDoc/UCS1002-1%20Data%20Sheet.pdf
$ENDCMP
$CMP ADL5320
D 0.5W 400MHz-2.7GHz RF Driver Amplifier
F http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5320.pdf
$ENDCMP
$CMP ADL5324
D 0.5W 400MHz-4GHz RF Driver Amplifier
F http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5324.pdf
$ENDCMP
$CMP BGM1043N7
D GPS and GLONASS Front-End Module
F http://www.infineon.com/dgdl/bgm1043n7.pdf?folderId=db3a30431f848401011fcbf2ab4c04c4&fileId=db3a304336415dec01365e4465443c72
$ENDCMP
$CMP BGS12AL7
D SPDT RF Switch
F http://www.infineon.com/dgdl/Infineon-BGS12AL7_4-DS-v01_03-en.pdf?fileId=db3a30431b3e89eb011b458d7a767d88
$ENDCMP
$CMP BGT24MTR12
D 24GHz Transceiver MMIC
F http://www.infineon.com/dgdl/?fileId=db3a304339dcf4b10139df108e75025b
$ENDCMP
$CMP CMA-83LN+
D 0.5 to 8.0 GHz RF LNA
F https://ww2.minicircuits.com/pdfs/CMA-83LN+.pdf
$ENDCMP
$CMP PHA-202+
D High Dynamic Range MMIC Amplifier, 30 MHz to 2.7 GHz
F https://ww2.minicircuits.com/pdfs/PHA-202+.pdf
$ENDCMP
$CMP PMA3-83LN+
D 0.5 to 8.0 GHz RF LNA
F https://ww2.minicircuits.com/pdfs/PMA3-83LN+.pdf
$ENDCMP
#
$CMP Si4460
D Sub-1GHz ISM Transceiver
$ENDCMP
#
$CMP SKY65111-348LF
D 2W 600-1100MHz RF Power Amplifier
F http://www.skyworksinc.com/uploads/documents/200428E.pdf
$ENDCMP
#
$CMP UBX-G7020
D GPS Receiver
$ENDCMP
#
$CMP ADT7420
D 16-Bit Digital Temperature Sensor
F https://www.analog.com/media/en/technical-documentation/data-sheets/ADT7420.pdf
$ENDCMP
#
$CMP ADXL345
D Accelerometer
$ENDCMP
#
#
$CMP ADXL375
D High-G Accelerometer
$ENDCMP
#
#
$CMP HMC5883L
D Magnetometer
$ENDCMP
#
#
$CMP L3G4200D
D Gyroscope
$ENDCMP
#
$CMP LTC2986
D Multi-Sensor High Accuracy Digital Temperature Measurement System
F https://www.analog.com/media/en/technical-documentation/data-sheets/29861fa.pdf
$ENDCMP
$CMP MPU-9250
D MPU-9250 9DoF IMU from InvenSense
F http://43zrtwysvxb2gf29r5o0athu.wpengine.netdna-cdn.com/wp-content/uploads/2015/02/MPU-9250-Datasheet.pdf
$ENDCMP
$CMP MS5540C
D 16-Bit Digital Barometer
$ENDCMP
#
$CMP MS5611-01BA03
D Barometric pressure sensor
$ENDCMP
#
#
$CMP PART
D Generic placeholder part
$ENDCMP
#
#
$CMP TESTPAD
D Test pad
$ENDCMP
#
$CMP CHIPv1_0
D CHIP Single Board Computer v1.0
F http://docs.getchip.com/#chip-hardware
$ENDCMP
#
$CMP ER-OLED015-2B
D BuyDisplay.com OLED 1.5" ER-OLED015-2B
$ENDCMP
#
#
$CMP ER-OLEDM023-1
D BuyDisplay.com 2.2" OLED
$ENDCMP
#
#
$CMP ER-OLEDM024-2
D BuyDisplay.com 2.4" OLED
$ENDCMP
#
$CMP ER-TFT024-3
D 2.4in TFT LCD Display
F http://www.buydisplay.com/download/manual/ER-TFT024-3_Datasheet.pdf
$ENDCMP
$CMP ER-TFT043-3
D 4.3in TFT LCD Display
F http://www.buydisplay.com/download/manual/ER-TFT043-3_Datasheet.pdf
$ENDCMP
$CMP ESP-12
D ESP8266 WiFi Module
F https://www.elecrow.com/download/ESP-12F.pdf
$ENDCMP
$CMP ESP-WROOM-32
D ESP32 (ESP-WROOM-32 module)
F https://espressif.com/sites/default/files/documentation/esp_wroom_32_datasheet_en.pdf
$ENDCMP
#
$CMP ESP8266-ESP01
D WiFi Module ESP01
$ENDCMP
#
#
$CMP ESP8266-ESP07
D WiFi Module
$ENDCMP
#
$CMP LAB01
D Labrador Radio LAB01
$ENDCMP
#
$CMP MAX-7Q
D GPS Receiver
$ENDCMP
#
$CMP MAX-M8Q
D uBlox MAX-M8Q GPS Receiver
F https://www.u-blox.com/sites/default/files/MAX-M8-FW3_DataSheet_%28UBX-15031506%29.pdf
$ENDCMP
#
$CMP MTX2
D 434MHz Radio Transmitter
$ENDCMP
#
$CMP RASPBERRY-PI
D Raspberry Pi GPIO Connector
F https://pinout.xyz/
$ENDCMP
$CMP RFM69
D ISM Transceiver Module from HopeRF
F http://www.hoperf.com/upload/rf/RFM69HW-V1.3.pdf
$ENDCMP
$CMP RFM69HCW
D ISM Transceiver Module from HopeRF
F http://www.hoperf.com/upload/rf/RFM69HCW-V1.1.pdf
$ENDCMP
#
$CMP RockBLOCK-Mk1
D Iridium Satellite Modem
$ENDCMP
#
$CMP VTX-214-003-1xx
D AC/DC PCB Mount Power Supply
F http://www.farnell.com/datasheets/2060418.pdf
$ENDCMP
#
$CMP XBEE
D XBee Wireless Module
$ENDCMP
#
$CMP 749010012A
D 10/100Mbps ethernet magnetics
F http://katalog.we-online.de/pbs/datasheet/749010012A.pdf
$ENDCMP
#
$CMP ANT
D Generic antenna
$ENDCMP
#
$CMP BFCN-2450+
D 2400 to 2550 MHz Ceraminc Bandpass Filter
F https://ww2.minicircuits.com/pdfs/BFCN-2450+.pdf
$ENDCMP
#
#
$CMP CP
D Polarised Capacitor
$ENDCMP
#
#
$CMP D
D Diode
$ENDCMP
#
#
$CMP ECMF04-4HSM10
D Common mode filter with ESD protection for high speed serial interface
F https://www.st.com/resource/en/datasheet/ecmf04-4hsm10.pdf
$ENDCMP
#
$CMP ESD_DIODE
D ESD diode
$ENDCMP
#
#
#
#
$CMP GA3459-BL
F https://www.coilcraft.com/pdfs/ga3459.pdf
$ENDCMP
#
#
#
#
$CMP NFET
D Generic N-channel FET
$ENDCMP
#
#
$CMP NFET2
D Generic N-channel FET
$ENDCMP
#
#
$CMP NFET_GDS
D Generic N-channel FET
$ENDCMP
#
#
$CMP NPN
D NPN BJT Transistor
$ENDCMP
#
#
$CMP OSCILLATOR_4
D Packaged crystal oscillator, 4 pins
$ENDCMP
#
$CMP PD2EUSB30
D 2-Channel ESD Solution for SuperSpeed USB 3.0 Interface
$ENDCMP
#
$CMP PFET
D Generic P-channel FET
$ENDCMP
#
#
$CMP PFET_GDS
D Generic P-channel FET
$ENDCMP
#
#
$CMP PNP
D PNP BJT Transistor
$ENDCMP
#
#
$CMP POLYFUSE
D Positive temperature coefficient polyfuse
K pptc ptc polyfuse fuse
$ENDCMP
#
#
#
#
$CMP RELAY_DPDT_2COIL
F http://www.farnell.com/datasheets/1918069.pdf
$ENDCMP
#
#
$CMP RELAY_SPST
D Single Pole Single Throw Relay
$ENDCMP
#
#
$CMP SCHOTTKY
D Schottky Diode
$ENDCMP
#
#
$CMP Si5515CDC
D N- and P-Channel 20V MOSFET
$ENDCMP
#
#
$CMP SiZ340DT
D Dual N MOSFET SiZ340DT
$ENDCMP
#
#
#
$CMP TCXO
D 4 pin TCXO
$ENDCMP
#
#
$CMP TCXO_EN
D TCXO with Enable pin
$ENDCMP
#
#
$CMP TCXO_ST
D 4 pin TCXO with Standy
$ENDCMP
#
#
#
$CMP USBLC6-2P6
D Single port USB2 ESD protection
F http://www.st.com/resource/en/datasheet/usblc6-2.pdf
$ENDCMP
#
$CMP VCTCXO
D 4 pin VCTCXO
$ENDCMP
#
#
$CMP XTAL
D Crystal oscillator
$ENDCMP
#
#
$CMP ZENER
D Zener Diode
$ENDCMP
#
#
$CMP PWR
D Power flag. Adds a power output to power nets.
$ENDCMP
#
$CMP BME280
D Digital humidity, pressure, and temperature sensor
F https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME280_DS001-11.pdf
$ENDCMP
#
$CMP ROTENC
D Rotary encoder with RGB LED
$ENDCMP
#
#
$CMP SOUNDER
D Piezo/Magnetic Sounder/Buzzer/Speaker
$ENDCMP
#
# End Doc Library