mirror of
https://github.com/rdolbeau/NuBusFPGA.git
synced 2024-12-22 10:29:53 +00:00
merge pmod & leds into an extended pmod on the outside. Also some BoM updates.
This commit is contained in:
parent
024f19f027
commit
f9751bc39b
@ -102,14 +102,12 @@ _nubus_io_v1_0 = [
|
||||
|
||||
_nubus_io_v1_2 = [
|
||||
## leds on the NuBus board
|
||||
("user_led", 0, Pins("N2"), IOStandard("lvcmos33")), #LED0
|
||||
("user_led", 1, Pins("N1"), IOStandard("lvcmos33")), #LED1
|
||||
("user_led", 2, Pins("M1"), IOStandard("lvcmos33")), #LED2
|
||||
("user_led", 3, Pins("L1"), IOStandard("lvcmos33")), #LED3
|
||||
("user_led", 0, Pins("U9"), IOStandard("lvcmos33")), #LED0
|
||||
("user_led", 1, Pins("V9"), IOStandard("lvcmos33")), #LED1; both are overlapping with serial TX/RX
|
||||
## serial header for console
|
||||
("serial", 0,
|
||||
Subsignal("tx", Pins("V9")), # FIXME: might be the other way round
|
||||
Subsignal("rx", Pins("U9")),
|
||||
Subsignal("rx", Pins("U9")), # both are overlapping with LED0/1
|
||||
IOStandard("LVCMOS33")
|
||||
),
|
||||
## USB
|
||||
@ -172,7 +170,7 @@ _nubus_nubus_v1_2 = [
|
||||
("ack_o_n", 0, Pins("H14"), IOStandard("lvttl")),
|
||||
("ack_oe_n", 0, Pins("J13"), IOStandard("lvttl")),
|
||||
("nmrq_3v3_n", 0, Pins("K16"), IOStandard("lvttl")), # 'irq' line, Output only direct to 74LVT125
|
||||
("reset_3v3_n", 0, Pins("P2"), IOStandard("lvttl")), # Input only
|
||||
("reset_3v3_n", 0, Pins("R3"), IOStandard("lvttl")), # Input only
|
||||
("rqst_3v3_n" , 0, Pins("J18"), IOStandard("lvttl")), # Open Collector
|
||||
("rqst_o_n" , 0, Pins("K13"), IOStandard("lvttl")),
|
||||
("start_3v3_n", 0, Pins("K15"), IOStandard("lvttl")),
|
||||
@ -185,22 +183,48 @@ _nubus_nubus_v1_2 = [
|
||||
("arb_3v3_n", 0, Pins("T8 V4 V5 U6"), IOStandard("lvttl")), # Open Collector
|
||||
("arb_o_n", 0, Pins("J14 G16 G14 H17"), IOStandard("lvttl")),
|
||||
("id_3v3_n", 0, Pins("U7 V6 V7 U8"), IOStandard("lvttl")),
|
||||
("tm0_3v3_n", 0, Pins("P5"), IOStandard("lvttl")),
|
||||
("tm0_o_n", 0, Pins("P3"), IOStandard("lvttl")),
|
||||
("tm1_3v3_n", 0, Pins("N5"), IOStandard("lvttl")),
|
||||
("tm1_o_n", 0, Pins("P4"), IOStandard("lvttl")),
|
||||
("tmx_oe_n", 0, Pins("R3"), IOStandard("lvttl")),
|
||||
("tm2_3v3_n", 0, Pins("R2"), IOStandard("lvttl")),
|
||||
("tm2_o_n", 0, Pins("R1"), IOStandard("lvttl")),
|
||||
("tm2_oe_n", 0, Pins("T1"), IOStandard("lvttl")),
|
||||
("tm0_3v3_n", 0, Pins("V2"), IOStandard("lvttl")),
|
||||
("tm0_o_n", 0, Pins("T6"), IOStandard("lvttl")),
|
||||
("tm1_3v3_n", 0, Pins("U2"), IOStandard("lvttl")),
|
||||
("tm1_o_n", 0, Pins("R7"), IOStandard("lvttl")),
|
||||
("tmx_oe_n", 0, Pins("R8"), IOStandard("lvttl")),
|
||||
("tm2_3v3_n", 0, Pins("K6"), IOStandard("lvttl")),
|
||||
("tm2_o_n", 0, Pins("R5"), IOStandard("lvttl")),
|
||||
("tm2_oe_n", 0, Pins("R6"), IOStandard("lvttl")),
|
||||
|
||||
("nubus_oe", 0, Pins("G13"), IOStandard("lvttl")),
|
||||
("nubus_ad_dir", 0, Pins("G17"), IOStandard("lvttl"))),
|
||||
]
|
||||
|
||||
# Connectors ---------------------------------------------------------------------------------------
|
||||
connectors = [
|
||||
connectors_v1_0 = [
|
||||
]
|
||||
connectors_v1_2 = [
|
||||
("P1", "M1 L1 N2 N1 R2 P2 T1 R1 P4 P3 P5 N5"), # check sequence! currently in pmod-* order
|
||||
]
|
||||
|
||||
# Ethernet ----------------------------------------------------------------------------------------------
|
||||
# custom not-quite-pmod
|
||||
def rmii_eth_pmod_io(extpmod):
|
||||
return [
|
||||
("eth_clocks", 0,
|
||||
Subsignal("ref_clk", Pins(f"{extpmod}:10"))),
|
||||
IOStandard("LVCMOS33"),
|
||||
),
|
||||
("eth", 0,
|
||||
Subsignal("rst_n", Pins(f"{extpmod}:3")),
|
||||
Subsignal("rx_data", Pins(f"{extpmod}:8 {extpmod}:11")),
|
||||
Subsignal("crs_dv", Pins(f"{extpmod}:6")),
|
||||
Subsignal("tx_en", Pins(f"{extpmod}:2")),
|
||||
Subsignal("tx_data", Pins(f"{extpmod}:0 {extpmod}:1"))),
|
||||
Subsignal("mdc", Pins(f"{extpmod}:4")),
|
||||
Subsignal("mdio", Pins(f"{extpmod}:7")),
|
||||
Subsignal("rx_er", Pins(f"{extpmod}:9"))),
|
||||
Subsignal("int_n", Pins(f"{extpmod}:5"))),
|
||||
IOStandard("LVCMOS33")
|
||||
),
|
||||
]
|
||||
_rmii_eth_extpmod_io_v1_2 = rmii_eth_extpmod_io("P1")
|
||||
|
||||
# Platform -----------------------------------------------------------------------------------------
|
||||
|
||||
|
@ -4,7 +4,7 @@ EELAYER 26 0
|
||||
EELAYER END
|
||||
$Descr A4 11693 8268
|
||||
encoding utf-8
|
||||
Sheet 2 10
|
||||
Sheet 2 9
|
||||
Title "nubus-to-ztex B2B connector"
|
||||
Date ""
|
||||
Rev ""
|
||||
@ -300,7 +300,6 @@ F 3 "" H 6250 2550 50 0001 C CNN
|
||||
1 6250 2550
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
Connection ~ 6250 2550
|
||||
Wire Wire Line
|
||||
11000 2750 11000 4450
|
||||
Wire Wire Line
|
||||
@ -367,11 +366,11 @@ Text GLabel 1600 2050 0 50 Input ~ 0
|
||||
~AD31_3V3
|
||||
Text GLabel 4100 2150 2 50 Input ~ 0
|
||||
~AD30_3V3
|
||||
Text GLabel 9900 3650 2 50 Input ~ 0
|
||||
Text GLabel 9900 2550 2 50 Input ~ 0
|
||||
~RESET_3V3
|
||||
Text GLabel 9900 3050 2 50 Input ~ 0
|
||||
Text GLabel 7400 2450 0 50 Input ~ 0
|
||||
~TM1_3V3
|
||||
Text GLabel 9900 2950 2 50 Input ~ 0
|
||||
Text GLabel 7400 2350 0 50 Input ~ 0
|
||||
~TM0_3V3
|
||||
Text GLabel 1600 3950 0 50 Input ~ 0
|
||||
~AD1_3V3
|
||||
@ -552,9 +551,9 @@ F 3 "" H 700 6600 50 0001 C CNN
|
||||
$EndComp
|
||||
Text GLabel 1850 6400 2 60 Input ~ 12
|
||||
LED1
|
||||
Text GLabel 9900 3750 2 60 Input ~ 12
|
||||
Text GLabel 9450 1050 2 60 Input ~ 12
|
||||
LED0
|
||||
Text GLabel 9900 3850 2 60 Input ~ 12
|
||||
Text GLabel 9450 950 2 60 Input ~ 12
|
||||
LED1
|
||||
Text GLabel 1600 4050 0 50 Input ~ 0
|
||||
USBH0_D+
|
||||
@ -642,6 +641,7 @@ F 7 "?" H 3400 6050 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 3400 6050 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 3400 6050 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 3400 6050 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3400 6050 50 0001 C CNN "URL"
|
||||
1 3400 6050
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -671,7 +671,7 @@ Text Notes 1200 5650 0 50 ~ 0
|
||||
User LEDS
|
||||
Text GLabel 1600 1350 0 50 Input ~ 0
|
||||
~NMRQ_3V3
|
||||
Text GLabel 9900 3550 2 50 Input ~ 0
|
||||
Text GLabel 7400 2550 0 50 Input ~ 0
|
||||
~TM2_3V3
|
||||
Text GLabel 9900 1850 2 50 Input Italic 0
|
||||
~CLK2X_3V3
|
||||
@ -754,8 +754,10 @@ F 0 "C3" H 4025 6150 50 0000 L CNN
|
||||
F 1 "47uF 10V+" H 4025 5950 50 0000 L CNN
|
||||
F 2 "Capacitor_SMD:C_0805_2012Metric" H 4038 5900 50 0001 C CNN
|
||||
F 3 "" H 4000 6050 50 0000 C CNN
|
||||
F 4 "C2012X5R1A476MTJ00E" H 4000 6050 50 0001 C CNN "MPN"
|
||||
F 5 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_TDK-C2012X5R1A476MTJ00E_C76636.html" H 4000 6050 50 0001 C CNN "URL"
|
||||
F 4 "C2012X5R1A476MTJ00E" H 4000 6050 50 0001 C CNN "MPN-ALT"
|
||||
F 5 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_TDK-C2012X5R1A476MTJ00E_C76636.html" H 4000 6050 50 0001 C CNN "URL-ALT"
|
||||
F 6 "GRM21BR61A476ME15K" H 4000 6050 50 0001 C CNN "MPN"
|
||||
F 7 "https://www.lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM21BR61A476ME15K_C2292827.html" H 4000 6050 50 0001 C CNN "URL"
|
||||
1 4000 6050
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -809,154 +811,55 @@ Text GLabel 1600 1650 0 50 Input ~ 0
|
||||
START_o_n
|
||||
Text GLabel 1600 1550 0 50 Input ~ 0
|
||||
START_oe_n
|
||||
Text GLabel 9900 2550 2 50 Input ~ 0
|
||||
TMx_oe_n
|
||||
Text GLabel 9900 3150 2 50 Input ~ 0
|
||||
TM1_n_o
|
||||
Text GLabel 9900 3250 2 50 Input ~ 0
|
||||
TM0_n_o
|
||||
Text GLabel 9900 3350 2 50 Input ~ 0
|
||||
TM2_oe_n
|
||||
Text GLabel 9900 3450 2 50 Input ~ 0
|
||||
TM2_o_n
|
||||
Text GLabel 9900 2450 2 60 Input ~ 0
|
||||
SD_D2
|
||||
Text GLabel 9900 2350 2 60 Input ~ 0
|
||||
SD_D3
|
||||
Text GLabel 9900 2250 2 60 Input ~ 0
|
||||
SD_CMD
|
||||
Text GLabel 9900 2150 2 60 Input ~ 0
|
||||
SD_CLK
|
||||
Text GLabel 9900 2050 2 60 Input ~ 0
|
||||
SD_D0
|
||||
Text GLabel 9900 1950 2 60 Input ~ 0
|
||||
SD_D1
|
||||
Text GLabel 7400 1950 0 50 Input ~ 0
|
||||
PMOD-5
|
||||
Text GLabel 7400 2150 0 50 Input ~ 0
|
||||
PMOD-7
|
||||
Text GLabel 7400 2350 0 50 Input ~ 0
|
||||
PMOD-9
|
||||
Text GLabel 7400 2550 0 50 Input ~ 0
|
||||
PMOD-11
|
||||
Text GLabel 7400 2450 0 50 Input ~ 0
|
||||
PMOD-12
|
||||
Text GLabel 7400 1850 0 50 Input ~ 0
|
||||
PMOD-6
|
||||
TMx_oe_n
|
||||
Text GLabel 7400 1950 0 50 Input ~ 0
|
||||
TM1_n_o
|
||||
Text GLabel 7400 2050 0 50 Input ~ 0
|
||||
PMOD-8
|
||||
TM0_n_o
|
||||
Text GLabel 7400 2150 0 50 Input ~ 0
|
||||
TM2_oe_n
|
||||
Text GLabel 7400 2250 0 50 Input ~ 0
|
||||
TM2_o_n
|
||||
Text GLabel 9900 1950 2 60 Input ~ 0
|
||||
SD_D2
|
||||
Text GLabel 9900 2050 2 60 Input ~ 0
|
||||
SD_D3
|
||||
Text GLabel 9900 2150 2 60 Input ~ 0
|
||||
SD_CMD
|
||||
Text GLabel 9900 2250 2 60 Input ~ 0
|
||||
SD_CLK
|
||||
Text GLabel 9900 2350 2 60 Input ~ 0
|
||||
SD_D0
|
||||
Text GLabel 9900 2450 2 60 Input ~ 0
|
||||
SD_D1
|
||||
Text GLabel 9900 3950 2 50 Input ~ 0
|
||||
PMOD-5
|
||||
Text GLabel 9900 3750 2 50 Input ~ 0
|
||||
PMOD-7
|
||||
Text GLabel 9900 3550 2 50 Input ~ 0
|
||||
PMOD-9
|
||||
Text GLabel 9900 3350 2 50 Input ~ 0
|
||||
PMOD-11
|
||||
Text GLabel 9900 3450 2 50 Input ~ 0
|
||||
PMOD-12
|
||||
Text GLabel 9900 4050 2 50 Input ~ 0
|
||||
PMOD-6
|
||||
Text GLabel 9900 3850 2 50 Input ~ 0
|
||||
PMOD-8
|
||||
Text GLabel 9900 3650 2 50 Input ~ 0
|
||||
PMOD-10
|
||||
Wire Wire Line
|
||||
850 6900 700 6900
|
||||
Wire Wire Line
|
||||
700 6900 700 7100
|
||||
Wire Wire Line
|
||||
1150 6900 1550 6900
|
||||
$Comp
|
||||
L Device:R R?
|
||||
U 1 1 62CD698B
|
||||
P 1700 6900
|
||||
AR Path="/5F6B165A/62CD698B" Ref="R?" Part="1"
|
||||
AR Path="/5F67E4B9/62CD698B" Ref="R?" Part="1"
|
||||
AR Path="/618E8C75/62CD698B" Ref="R9" Part="1"
|
||||
F 0 "R9" V 1780 6900 50 0000 C CNN
|
||||
F 1 "590" V 1700 6900 50 0000 C CNN
|
||||
F 2 "Resistor_SMD:R_0603_1608Metric" V 1630 6900 50 0001 C CNN
|
||||
F 3 "" H 1700 6900 50 0000 C CNN
|
||||
F 4 "0603WAF5900T5E" V 1700 6900 50 0001 C CNN "MPN"
|
||||
F 5 "https://www.lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF5900T5E_C23084.html" V 1700 6900 50 0001 C CNN "URL"
|
||||
1 1700 6900
|
||||
0 1 1 0
|
||||
$EndComp
|
||||
$Comp
|
||||
L Device:LED_ALT D?
|
||||
U 1 1 62CD6995
|
||||
P 1000 6900
|
||||
AR Path="/5F6B165A/62CD6995" Ref="D?" Part="1"
|
||||
AR Path="/5F67E4B9/62CD6995" Ref="D?" Part="1"
|
||||
AR Path="/618E8C75/62CD6995" Ref="D4" Part="1"
|
||||
F 0 "D4" H 1000 7000 50 0000 C CNN
|
||||
F 1 "RED" H 1050 6750 50 0000 R CNN
|
||||
F 2 "LED_SMD:LED_0805_2012Metric" H 1000 6900 50 0001 C CNN
|
||||
F 3 "https://optoelectronics.liteon.com/upload/download/DS-22-99-0150/LTST-C170KRKT.pdf" H 1000 6900 50 0001 C CNN
|
||||
F 4 "www.liteon.com" H 1000 6900 60 0001 C CNN "MNF1_URL"
|
||||
F 5 "LTST-C170KRKT" H 1000 6900 60 0001 C CNN "MPN"
|
||||
F 6 "https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KRKT_C94868.html" H 1000 6900 50 0001 C CNN "URL"
|
||||
1 1000 6900
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
$Comp
|
||||
L power:GND #PWR0142
|
||||
U 1 1 62CD699C
|
||||
P 700 7100
|
||||
F 0 "#PWR0142" H 700 6850 50 0001 C CNN
|
||||
F 1 "GND" H 705 6927 50 0000 C CNN
|
||||
F 2 "" H 700 7100 50 0001 C CNN
|
||||
F 3 "" H 700 7100 50 0001 C CNN
|
||||
1 700 7100
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
Text GLabel 1850 6900 2 60 Input ~ 12
|
||||
LED2
|
||||
Wire Wire Line
|
||||
850 7400 700 7400
|
||||
Wire Wire Line
|
||||
700 7400 700 7600
|
||||
Wire Wire Line
|
||||
1150 7400 1550 7400
|
||||
$Comp
|
||||
L Device:R R?
|
||||
U 1 1 62CD69A8
|
||||
P 1700 7400
|
||||
AR Path="/5F6B165A/62CD69A8" Ref="R?" Part="1"
|
||||
AR Path="/5F67E4B9/62CD69A8" Ref="R?" Part="1"
|
||||
AR Path="/618E8C75/62CD69A8" Ref="R10" Part="1"
|
||||
F 0 "R10" V 1780 7400 50 0000 C CNN
|
||||
F 1 "590" V 1700 7400 50 0000 C CNN
|
||||
F 2 "Resistor_SMD:R_0603_1608Metric" V 1630 7400 50 0001 C CNN
|
||||
F 3 "" H 1700 7400 50 0000 C CNN
|
||||
F 4 "0603WAF5900T5E" V 1700 7400 50 0001 C CNN "MPN"
|
||||
F 5 "https://www.lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF5900T5E_C23084.html" V 1700 7400 50 0001 C CNN "URL"
|
||||
1 1700 7400
|
||||
0 1 1 0
|
||||
$EndComp
|
||||
$Comp
|
||||
L Device:LED_ALT D?
|
||||
U 1 1 62CD69B2
|
||||
P 1000 7400
|
||||
AR Path="/5F6B165A/62CD69B2" Ref="D?" Part="1"
|
||||
AR Path="/5F67E4B9/62CD69B2" Ref="D?" Part="1"
|
||||
AR Path="/618E8C75/62CD69B2" Ref="D5" Part="1"
|
||||
F 0 "D5" H 1000 7500 50 0000 C CNN
|
||||
F 1 "RED" H 1050 7250 50 0000 R CNN
|
||||
F 2 "LED_SMD:LED_0805_2012Metric" H 1000 7400 50 0001 C CNN
|
||||
F 3 "https://optoelectronics.liteon.com/upload/download/DS-22-99-0150/LTST-C170KRKT.pdf" H 1000 7400 50 0001 C CNN
|
||||
F 4 "www.liteon.com" H 1000 7400 60 0001 C CNN "MNF1_URL"
|
||||
F 5 "LTST-C170KRKT" H 1000 7400 60 0001 C CNN "MPN"
|
||||
F 6 "https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KRKT_C94868.html" H 1000 7400 50 0001 C CNN "URL"
|
||||
1 1000 7400
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
$Comp
|
||||
L power:GND #PWR0143
|
||||
U 1 1 62CD69B9
|
||||
P 700 7600
|
||||
F 0 "#PWR0143" H 700 7350 50 0001 C CNN
|
||||
F 1 "GND" H 705 7427 50 0000 C CNN
|
||||
F 2 "" H 700 7600 50 0001 C CNN
|
||||
F 3 "" H 700 7600 50 0001 C CNN
|
||||
1 700 7600
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
Text GLabel 1850 7400 2 60 Input ~ 12
|
||||
LED3
|
||||
Text GLabel 9900 3950 2 60 Input ~ 12
|
||||
LED2
|
||||
Text GLabel 9900 4050 2 60 Input ~ 12
|
||||
LED3
|
||||
Text Notes 3900 5000 0 50 ~ 0
|
||||
Molex 10-89-7642 a.k.a. A-70280-0072, with dimension 11.1 (total), 6.1 (mating) & 2.72 (solder), Hole diameter 1.02\nXKB X6521WV-2x32H-C30D60 is 11.5/6/3, H1.02\nAmphenol 77313-824-64LF is 12.2/6.75/2.9, H1.02\nAmphenol 77313-818-64LF is 11.43/5.84/3.05, H1.02\nAmphenol 77313-101-64LF is 10.8/5.84/2.41, H1.02 ('1xx' has thicker gold coating than '8xx')\nWurth 61306421121 is 11.54/6/3, H1.10\n
|
||||
Text Notes 2350 7600 1 50 ~ 0
|
||||
The four LED signals are also connected to a Pmod connector\nfor debugging purposes
|
||||
Text Notes 2450 6750 1 50 ~ 0
|
||||
The four LED signals are also\nconnected to the serial connector\nfor debugging purposes
|
||||
Connection ~ 6250 2550
|
||||
Text GLabel 9900 3250 2 50 Input ~ 0
|
||||
PMOD-14
|
||||
Text GLabel 9900 3150 2 50 Input ~ 0
|
||||
PMOD-13
|
||||
Text GLabel 9900 3050 2 50 Input ~ 0
|
||||
PMOD-16
|
||||
Text GLabel 9900 2950 2 50 Input ~ 0
|
||||
PMOD-15
|
||||
$EndSCHEMATC
|
||||
|
@ -4,7 +4,7 @@ EELAYER 26 0
|
||||
EELAYER END
|
||||
$Descr A4 11693 8268
|
||||
encoding utf-8
|
||||
Sheet 6 10
|
||||
Sheet 6 9
|
||||
Title "nubus-to-ztex extra conenctors (fan, ...)"
|
||||
Date ""
|
||||
Rev ""
|
||||
@ -75,8 +75,10 @@ F 0 "C28" H 5175 4900 50 0000 L CNN
|
||||
F 1 "47uF 10V+" H 5175 4700 50 0000 L CNN
|
||||
F 2 "Capacitor_SMD:C_0805_2012Metric" H 5188 4650 50 0001 C CNN
|
||||
F 3 "" H 5150 4800 50 0000 C CNN
|
||||
F 4 "C2012X5R1A476MTJ00E" H 5150 4800 50 0001 C CNN "MPN"
|
||||
F 5 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_TDK-C2012X5R1A476MTJ00E_C76636.html" H 5150 4800 50 0001 C CNN "URL"
|
||||
F 4 "C2012X5R1A476MTJ00E" H 5150 4800 50 0001 C CNN "MPN-ALT"
|
||||
F 5 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_TDK-C2012X5R1A476MTJ00E_C76636.html" H 5150 4800 50 0001 C CNN "URL-ALT"
|
||||
F 6 "GRM21BR61A476ME15K" H 5150 4800 50 0001 C CNN "MPN"
|
||||
F 7 "https://www.lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM21BR61A476ME15K_C2292827.html" H 5150 4800 50 0001 C CNN "URL"
|
||||
1 5150 4800
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
|
@ -4,7 +4,7 @@ EELAYER 26 0
|
||||
EELAYER END
|
||||
$Descr A4 11693 8268
|
||||
encoding utf-8
|
||||
Sheet 4 10
|
||||
Sheet 4 9
|
||||
Title "nubus-to-ztex HDMI"
|
||||
Date ""
|
||||
Rev ""
|
||||
@ -109,45 +109,40 @@ Wire Wire Line
|
||||
Connection ~ 4000 3650
|
||||
Wire Wire Line
|
||||
4000 3650 4000 3700
|
||||
Text GLabel 6650 1450 0 50 Input ~ 0
|
||||
HDMI_5V
|
||||
Text GLabel 4000 1900 2 50 Input ~ 0
|
||||
HDMI_5V
|
||||
Text GLabel 4650 1050 2 50 Input ~ 0
|
||||
HDMI_5V
|
||||
Wire Wire Line
|
||||
4650 1050 4650 1150
|
||||
7300 1450 7300 1550
|
||||
$Comp
|
||||
L Device:C C?
|
||||
U 1 1 6148D345
|
||||
P 4650 1300
|
||||
P 7300 1700
|
||||
AR Path="/5F679B53/6148D345" Ref="C?" Part="1"
|
||||
AR Path="/5F6B165A/6148D345" Ref="C?" Part="1"
|
||||
AR Path="/612D28DD/6148D345" Ref="C?" Part="1"
|
||||
AR Path="/61B62C00/6148D345" Ref="C24" Part="1"
|
||||
F 0 "C24" H 4675 1400 50 0000 L CNN
|
||||
F 1 "100nF" H 4675 1200 50 0000 L CNN
|
||||
F 2 "Capacitor_SMD:C_0603_1608Metric" H 4688 1150 50 0001 C CNN
|
||||
F 3 "" H 4650 1300 50 0000 C CNN
|
||||
F 4 "www.yageo.com" H 4650 1300 50 0001 C CNN "MNF1_URL"
|
||||
F 5 "CC0603KRX7R8BB104" H 4650 1300 50 0001 C CNN "MPN"
|
||||
F 6 "603-CC603KRX7R8BB104" H 4650 1300 50 0001 C CNN "Mouser"
|
||||
F 7 "?" H 4650 1300 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 4650 1300 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 4650 1300 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 4650 1300 50 0001 C CNN "Side"
|
||||
1 4650 1300
|
||||
F 0 "C24" H 7325 1800 50 0000 L CNN
|
||||
F 1 "100nF" H 7325 1600 50 0000 L CNN
|
||||
F 2 "Capacitor_SMD:C_0603_1608Metric" H 7338 1550 50 0001 C CNN
|
||||
F 3 "" H 7300 1700 50 0000 C CNN
|
||||
F 4 "www.yageo.com" H 7300 1700 50 0001 C CNN "MNF1_URL"
|
||||
F 5 "CC0603KRX7R8BB104" H 7300 1700 50 0001 C CNN "MPN"
|
||||
F 6 "603-CC603KRX7R8BB104" H 7300 1700 50 0001 C CNN "Mouser"
|
||||
F 7 "?" H 7300 1700 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 7300 1700 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 7300 1700 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 7300 1700 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 7300 1700
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
$Comp
|
||||
L power:GND #PWR0100
|
||||
U 1 1 6148D346
|
||||
P 4650 1450
|
||||
F 0 "#PWR0100" H 4650 1200 50 0001 C CNN
|
||||
F 1 "GND" H 4655 1277 50 0000 C CNN
|
||||
F 2 "" H 4650 1450 50 0001 C CNN
|
||||
F 3 "" H 4650 1450 50 0001 C CNN
|
||||
1 4650 1450
|
||||
P 7300 1850
|
||||
F 0 "#PWR0100" H 7300 1600 50 0001 C CNN
|
||||
F 1 "GND" H 7305 1677 50 0000 C CNN
|
||||
F 2 "" H 7300 1850 50 0001 C CNN
|
||||
F 3 "" H 7300 1850 50 0001 C CNN
|
||||
1 7300 1850
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
$Comp
|
||||
@ -237,6 +232,7 @@ F 7 "?" H 2450 1900 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 2450 1900 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 2450 1900 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 2450 1900 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 2450 1900
|
||||
0 1 1 0
|
||||
$EndComp
|
||||
@ -305,8 +301,9 @@ F 6 "CC0805MRX5R5BB476 # obsolete" H 2250 1350 50 0001 C CNN "MPN-ALT"
|
||||
F 7 "GRM21BR60J476ME01L" H 2250 1350 50 0001 C CNN "MPN-PREV"
|
||||
F 8 "https://www2.mouser.com/ProductDetail/Murata/GRM21BR60J476ME15L?qs=Tw3AuTVwGeLlkNhaDtjM1w%3D%3D" H 2250 1350 50 0001 C CNN "URL-ALT2"
|
||||
F 9 "https://www2.mouser.com/ProductDetail/?qs=u16ybLDytRYYQtTToF3RWA%3D%3D" H 2250 1350 50 0001 C CNN "URL-PREV"
|
||||
F 10 "C2012X5R1A476MTJ00E" H 2250 1350 50 0001 C CNN "MPN"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_TDK-C2012X5R1A476MTJ00E_C76636.html" H 2250 1350 50 0001 C CNN "URL"
|
||||
F 10 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_TDK-C2012X5R1A476MTJ00E_C76636.html" H 2250 1350 50 0001 C CNN "URL-ALT"
|
||||
F 11 "GRM21BR61A476ME15K" H 2250 1350 50 0001 C CNN "MPN"
|
||||
F 12 "https://www.lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM21BR61A476ME15K_C2292827.html" H 2250 1350 50 0001 C CNN "URL"
|
||||
1 2250 1350
|
||||
0 1 1 0
|
||||
$EndComp
|
||||
@ -358,4 +355,10 @@ Wire Wire Line
|
||||
Wire Wire Line
|
||||
4000 3650 6450 3650
|
||||
NoConn ~ 6250 3150
|
||||
Wire Wire Line
|
||||
6650 1450 7300 1450
|
||||
Text HLabel 7300 1450 2 50 Input ~ 0
|
||||
HDMI_5V
|
||||
Text HLabel 4000 1900 2 50 Input ~ 0
|
||||
HDMI_5V
|
||||
$EndSCHEMATC
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,12 +1,12 @@
|
||||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.2+dfsg1-1~bpo9+1*
|
||||
G04 #@! TF.CreationDate,2022-09-27T13:51:08+02:00*
|
||||
G04 #@! TF.CreationDate,2022-09-29T16:16:23+02:00*
|
||||
G04 #@! TF.ProjectId,nubus-to-ztex,6e756275-732d-4746-9f2d-7a7465782e6b,rev?*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Paste,Bot*
|
||||
G04 #@! TF.FilePolarity,Positive*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 5.0.2+dfsg1-1~bpo9+1) date Tue Sep 27 13:51:08 2022*
|
||||
G04 Created by KiCad (PCBNEW 5.0.2+dfsg1-1~bpo9+1) date Thu Sep 29 16:16:23 2022*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
|
@ -1,12 +1,12 @@
|
||||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.2+dfsg1-1~bpo9+1*
|
||||
G04 #@! TF.CreationDate,2022-09-27T13:51:08+02:00*
|
||||
G04 #@! TF.CreationDate,2022-09-29T16:16:23+02:00*
|
||||
G04 #@! TF.ProjectId,nubus-to-ztex,6e756275-732d-4746-9f2d-7a7465782e6b,rev?*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Legend,Bot*
|
||||
G04 #@! TF.FilePolarity,Positive*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 5.0.2+dfsg1-1~bpo9+1) date Tue Sep 27 13:51:08 2022*
|
||||
G04 Created by KiCad (PCBNEW 5.0.2+dfsg1-1~bpo9+1) date Thu Sep 29 16:16:23 2022*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
|
@ -1,11 +1,11 @@
|
||||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.2+dfsg1-1~bpo9+1*
|
||||
G04 #@! TF.CreationDate,2022-09-27T13:51:08+02:00*
|
||||
G04 #@! TF.CreationDate,2022-09-29T16:16:23+02:00*
|
||||
G04 #@! TF.ProjectId,nubus-to-ztex,6e756275-732d-4746-9f2d-7a7465782e6b,rev?*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Profile,NP*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 5.0.2+dfsg1-1~bpo9+1) date Tue Sep 27 13:51:08 2022*
|
||||
G04 Created by KiCad (PCBNEW 5.0.2+dfsg1-1~bpo9+1) date Thu Sep 29 16:16:23 2022*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
%!PS-Adobe-3.0
|
||||
%%Creator: PCBNEW
|
||||
%%CreationDate: Tue Sep 27 13:51:10 2022
|
||||
%%CreationDate: Thu Sep 29 16:15:53 2022
|
||||
%%Title: /home/dolbeau/MAC/NuBusFPGA.V1_2/nubus-to-ztex/nubus-to-ztex-NPTH-drl_map.ps
|
||||
%%Pages: 1
|
||||
%%PageOrder: Ascend
|
||||
|
@ -1,5 +1,5 @@
|
||||
M48
|
||||
;DRILL file {KiCad 5.0.2+dfsg1-1~bpo9+1} date Tue Sep 27 13:51:09 2022
|
||||
;DRILL file {KiCad 5.0.2+dfsg1-1~bpo9+1} date Thu Sep 29 16:15:56 2022
|
||||
;FORMAT={-:-/ absolute / inch / decimal}
|
||||
FMAT,2
|
||||
INCH,TZ
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
||||
M48
|
||||
;DRILL file {KiCad 5.0.2+dfsg1-1~bpo9+1} date Tue Sep 27 13:51:09 2022
|
||||
;DRILL file {KiCad 5.0.2+dfsg1-1~bpo9+1} date Thu Sep 29 16:15:56 2022
|
||||
;FORMAT={-:-/ absolute / inch / decimal}
|
||||
FMAT,2
|
||||
INCH,TZ
|
||||
@ -14,6 +14,7 @@ T8C0.0449
|
||||
T9C0.0469
|
||||
T10C0.0472
|
||||
T11C0.0512
|
||||
T12C0.0866
|
||||
%
|
||||
G90
|
||||
G05
|
||||
@ -21,13 +22,14 @@ T1
|
||||
X4.5354Y-3.4441
|
||||
X4.5354Y-3.5209
|
||||
X4.5354Y-3.572
|
||||
X4.5539Y-1.5909
|
||||
X4.5595Y-3.248
|
||||
X4.5787Y-0.4414
|
||||
X4.5787Y-0.6471
|
||||
X4.5866Y-2.7224
|
||||
X4.6142Y-3.3378
|
||||
X4.6561Y-1.5118
|
||||
X4.6561Y-1.748
|
||||
X4.6561Y-1.7874
|
||||
X4.6561Y-2.0236
|
||||
X4.6575Y-3.1417
|
||||
X4.6667Y-3.8866
|
||||
X4.7717Y-3.3378
|
||||
@ -35,10 +37,6 @@ X4.874Y-3.6614
|
||||
X4.9099Y-3.2185
|
||||
X4.9183Y-3.1043
|
||||
X4.9239Y-2.9882
|
||||
X4.9291Y-1.4558
|
||||
X4.9291Y-1.5726
|
||||
X4.9291Y-1.6894
|
||||
X4.9291Y-1.8062
|
||||
X4.9719Y-3.2323
|
||||
X4.9823Y-3.1762
|
||||
X4.999Y-3.0728
|
||||
@ -51,12 +49,13 @@ X5.185Y-3.4646
|
||||
X5.2528Y-3.4652
|
||||
X5.2815Y-3.
|
||||
X5.2815Y-3.0768
|
||||
X5.3102Y-0.9606
|
||||
X5.3307Y-2.7618
|
||||
X5.3327Y-2.9222
|
||||
X5.3598Y-0.6013
|
||||
X5.383Y-3.3031
|
||||
X5.3927Y-3.1024
|
||||
X5.4008Y-2.1917
|
||||
X5.4098Y-0.9606
|
||||
X5.4134Y-3.5162
|
||||
X5.4134Y-3.5782
|
||||
X5.4213Y-1.7634
|
||||
@ -72,22 +71,22 @@ X5.7239Y-2.5984
|
||||
X5.7244Y-3.4685
|
||||
X5.7874Y-1.8661
|
||||
X5.813Y-2.7559
|
||||
X5.8228Y-0.3181
|
||||
X5.8346Y-3.4173
|
||||
X5.8563Y-2.9011
|
||||
X5.888Y-0.7126
|
||||
X5.9016Y-2.7953
|
||||
X5.9026Y-0.565
|
||||
X5.939Y-2.0039
|
||||
X6.0827Y-0.5236
|
||||
X6.1164Y-3.1398
|
||||
X6.1442Y-0.9852
|
||||
X6.1501Y-0.7579
|
||||
X6.1693Y-0.4414
|
||||
X6.2121Y-0.7579
|
||||
X6.218Y-0.9862
|
||||
X6.1626Y-0.3622
|
||||
X6.1626Y-0.7559
|
||||
X6.2244Y-3.622
|
||||
X6.2255Y-0.7559
|
||||
X6.2492Y-0.3622
|
||||
X6.3681Y-2.9011
|
||||
X6.4173Y-2.7953
|
||||
X6.4439Y-0.565
|
||||
X6.4293Y-0.7126
|
||||
X6.4961Y-0.3181
|
||||
X6.6282Y-3.078
|
||||
X6.6282Y-3.1398
|
||||
X6.6398Y-3.6053
|
||||
@ -95,13 +94,13 @@ X6.8228Y-2.9016
|
||||
X6.8701Y-2.7953
|
||||
X6.9677Y-0.6075
|
||||
X7.081Y-3.1398
|
||||
X7.1142Y-1.9724
|
||||
X7.0984Y-2.2486
|
||||
X7.1339Y-3.2067
|
||||
X7.1358Y-2.9011
|
||||
X7.1693Y-3.4291
|
||||
X7.1732Y-1.9469
|
||||
X7.1732Y-2.0236
|
||||
X7.185Y-3.1457
|
||||
X7.185Y-3.085
|
||||
X7.2126Y-3.2638
|
||||
X7.2283Y-2.7953
|
||||
X7.2629Y-3.1457
|
||||
@ -112,26 +111,22 @@ X7.2835Y-2.0748
|
||||
X7.315Y-2.8809
|
||||
X7.315Y-3.1457
|
||||
X7.315Y-3.3022
|
||||
X7.3346Y-2.0492
|
||||
X7.3583Y-2.9055
|
||||
X7.3154Y-2.0492
|
||||
X7.3622Y-3.2717
|
||||
X7.3669Y-0.5315
|
||||
X7.378Y-2.9252
|
||||
X7.3953Y-2.0606
|
||||
X7.4114Y-1.9469
|
||||
X7.4114Y-2.0236
|
||||
X7.4114Y-2.9011
|
||||
X7.4556Y-0.5315
|
||||
X7.4606Y-2.7953
|
||||
X7.5217Y-1.9213
|
||||
X7.5217Y-1.9724
|
||||
X7.5217Y-2.0492
|
||||
X7.5442Y-0.5315
|
||||
X7.5551Y-2.0748
|
||||
X7.6329Y-0.5315
|
||||
X7.6378Y-1.998
|
||||
X7.6716Y-3.1398
|
||||
X7.7244Y-3.5079
|
||||
X7.7244Y-3.6409
|
||||
X8.6945Y-3.8571
|
||||
X8.9094Y-1.2559
|
||||
X9.3091Y-3.2571
|
||||
X9.4567Y-1.0827
|
||||
X9.6134Y-3.9272
|
||||
@ -149,7 +144,6 @@ X10.0874Y-2.436
|
||||
X10.1398Y-2.1806
|
||||
X10.3055Y-2.5899
|
||||
X10.3402Y-3.1242
|
||||
X10.3563Y-1.5634
|
||||
X10.4016Y-2.6519
|
||||
X10.5402Y-3.0386
|
||||
X10.5406Y-3.1242
|
||||
@ -157,8 +151,8 @@ X10.5512Y-2.2854
|
||||
X10.5512Y-2.4035
|
||||
X10.5512Y-2.5807
|
||||
T3
|
||||
X10.3677Y-1.7071
|
||||
X10.4661Y-1.7071
|
||||
X10.4075Y-1.7433
|
||||
X10.5059Y-1.7433
|
||||
T4
|
||||
X10.5983Y-3.0146
|
||||
X10.5983Y-3.2114
|
||||
@ -411,24 +405,22 @@ X8.1181Y-2.4311
|
||||
X8.2181Y-2.3311
|
||||
X8.2181Y-2.4311
|
||||
T9
|
||||
X7.0984Y-0.3937
|
||||
X7.1984Y-0.3937
|
||||
X7.2984Y-0.3937
|
||||
X7.3984Y-0.3937
|
||||
X7.4984Y-0.3937
|
||||
X7.5984Y-0.3937
|
||||
X4.7937Y-1.9626
|
||||
X4.7937Y-2.0626
|
||||
X4.7937Y-2.1626
|
||||
X4.7937Y-2.2626
|
||||
X4.7937Y-2.3626
|
||||
X4.7937Y-2.4626
|
||||
X4.8937Y-1.9626
|
||||
X4.8937Y-2.0626
|
||||
X4.8937Y-2.1626
|
||||
X4.8937Y-2.2626
|
||||
X4.8937Y-2.3626
|
||||
X4.8937Y-2.4626
|
||||
X10.4059Y-0.7904
|
||||
X10.4059Y-0.8904
|
||||
X10.4059Y-0.9904
|
||||
X10.4059Y-1.0904
|
||||
X10.4059Y-1.1904
|
||||
X10.4059Y-1.2904
|
||||
X10.4059Y-1.3904
|
||||
X10.4059Y-1.4904
|
||||
X10.5059Y-0.7904
|
||||
X10.5059Y-0.8904
|
||||
X10.5059Y-0.9904
|
||||
X10.5059Y-1.0904
|
||||
X10.5059Y-1.1904
|
||||
X10.5059Y-1.2904
|
||||
X10.5059Y-1.3904
|
||||
X10.5059Y-1.4904
|
||||
T10
|
||||
X8.5921Y-3.5933
|
||||
X8.6921Y-3.5933
|
||||
@ -438,6 +430,8 @@ X10.5059Y-2.1673
|
||||
X10.5059Y-2.7382
|
||||
X10.7008Y-2.1437
|
||||
X10.7008Y-2.7618
|
||||
T12
|
||||
X10.1319Y-1.8539
|
||||
T2
|
||||
X10.6908Y-2.9752G85X10.7184Y-2.9752
|
||||
G05
|
||||
|
@ -1,4 +1,4 @@
|
||||
### Module positions - created on Tue Sep 27 13:51:33 2022 ###
|
||||
### Module positions - created on Thu Sep 29 16:16:04 2022 ###
|
||||
### Printed by Pcbnew version kicad 5.0.2+dfsg1-1~bpo9+1
|
||||
## Unit = mm, Angle = deg.
|
||||
## Side : bottom
|
||||
|
@ -285,72 +285,6 @@ X Pin_6 6 200 -300 150 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Connector_Generic_Conn_01x06
|
||||
#
|
||||
DEF Connector_Generic_Conn_01x06 J 0 40 Y N 1 F N
|
||||
F0 "J" 0 300 50 H V C CNN
|
||||
F1 "Connector_Generic_Conn_01x06" 0 -400 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Connector*:*_1x??_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -50 -295 0 -305 1 1 6 N
|
||||
S -50 -195 0 -205 1 1 6 N
|
||||
S -50 -95 0 -105 1 1 6 N
|
||||
S -50 5 0 -5 1 1 6 N
|
||||
S -50 105 0 95 1 1 6 N
|
||||
S -50 205 0 195 1 1 6 N
|
||||
S -50 250 50 -350 1 1 10 f
|
||||
X Pin_1 1 -200 200 150 R 50 50 1 1 P
|
||||
X Pin_2 2 -200 100 150 R 50 50 1 1 P
|
||||
X Pin_3 3 -200 0 150 R 50 50 1 1 P
|
||||
X Pin_4 4 -200 -100 150 R 50 50 1 1 P
|
||||
X Pin_5 5 -200 -200 150 R 50 50 1 1 P
|
||||
X Pin_6 6 -200 -300 150 R 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Connector_Generic_Conn_02x06_Odd_Even
|
||||
#
|
||||
DEF Connector_Generic_Conn_02x06_Odd_Even J 0 40 Y N 1 F N
|
||||
F0 "J" 50 300 50 H V C CNN
|
||||
F1 "Connector_Generic_Conn_02x06_Odd_Even" 50 -400 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Connector*:*_2x??_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -50 -295 0 -305 1 1 6 N
|
||||
S -50 -195 0 -205 1 1 6 N
|
||||
S -50 -95 0 -105 1 1 6 N
|
||||
S -50 5 0 -5 1 1 6 N
|
||||
S -50 105 0 95 1 1 6 N
|
||||
S -50 205 0 195 1 1 6 N
|
||||
S -50 250 150 -350 1 1 10 f
|
||||
S 150 -295 100 -305 1 1 6 N
|
||||
S 150 -195 100 -205 1 1 6 N
|
||||
S 150 -95 100 -105 1 1 6 N
|
||||
S 150 5 100 -5 1 1 6 N
|
||||
S 150 105 100 95 1 1 6 N
|
||||
S 150 205 100 195 1 1 6 N
|
||||
X Pin_1 1 -200 200 150 R 50 50 1 1 P
|
||||
X Pin_10 10 300 -200 150 L 50 50 1 1 P
|
||||
X Pin_11 11 -200 -300 150 R 50 50 1 1 P
|
||||
X Pin_12 12 300 -300 150 L 50 50 1 1 P
|
||||
X Pin_2 2 300 200 150 L 50 50 1 1 P
|
||||
X Pin_3 3 -200 100 150 R 50 50 1 1 P
|
||||
X Pin_4 4 300 100 150 L 50 50 1 1 P
|
||||
X Pin_5 5 -200 0 150 R 50 50 1 1 P
|
||||
X Pin_6 6 300 0 150 L 50 50 1 1 P
|
||||
X Pin_7 7 -200 -100 150 R 50 50 1 1 P
|
||||
X Pin_8 8 300 -100 150 L 50 50 1 1 P
|
||||
X Pin_9 9 -200 -200 150 R 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Connector_Generic_Conn_02x07_Odd_Even
|
||||
#
|
||||
DEF Connector_Generic_Conn_02x07_Odd_Even J 0 40 Y N 1 F N
|
||||
@ -394,6 +328,53 @@ X Pin_9 9 -200 -100 150 R 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Connector_Generic_Conn_02x08_Odd_Even
|
||||
#
|
||||
DEF Connector_Generic_Conn_02x08_Odd_Even J 0 40 Y N 1 F N
|
||||
F0 "J" 50 400 50 H V C CNN
|
||||
F1 "Connector_Generic_Conn_02x08_Odd_Even" 50 -500 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Connector*:*_2x??_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -50 -395 0 -405 1 1 6 N
|
||||
S -50 -295 0 -305 1 1 6 N
|
||||
S -50 -195 0 -205 1 1 6 N
|
||||
S -50 -95 0 -105 1 1 6 N
|
||||
S -50 5 0 -5 1 1 6 N
|
||||
S -50 105 0 95 1 1 6 N
|
||||
S -50 205 0 195 1 1 6 N
|
||||
S -50 305 0 295 1 1 6 N
|
||||
S -50 350 150 -450 1 1 10 f
|
||||
S 150 -395 100 -405 1 1 6 N
|
||||
S 150 -295 100 -305 1 1 6 N
|
||||
S 150 -195 100 -205 1 1 6 N
|
||||
S 150 -95 100 -105 1 1 6 N
|
||||
S 150 5 100 -5 1 1 6 N
|
||||
S 150 105 100 95 1 1 6 N
|
||||
S 150 205 100 195 1 1 6 N
|
||||
S 150 305 100 295 1 1 6 N
|
||||
X Pin_1 1 -200 300 150 R 50 50 1 1 P
|
||||
X Pin_10 10 300 -100 150 L 50 50 1 1 P
|
||||
X Pin_11 11 -200 -200 150 R 50 50 1 1 P
|
||||
X Pin_12 12 300 -200 150 L 50 50 1 1 P
|
||||
X Pin_13 13 -200 -300 150 R 50 50 1 1 P
|
||||
X Pin_14 14 300 -300 150 L 50 50 1 1 P
|
||||
X Pin_15 15 -200 -400 150 R 50 50 1 1 P
|
||||
X Pin_16 16 300 -400 150 L 50 50 1 1 P
|
||||
X Pin_2 2 300 300 150 L 50 50 1 1 P
|
||||
X Pin_3 3 -200 200 150 R 50 50 1 1 P
|
||||
X Pin_4 4 300 200 150 L 50 50 1 1 P
|
||||
X Pin_5 5 -200 100 150 R 50 50 1 1 P
|
||||
X Pin_6 6 300 100 150 L 50 50 1 1 P
|
||||
X Pin_7 7 -200 0 150 R 50 50 1 1 P
|
||||
X Pin_8 8 300 0 150 L 50 50 1 1 P
|
||||
X Pin_9 9 -200 -100 150 R 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Connector_HDMI_A
|
||||
#
|
||||
DEF Connector_HDMI_A J 0 20 Y Y 1 F N
|
||||
@ -573,6 +554,22 @@ X ~ 2 0 -150 50 U 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Power_Management_TPS2041B
|
||||
#
|
||||
DEF Power_Management_TPS2041B U 0 40 Y Y 1 F N
|
||||
|
@ -1,5 +1,5 @@
|
||||
Drill report for /home/dolbeau/MAC/NuBusFPGA.V1_2/nubus-to-ztex/nubus-to-ztex.kicad_pcb
|
||||
Created on Tue Sep 27 13:51:12 2022
|
||||
Created on Thu Sep 29 16:15:55 2022
|
||||
|
||||
Copper Layer Stackup:
|
||||
=============================================================
|
||||
@ -12,7 +12,7 @@ Copper Layer Stackup:
|
||||
Drill file 'nubus-to-ztex-PTH.drl' contains
|
||||
plated through holes:
|
||||
=============================================================
|
||||
T1 0.40mm 0.016" (138 holes)
|
||||
T1 0.40mm 0.016" (131 holes)
|
||||
T2 0.60mm 0.024" (2 holes) (with 2 slots)
|
||||
T3 0.80mm 0.031" (2 holes)
|
||||
T4 0.85mm 0.033" (2 holes)
|
||||
@ -20,11 +20,12 @@ Drill file 'nubus-to-ztex-PTH.drl' contains
|
||||
T6 1.00mm 0.039" (96 holes)
|
||||
T7 1.02mm 0.040" (6 holes)
|
||||
T8 1.14mm 0.045" (128 holes)
|
||||
T9 1.19mm 0.047" (18 holes)
|
||||
T9 1.19mm 0.047" (16 holes)
|
||||
T10 1.20mm 0.047" (3 holes)
|
||||
T11 1.30mm 0.051" (4 holes)
|
||||
T12 2.20mm 0.087" (1 hole)
|
||||
|
||||
Total plated holes count 413
|
||||
Total plated holes count 405
|
||||
|
||||
|
||||
Drill file 'nubus-to-ztex-NPTH.drl' contains
|
||||
|
@ -1,99 +1,94 @@
|
||||
### Module positions - created on Tue Sep 27 13:51:33 2022 ###
|
||||
### Module positions - created on Thu Sep 29 16:16:04 2022 ###
|
||||
### Printed by Pcbnew version kicad 5.0.2+dfsg1-1~bpo9+1
|
||||
## Unit = mm, Angle = deg.
|
||||
## Side : top
|
||||
# Ref Val Package PosX PosY Rot Side
|
||||
C1 100nF C_0603_1608Metric 172.3750 -33.6000 180.0000 top
|
||||
C2 100nF C_0603_1608Metric 166.8400 -55.7600 0.0000 top
|
||||
C3 47uF_10V+ C_0805_2012Metric 131.3000 -56.1000 0.0000 top
|
||||
C4 100nF C_0603_1608Metric 119.2000 -84.7800 180.0000 top
|
||||
C5 100nF C_0603_1608Metric 182.5000 -72.9000 90.0000 top
|
||||
C6 100nF C_0603_1608Metric 138.7000 -90.1000 90.0000 top
|
||||
C7 100nF C_0603_1608Metric 135.4000 -72.2000 90.0000 top
|
||||
C8 100nF C_0603_1608Metric 190.2500 -46.9500 180.0000 top
|
||||
C9 100nF C_0603_1608Metric 157.0000 -21.4000 0.0000 top
|
||||
C10 47uF C_0805_2012Metric 157.0000 -23.6000 0.0000 top
|
||||
C11 100nF C_0603_1608Metric 147.0000 -49.4000 270.0000 top
|
||||
C12 100nF C_0603_1608Metric 127.1500 -51.1250 270.0000 top
|
||||
C13 100nF C_0603_1608Metric 181.6100 -13.2700 0.0000 top
|
||||
C14 100nF C_0603_1608Metric 149.9000 -72.9000 90.0000 top
|
||||
C17 100nF C_0603_1608Metric 163.0000 -72.9000 90.0000 top
|
||||
C18 100nF C_0603_1608Metric 174.5000 -72.9000 90.0000 top
|
||||
C19 100nF C_0603_1608Metric 189.5000 -72.9000 90.0000 top
|
||||
C20 10nF C_0603_1608Metric 253.8200 -53.0200 90.0000 top
|
||||
C21 47uF_10V+ C_0805_2012Metric 259.5400 -53.8100 180.0000 top
|
||||
C22 100nF C_0603_1608Metric 256.2900 -54.6000 90.0000 top
|
||||
C23 100nF C_0603_1608Metric 244.8600 -61.0900 90.0000 top
|
||||
C24 100nF C_0603_1608Metric 263.0300 -66.5700 270.0000 top
|
||||
C25 150uF C_1206_3216Metric 257.4100 -86.3600 180.0000 top
|
||||
C26 100nF C_0603_1608Metric 254.6300 -89.0600 0.0000 top
|
||||
C27 100nF C_0603_1608Metric 253.0500 -81.4600 180.0000 top
|
||||
C28 47uF_10V+ C_0805_2012Metric 221.7800 -96.0000 0.0000 top
|
||||
C30 100nF C_0603_1608Metric 137.7000 -46.8000 270.0000 top
|
||||
D1 RED LED_0805_2012Metric 187.1200 -15.9900 270.0000 top
|
||||
D2 RED LED_0805_2012Metric 189.3717 -15.9900 270.0000 top
|
||||
D3 BLUE LED_0805_2012Metric 114.8000 -15.5000 90.0000 top
|
||||
D4 RED LED_0805_2012Metric 191.6233 -16.0000 270.0000 top
|
||||
D5 RED LED_0805_2012Metric 193.8750 -16.0000 270.0000 top
|
||||
D6 YELLOW LED_0805_2012Metric 134.8800 -20.0603 90.0000 top
|
||||
D7 YELLOW LED_0805_2012Metric 137.4100 -20.0603 90.0000 top
|
||||
D8 YELLOW LED_0805_2012Metric 122.6100 -69.1500 180.0000 top
|
||||
D9 YELLOW LED_0805_2012Metric 175.7215 -20.0971 90.0000 top
|
||||
D10 YELLOW LED_0805_2012Metric 178.2615 -20.0971 90.0000 top
|
||||
D11 GREEN LED_0805_2012Metric 122.9026 -45.8770 180.0000 top
|
||||
D12 GREEN LED_0805_2012Metric 122.9026 -42.9104 180.0000 top
|
||||
D13 GREEN LED_0805_2012Metric 122.9026 -39.9437 180.0000 top
|
||||
D14 GREEN LED_0805_2012Metric 122.9026 -36.9770 180.0000 top
|
||||
FB1 Ferrite_Bead_Small L_0805_2012Metric 257.8700 -84.0700 0.0000 top
|
||||
J5 HDMI_A HDMI_A_Amphenol_10029449-111 268.9000 -62.3000 90.0000 top
|
||||
J6 USB_micro-B USB_Micro-B_Molex-105017-0001 270.6600 -79.0700 90.0000 top
|
||||
R1 590 R_0603_1608Metric 187.1200 -19.5800 90.0000 top
|
||||
R2 590 R_0603_1608Metric 189.3717 -19.5800 90.0000 top
|
||||
R3 590 R_0603_1608Metric 114.8000 -12.0000 270.0000 top
|
||||
R4 10k R_0603_1608Metric 160.5000 -72.2000 180.0000 top
|
||||
R5 10k R_0603_1608Metric 133.4978 -86.0071 90.0000 top
|
||||
R6 10k R_0603_1608Metric 131.6978 -86.0071 90.0000 top
|
||||
R7 10k R_0603_1608Metric 129.8978 -86.0071 90.0000 top
|
||||
R8 10k R_0603_1608Metric 128.0978 -86.0071 270.0000 top
|
||||
R9 590 R_0603_1608Metric 191.6233 -19.6000 90.0000 top
|
||||
R10 590 R_0603_1608Metric 193.8750 -19.6500 90.0000 top
|
||||
R11 590 R_0603_1608Metric 134.8800 -16.0603 270.0000 top
|
||||
R12 590 R_0603_1608Metric 137.4200 -16.0603 270.0000 top
|
||||
R13 590 R_0603_1608Metric 118.6100 -69.1500 0.0000 top
|
||||
R14 590 R_0603_1608Metric 175.7215 -16.2171 270.0000 top
|
||||
R15 590 R_0603_1608Metric 178.2615 -16.2171 270.0000 top
|
||||
R16 590 R_0603_1608Metric 119.0526 -45.8770 0.0000 top
|
||||
R17 590 R_0603_1608Metric 119.0526 -42.9104 0.0000 top
|
||||
R18 590 R_0603_1608Metric 119.0526 -39.9437 0.0000 top
|
||||
R19 590 R_0603_1608Metric 119.0526 -36.9770 0.0000 top
|
||||
R22 27 R_0603_1608Metric 263.5100 -76.5600 180.0000 top
|
||||
R23 27 R_0603_1608Metric 263.5100 -82.1500 180.0000 top
|
||||
R24 15k R_0603_1608Metric 260.8600 -77.8100 90.0000 top
|
||||
R25 15k R_0603_1608Metric 260.8600 -80.9000 90.0000 top
|
||||
R26 10k R_0603_1608Metric 249.2400 -86.3100 180.0000 top
|
||||
R27 10k R_0603_1608Metric 249.2400 -84.1100 180.0000 top
|
||||
R33 1M R_1210_3225Metric 264.4500 -37.6400 180.0000 top
|
||||
R36 10k R_0603_1608Metric 114.4000 -83.7000 180.0000 top
|
||||
R37 10k R_0603_1608Metric 120.3000 -79.8000 0.0000 top
|
||||
R38 10k R_0603_1608Metric 125.5000 -83.3000 180.0000 top
|
||||
R39 10k R_0603_1608Metric 121.4000 -82.7000 0.0000 top
|
||||
R40 10k R_0603_1608Metric 182.1000 -85.1000 90.0000 top
|
||||
R41 10k R_0603_1608Metric 186.1000 -71.3000 180.0000 top
|
||||
R42 10k R_0603_1608Metric 143.0000 -84.9000 180.0000 top
|
||||
R43 10k R_0603_1608Metric 144.6000 -83.2000 0.0000 top
|
||||
R44 10k R_0603_1608Metric 135.9000 -89.6000 90.0000 top
|
||||
R45 10k R_0603_1608Metric 139.6000 -84.9000 180.0000 top
|
||||
U1 74LVT125 TSSOP-14_4.4x5mm_P0.65mm 116.7000 -88.7800 0.0000 top
|
||||
U2 74LVT125 TSSOP-14_4.4x5mm_P0.65mm 184.5000 -78.5000 90.0000 top
|
||||
U3 74LVT125 TSSOP-14_4.4x5mm_P0.65mm 143.7500 -88.7500 180.0000 top
|
||||
U4 SN74CB3T3125PWR TSSOP-14_4.4x5mm_P0.65mm 132.5000 -77.5000 0.0000 top
|
||||
U5 74LVT245BPW,118 TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio 152.5000 -78.5000 90.0000 top
|
||||
U6 74LVT245BPW,118 TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio 165.5000 -78.5000 90.0000 top
|
||||
U7 74LVT245BPW,118 TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio 177.0000 -78.5000 90.0000 top
|
||||
U8 74LVT245BPW,118 TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio 192.0000 -78.5000 90.0000 top
|
||||
U10 SN65220 SOT-23-6 265.4000 -79.3550 180.0000 top
|
||||
U11 TPS2051C SOT-23-5 252.9000 -85.2100 270.0000 top
|
||||
U12 SN74CB3T1G125DBVR SOT-23-5 149.9000 -48.5000 90.0000 top
|
||||
U13 SN74CB3T3125PWR TSSOP-14_4.4x5mm_P0.65mm 186.6250 -50.7500 0.0000 top
|
||||
U14 SN74CB3T3245PWR TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio 142.2000 -48.8000 90.0000 top
|
||||
# Ref Val Package PosX PosY Rot Side
|
||||
C1 100nF C_0603_1608Metric 172.3750 -33.6000 180.0000 top
|
||||
C2 100nF C_0603_1608Metric 166.8400 -55.7600 0.0000 top
|
||||
C3 47uF_10V+ C_0805_2012Metric 131.3000 -56.1000 0.0000 top
|
||||
C4 100nF C_0603_1608Metric 119.2000 -84.7800 180.0000 top
|
||||
C5 100nF C_0603_1608Metric 182.5000 -72.9000 90.0000 top
|
||||
C6 100nF C_0603_1608Metric 138.7000 -90.1000 90.0000 top
|
||||
C7 100nF C_0603_1608Metric 135.4000 -72.2000 90.0000 top
|
||||
C8 100nF C_0603_1608Metric 190.2500 -46.9500 180.0000 top
|
||||
C9 100nF C_0603_1608Metric 157.3400 -21.8000 0.0000 top
|
||||
C10 47uF_10V+ C_0805_2012Metric 157.3400 -24.0000 0.0000 top
|
||||
C11 100nF C_0603_1608Metric 147.0000 -49.4000 270.0000 top
|
||||
C14 100nF C_0603_1608Metric 149.9000 -72.9000 90.0000 top
|
||||
C15 100nF C_0603_1608Metric 261.1850 -37.0700 90.0000 top
|
||||
C17 100nF C_0603_1608Metric 163.0000 -72.9000 90.0000 top
|
||||
C18 100nF C_0603_1608Metric 174.5000 -72.9000 90.0000 top
|
||||
C19 100nF C_0603_1608Metric 189.5000 -72.9000 90.0000 top
|
||||
C20 10nF C_0603_1608Metric 253.8200 -53.0200 90.0000 top
|
||||
C21 47uF_10V+ C_0805_2012Metric 259.5400 -53.8100 180.0000 top
|
||||
C22 100nF C_0603_1608Metric 256.2900 -54.6000 90.0000 top
|
||||
C23 100nF C_0603_1608Metric 244.8600 -61.0900 90.0000 top
|
||||
C24 100nF C_0603_1608Metric 263.0300 -66.5700 270.0000 top
|
||||
C25 150uF_(could_be_>=_100_uF_or_even_less,_probably) C_1206_3216Metric 257.4100 -86.3600 180.0000 top
|
||||
C26 100nF C_0603_1608Metric 254.6300 -89.0600 0.0000 top
|
||||
C27 100nF C_0603_1608Metric 253.0500 -81.4600 180.0000 top
|
||||
C28 47uF_10V+ C_0805_2012Metric 221.7800 -96.0000 0.0000 top
|
||||
C30 100nF C_0603_1608Metric 137.7000 -46.8000 270.0000 top
|
||||
D1 RED LED_0805_2012Metric 117.9300 -40.4100 0.0000 top
|
||||
D2 RED LED_0805_2012Metric 117.9300 -38.1583 0.0000 top
|
||||
D3 BLUE LED_0805_2012Metric 114.8000 -15.5000 90.0000 top
|
||||
D6 YELLOW LED_0805_2012Metric 134.8800 -20.0603 90.0000 top
|
||||
D7 YELLOW LED_0805_2012Metric 137.4100 -20.0603 90.0000 top
|
||||
D8 YELLOW LED_0805_2012Metric 122.6100 -69.1500 180.0000 top
|
||||
D9 YELLOW LED_0805_2012Metric 175.7215 -20.0971 90.0000 top
|
||||
D10 YELLOW LED_0805_2012Metric 178.2615 -20.0971 90.0000 top
|
||||
D11 GREEN LED_0805_2012Metric 122.9026 -52.8770 180.0000 top
|
||||
D12 GREEN LED_0805_2012Metric 122.9026 -49.9104 180.0000 top
|
||||
D13 GREEN LED_0805_2012Metric 122.9026 -46.9437 180.0000 top
|
||||
D14 GREEN LED_0805_2012Metric 122.9026 -43.9770 180.0000 top
|
||||
FB1 Ferrite_Bead_Small L_0805_2012Metric 257.8700 -84.0700 0.0000 top
|
||||
J5 HDMI_A HDMI_A_Amphenol_10029449-111 268.9000 -62.3000 90.0000 top
|
||||
J6 USB_micro-B USB_Micro-B_Molex-105017-0001 270.6600 -79.0700 90.0000 top
|
||||
R1 590 R_0603_1608Metric 121.5200 -40.4100 180.0000 top
|
||||
R2 590 R_0603_1608Metric 121.5200 -38.1583 180.0000 top
|
||||
R3 590 R_0603_1608Metric 114.8000 -12.0000 270.0000 top
|
||||
R4 10k R_0603_1608Metric 160.5000 -72.2000 180.0000 top
|
||||
R5 10k R_0603_1608Metric 133.4978 -86.0071 90.0000 top
|
||||
R6 10k R_0603_1608Metric 131.6978 -86.0071 90.0000 top
|
||||
R7 10k R_0603_1608Metric 129.8978 -86.0071 90.0000 top
|
||||
R8 10k R_0603_1608Metric 128.0978 -86.0071 270.0000 top
|
||||
R11 590 R_0603_1608Metric 134.8800 -16.0603 270.0000 top
|
||||
R12 590 R_0603_1608Metric 137.4200 -16.0603 270.0000 top
|
||||
R13 590 R_0603_1608Metric 118.6100 -69.1500 0.0000 top
|
||||
R14 590 R_0603_1608Metric 175.7215 -16.2171 270.0000 top
|
||||
R15 590 R_0603_1608Metric 178.2615 -16.2171 270.0000 top
|
||||
R16 590 R_0603_1608Metric 119.0526 -52.8770 0.0000 top
|
||||
R17 590 R_0603_1608Metric 119.0526 -49.9104 0.0000 top
|
||||
R18 590 R_0603_1608Metric 119.0526 -46.9437 0.0000 top
|
||||
R19 590 R_0603_1608Metric 119.0526 -43.9770 0.0000 top
|
||||
R22 27 R_0603_1608Metric 263.5100 -76.5600 180.0000 top
|
||||
R23 27 R_0603_1608Metric 263.5100 -82.1500 180.0000 top
|
||||
R24 15k R_0603_1608Metric 260.8600 -77.8100 90.0000 top
|
||||
R25 15k R_0603_1608Metric 260.8600 -80.9000 90.0000 top
|
||||
R26 10k R_0603_1608Metric 249.2400 -86.3100 180.0000 top
|
||||
R27 10k R_0603_1608Metric 249.2400 -84.1100 180.0000 top
|
||||
R33 1M R_1210_3225Metric 265.4500 -50.3200 180.0000 top
|
||||
R36 10k R_0603_1608Metric 114.4000 -83.7000 180.0000 top
|
||||
R37 10k R_0603_1608Metric 120.3000 -79.8000 0.0000 top
|
||||
R38 10k R_0603_1608Metric 125.5000 -83.3000 180.0000 top
|
||||
R39 10k R_0603_1608Metric 121.4000 -82.7000 0.0000 top
|
||||
R40 10k R_0603_1608Metric 182.1000 -85.1000 90.0000 top
|
||||
R41 10k R_0603_1608Metric 186.1000 -71.3000 180.0000 top
|
||||
R42 10k R_0603_1608Metric 143.0000 -84.9000 180.0000 top
|
||||
R43 10k R_0603_1608Metric 144.6000 -83.2000 0.0000 top
|
||||
R44 10k R_0603_1608Metric 135.9000 -89.6000 90.0000 top
|
||||
R45 10k R_0603_1608Metric 139.6000 -84.9000 180.0000 top
|
||||
U1 74LVT125 TSSOP-14_4.4x5mm_P0.65mm 116.7000 -88.7800 0.0000 top
|
||||
U2 74LVT125 TSSOP-14_4.4x5mm_P0.65mm 184.5000 -78.5000 90.0000 top
|
||||
U3 74LVT125 TSSOP-14_4.4x5mm_P0.65mm 143.7500 -88.7500 180.0000 top
|
||||
U4 SN74CB3T3125PWR TSSOP-14_4.4x5mm_P0.65mm 132.5000 -77.5000 0.0000 top
|
||||
U5 74LVT245BPW,118 TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio 152.5000 -78.5000 90.0000 top
|
||||
U6 74LVT245BPW,118 TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio 165.5000 -78.5000 90.0000 top
|
||||
U7 74LVT245BPW,118 TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio 177.0000 -78.5000 90.0000 top
|
||||
U8 74LVT245BPW,118 TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio 192.0000 -78.5000 90.0000 top
|
||||
U10 SN65220 SOT-23-6 265.4000 -79.3550 180.0000 top
|
||||
U11 TPS2051C SOT-23-5 252.9000 -85.2100 270.0000 top
|
||||
U12 SN74CB3T1G125DBVR SOT-23-5 149.9000 -48.5000 90.0000 top
|
||||
U13 SN74CB3T3125PWR TSSOP-14_4.4x5mm_P0.65mm 186.6250 -50.7500 0.0000 top
|
||||
U14 SN74CB3T3245PWR TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio 142.2000 -48.8000 90.0000 top
|
||||
## End
|
||||
|
@ -2,7 +2,7 @@ Part/Designator,Manufacture Part Number/Seeed SKU,Quantity,URL
|
||||
"R4,R5,R6,R7,R8,R26,R27,R36,R37,R38,R39,R40,R41,R42,R43,R44,R45",0603WAF1002T5E,17,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF1002T5E_C25804.html
|
||||
"R24,R25",0603WAF1502T5E,2,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF1502T5E_C22809.html
|
||||
"R22,R23",0603WAF270JT5E,2,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF270JT5E_C25190.html
|
||||
"R1,R2,R3,R9,R10,R11,R12,R13,R14,R15,R16,R17,R18,R19",0603WAF5900T5E,14,https://www.lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF5900T5E_C23084.html
|
||||
"R1,R2,R3,R11,R12,R13,R14,R15,R16,R17,R18,R19",0603WAF5900T5E,12,https://www.lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF5900T5E_C23084.html
|
||||
J4,0850030567,1,https://www.mouser.fr/ProductDetail/Molex/85003-0567?qs=U4pz39agNJB6P1oBpJ4bJA%3D%3D
|
||||
J5,10029449-111RLF,1,https://lcsc.com/product-detail/D-Sub-DVI-HDMI-Connectors_Amphenol-ICC-10029449-111RLF_C427307.html
|
||||
J6,105017-0001,1,https://lcsc.com/product-detail/USB-Connectors_MOLEX-1050170001_C136000.html
|
||||
@ -10,19 +10,16 @@ R33,1210W2F1004T5E,1,https://www.lcsc.com/product-detail/Chip-Resistor-Surface-M
|
||||
J2,47219-2001,1,https://eu.mouser.com/ProductDetail/Molex/47219-2001?qs=6kT3pPPHxnVaoXw6Dd7beQ%3D%3D
|
||||
J7,640456-3,1,https://www.lcsc.com/product-detail/Wire-To-Board-Wire-To-Wire-Connector_TE-Connectivity-640456-3_C86503.html
|
||||
"U1,U2,U3","74LVT125PW,118",3,https://eu.mouser.com/ProductDetail/Nexperia/74LVT125PW118?qs=me8TqzrmIYWdhdg6%252BsGGHw%3D%3D
|
||||
"U5,U6,U7,U8","74LVT245BPW,118",4,https://www.digikey.fr/fr/products/detail/nexperia-usa-inc/74LVT245BPW-118/1231957
|
||||
"JAB1,JCD1",77313-101-64LF,2,https://eu.mouser.com/ProductDetail/Amphenol-FCI/77313-101-64LF?qs=xJiur%252Bgubk1MSan%2F7C0v%252BA%3D%3D
|
||||
J1,87831-1420,1,https://www2.mouser.com/ProductDetail/Molex/87831-1420?qs=QtQX4uD3c2VDCL534TqpVg%3D%3D
|
||||
J9,A2541HWR-2x6P,1,https://lcsc.com/product-detail/Pin-Header-Female-Header_Changjiang-Connectors-A2541HWR-2x6P_C239357.html
|
||||
J10,A2541HWV-6P,1,https://www.lcsc.com/product-detail/Female-Headers_CJT-Changjiang-Connectors-A2541HWV-6P_C2897443.html
|
||||
"C3,C21,C28",C2012X5R1A476MTJ00E,3,https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_TDK-C2012X5R1A476MTJ00E_C76636.html
|
||||
J8,A2541HWR-2x8P,1,https://www.lcsc.com/product-detail/Female-Headers_CJT-Changjiang-Connectors-A2541HWR-2x8P_C239359.html
|
||||
C20,CC0603KRX7R8BB103,1,https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB103_C327204.html
|
||||
"C1,C2,C4,C5,C6,C7,C8,C9,C11,C12,C13,C14,C17,C18,C19,C22,C23,C24,C26,C27,C30",CC0603KRX7R8BB104,21,
|
||||
C10,GRM21BR60J476ME15L,1,
|
||||
C25,GRM31CR60J157ME11L,1,https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM31CR60J157ME11L_C528968.html
|
||||
"C1,C2,C4,C5,C6,C7,C8,C9,C11,C14,C15,C17,C18,C19,C22,C23,C24,C26,C27,C30",CC0603KRX7R8BB104,20,https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html
|
||||
"C3,C10,C21,C28",GRM21BR61A476ME15K,4,https://www.lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM21BR61A476ME15K_C2292827.html
|
||||
C25,JMK316ABJ107ML-T,1,https://www.lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Taiyo-Yuden-JMK316ABJ107ML-T_C268006.html
|
||||
C39,KM010M400E110A,1,https://lcsc.com/product-detail/Aluminum-Electrolytic-Capacitors-Leaded_Capxon-International-Elec-KM010M400E110A_C59365.html
|
||||
"D11,D12,D13,D14",LTST-C170KGKT,4,https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KGKT_C98221.html
|
||||
"D1,D2,D4,D5",LTST-C170KRKT,4,https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KRKT_C94868.html
|
||||
"D1,D2",LTST-C170KRKT,2,https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KRKT_C94868.html
|
||||
"D6,D7,D8,D9,D10",LTST-C170KSKT,5,https://lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KSKT_C125091.html
|
||||
D3,LTST-C170TBKT,1,https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_LTST-C170TBKT-blue_C98222.html
|
||||
FB1,PZ2012U221-2R0TF,1,https://lcsc.com/product-detail/Ferrite-Beads_Sunlord-PZ2012U221-2R0TF_C44361.html
|
||||
@ -31,5 +28,6 @@ U10,SN65220DBVT,1,https://www.lcsc.com/product-detail/Others_Texas-Instruments-T
|
||||
U12,SN74CB3T1G125DBVR,1,https://www.lcsc.com/product-detail/Analog-Switches-Multiplexers_Texas-Instruments-SN74CB3T1G125DBVR_C134001.html
|
||||
"U4,U13",SN74CB3T3125PWR,2,https://www.mouser.fr/ProductDetail/?qs=mE33ZKBHyE5AjFWEyhuB4Q%3D%3D
|
||||
U14,SN74CB3T3245PWR,1,https://www.lcsc.com/product-detail/Signal-Switches-Encoders-Decoders-Multiplexers_Texas-Instruments-SN74CB3T3245PWR_C15298.html
|
||||
"U5,U6,U7,U8",SN74LVT245BPWR,4,https://lcsc.com/product-detail/Receivers-Transceivers_Texas-Instruments-SN74LVT245BPWR_C74214.html
|
||||
U9,TPD12S016PWR,1,https://lcsc.com/product-detail/Interface-Specialized_Texas-Instruments-TPD12S016PWR_C201665.html
|
||||
U11,TPS2051CDBVR,1,https://lcsc.com/product-detail/Power-Distribution-Switches_Texas-Instruments-TPS2051CDBVR_C129581.html
|
||||
|
|
@ -1,6 +1,7 @@
|
||||
P CODE 00
|
||||
P UNITS CUST 0
|
||||
P DIM N
|
||||
317GND VIA MD0157PA00X+089094Y-012559X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+054134Y-035162X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+100874Y-024360X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+099567Y-032571X0315Y0000R000S3
|
||||
@ -28,7 +29,6 @@ P DIM N
|
||||
317GND VIA MD0157PA00X+105512Y-022854X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+100591Y-023081X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+100409Y-021186X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+103563Y-015634X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+045354Y-035209X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+072283Y-027953X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+045787Y-006471X0315Y0000R000S3
|
||||
@ -38,7 +38,6 @@ P DIM N
|
||||
317GND VIA MD0157PA00X+093091Y-032571X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+062244Y-036220X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+077244Y-036409X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+077244Y-035079X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+048740Y-036614X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+050404Y-029744X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+051516Y-030512X0315Y0000R000S3
|
||||
@ -51,11 +50,6 @@ P DIM N
|
||||
317GND VIA MD0157PA00X+072835Y-020748X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+074114Y-019469X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+074114Y-020236X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+060827Y-005236X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+059026Y-005650X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+064439Y-005650X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+062180Y-009862X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+062121Y-007579X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+054824Y-018740X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+057136Y-019764X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+059390Y-020039X0315Y0000R000S3
|
||||
@ -64,18 +58,21 @@ P DIM N
|
||||
317GND VIA MD0157PA00X+046667Y-038866X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+094567Y-010827X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+066282Y-030780X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+073669Y-005315X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+074556Y-005315X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+075442Y-005315X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+076329Y-005315X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+045539Y-015909X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+062492Y-003622X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+062255Y-007559X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+058228Y-003181X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+058880Y-007126X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+064293Y-007126X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+064961Y-003181X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+053327Y-029222X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+097669Y-025098X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+063681Y-029011X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+058563Y-029011X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+101398Y-021806X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+068228Y-029016X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+046561Y-017480X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+046561Y-015118X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+046561Y-020236X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+046561Y-017874X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+054134Y-035782X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+096673Y-022825X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+053830Y-033031X0315Y0000R000S3
|
||||
@ -90,14 +87,13 @@ P DIM N
|
||||
317+3V3 VIA MD0157PA00X+056609Y-033898X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+055271Y-032953X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+075217Y-019213X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+061501Y-007579X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+061693Y-004414X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+061442Y-009852X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+054213Y-017634X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+057874Y-018661X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+069677Y-006075X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+053598Y-006013X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+045866Y-027224X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+061626Y-003622X0315Y0000R000S3
|
||||
317+3V3 VIA MD0157PA00X+061626Y-007559X0315Y0000R000S3
|
||||
317+5V VIA MD0157PA00X+099941Y-034512X0315Y0000R000S3
|
||||
317+5V VIA MD0157PA00X+096941Y-024359X0315Y0000R000S3
|
||||
317+5V VIA MD0157PA00X+051850Y-034646X0315Y0000R000S3
|
||||
@ -106,26 +102,21 @@ P DIM N
|
||||
317+5V VIA MD0157PA00X+052528Y-034652X0315Y0000R000S3
|
||||
317+5V VIA MD0157PA00X+086945Y-038571X0315Y0000R000S3
|
||||
317~RESET_5V VIA MD0157PA00X+076378Y-019980X0315Y0000R000S3
|
||||
317~TM1_5V VIA MD0157PA00X+071142Y-019724X0315Y0000R000S3
|
||||
317~TM1_5V VIA MD0157PA00X+071850Y-031457X0315Y0000R000S3
|
||||
317~TM2_5V VIA MD0157PA00X+073583Y-029055X0315Y0000R000S3
|
||||
317~TM1_5V VIA MD0157PA00X+070984Y-022486X0315Y0000R000S3
|
||||
317~TM1_5V VIA MD0157PA00X+071850Y-030850X0315Y0000R000S3
|
||||
317~TM2_5V VIA MD0157PA00X+075551Y-020748X0315Y0000R000S3
|
||||
317~TM2_5V VIA MD0157PA00X+073780Y-029252X0315Y0000R000S3
|
||||
317~TM0_5V VIA MD0157PA00X+073150Y-033022X0315Y0000R000S3
|
||||
317~TM0_5V VIA MD0157PA00X+073150Y-031457X0315Y0000R000S3
|
||||
317~TM0_5V VIA MD0157PA00X+073346Y-020492X0315Y0000R000S3
|
||||
317~ID3_3V3 VIA MD0157PA00X+049291Y-014558X0315Y0000R000S3
|
||||
317~ID2_3V3 VIA MD0157PA00X+049291Y-015726X0315Y0000R000S3
|
||||
317~ID1_3V3 VIA MD0157PA00X+049291Y-016894X0315Y0000R000S3
|
||||
317~ID0_3V3 VIA MD0157PA00X+049291Y-018062X0315Y0000R000S3
|
||||
317~TM0_5V VIA MD0157PA00X+073154Y-020492X0315Y0000R000S3
|
||||
317~CLK_3V3 VIA MD0157PA00X+053927Y-031024X0315Y0000R000S3
|
||||
317~CLK2X_5V VIA MD0157PA00X+058130Y-027559X0315Y0000R000S3
|
||||
317~START_3V3 VIA MD0157PA00X+054008Y-021917X0315Y0000R000S3
|
||||
317~START_3V3 VIA MD0157PA00X+054098Y-009606X0315Y0000R000S3
|
||||
317~ACK_3V3 VIA MD0157PA00X+053102Y-009606X0315Y0000R000S3
|
||||
317~RESET_3V3 VIA MD0157PA00X+075217Y-019724X0315Y0000R000S3
|
||||
317~TM0_3V3 VIA MD0157PA00X+071732Y-020236X0315Y0000R000S3
|
||||
317~TM1_3V3 VIA MD0157PA00X+071732Y-019469X0315Y0000R000S3
|
||||
317HDMI_5V VIA MD0157PA00X+100756Y-024929X0315Y0000R000S3
|
||||
317HDMI_5V VIA MD0157PA00X+103055Y-025899X0315Y0000R000S3
|
||||
317~TM2_3V3 VIA MD0157PA00X+075217Y-020492X0315Y0000R000S3
|
||||
317~TM2_3V3 VIA MD0157PA00X+073953Y-020606X0315Y0000R000S3
|
||||
317ARB1_O_N VIA MD0157PA00X+057239Y-025984X0315Y0000R000S3
|
||||
317ARB3_O_N VIA MD0157PA00X+055266Y-032470X0315Y0000R000S3
|
||||
317ARB2_O_N VIA MD0157PA00X+056024Y-025906X0315Y0000R000S3
|
||||
@ -139,14 +130,27 @@ P DIM N
|
||||
317TM0_N_O VIA MD0157PA00X+072629Y-031457X0315Y0000R000S3
|
||||
317TM2_O_N VIA MD0157PA00X+073150Y-028809X0315Y0000R000S3
|
||||
317TM2_OE_N VIA MD0157PA00X+072717Y-029055X0315Y0000R000S3
|
||||
317LED3 J10 -1 D0469PA00X+075984Y-003937X0669Y0669R090S0
|
||||
317LED2 J10 -2 D0469PA00X+074984Y-003937X0669Y0669R090S0
|
||||
317LED1 J10 -3 D0469PA00X+073984Y-003937X0669Y0669R090S0
|
||||
317LED0 J10 -4 D0469PA00X+072984Y-003937X0669Y0669R090S0
|
||||
317GND J10 -5 D0469PA00X+071984Y-003937X0669Y0669R090S0
|
||||
317+3V3 J10 -6 D0469PA00X+070984Y-003937X0669Y0669R090S0
|
||||
327+3V3 C13 -1 A01X+071190Y-005224X0344Y0374R000S2
|
||||
327GND C13 -2 A01X+071810Y-005224X0344Y0374R000S2
|
||||
317/HDMI/HDMI_5V VIA MD0157PA00X+100756Y-024929X0315Y0000R000S3
|
||||
317/HDMI/HDMI_5V VIA MD0157PA00X+103055Y-025899X0315Y0000R000S3
|
||||
317SHIELD H1 -1 D0866PA00X+101319Y-018539X1732Y0000R000S0
|
||||
317+3V3 J8 -1 D0469PA00X+104059Y-014904X0669Y0669R180S0
|
||||
317+3V3 J8 -2 D0469PA00X+105059Y-014904X0669Y0669R180S0
|
||||
317GND J8 -3 D0469PA00X+104059Y-013904X0669Y0669R180S0
|
||||
317GND J8 -4 D0469PA00X+105059Y-013904X0669Y0669R180S0
|
||||
317PMOD-5 J8 -5 D0469PA00X+104059Y-012904X0669Y0669R180S0
|
||||
317PMOD-6 J8 -6 D0469PA00X+105059Y-012904X0669Y0669R180S0
|
||||
317PMOD-7 J8 -7 D0469PA00X+104059Y-011904X0669Y0669R180S0
|
||||
317PMOD-8 J8 -8 D0469PA00X+105059Y-011904X0669Y0669R180S0
|
||||
317PMOD-9 J8 -9 D0469PA00X+104059Y-010904X0669Y0669R180S0
|
||||
317PMOD-10 J8 -10 D0469PA00X+105059Y-010904X0669Y0669R180S0
|
||||
317PMOD-11 J8 -11 D0469PA00X+104059Y-009904X0669Y0669R180S0
|
||||
317PMOD-12 J8 -12 D0469PA00X+105059Y-009904X0669Y0669R180S0
|
||||
317PMOD-13 J8 -13 D0469PA00X+104059Y-008904X0669Y0669R180S0
|
||||
317PMOD-14 J8 -14 D0469PA00X+105059Y-008904X0669Y0669R180S0
|
||||
317PMOD-15 J8 -15 D0469PA00X+104059Y-007904X0669Y0669R180S0
|
||||
317PMOD-16 J8 -16 D0469PA00X+105059Y-007904X0669Y0669R180S0
|
||||
327+3V3 C15 -1 A01X+102829Y-014905X0344Y0374R270S2
|
||||
327GND C15 -2 A01X+102829Y-014284X0344Y0374R270S2
|
||||
327~START_3V3 D7 -1 A01X+054098Y-008267X0384Y0551R270S2
|
||||
327NET-(D7-PAD2) D7 -2 A01X+054098Y-007529X0384Y0551R270S2
|
||||
327NET-(D6-PAD2) D6 -2 A01X+053102Y-007529X0384Y0551R270S2
|
||||
@ -167,35 +171,13 @@ P DIM N
|
||||
327+3V3 R14 -1 A01X+069182Y-006075X0344Y0374R090S2
|
||||
327+3V3 R15 -1 A01X+070182Y-006075X0344Y0374R090S2
|
||||
327NET-(D10-PAD2) R15 -2 A01X+070182Y-006695X0344Y0374R090S2
|
||||
327NET-(D4-PAD2) D4 -2 A01X+075442Y-006668X0384Y0551R090S2
|
||||
327GND D4 -1 A01X+075442Y-005930X0384Y0551R090S2
|
||||
327GND D5 -1 A01X+076329Y-005930X0384Y0551R090S2
|
||||
327NET-(D5-PAD2) D5 -2 A01X+076329Y-006668X0384Y0551R090S2
|
||||
327NET-(D5-PAD2) R10 -2 A01X+076329Y-007426X0344Y0374R270S2
|
||||
327LED3 R10 -1 A01X+076329Y-008046X0344Y0374R270S2
|
||||
327LED2 R9 -1 A01X+075442Y-008027X0344Y0374R270S2
|
||||
327NET-(D4-PAD2) R9 -2 A01X+075442Y-007406X0344Y0374R270S2
|
||||
327+3V3 C12 -1 A01X+050059Y-019818X0344Y0374R090S2
|
||||
327GND C12 -2 A01X+050059Y-020438X0344Y0374R090S2
|
||||
317PMOD-12 J9 -12 D0469PA00X+047937Y-024626X0669Y0669R000S0
|
||||
317PMOD-11 J9 -11 D0469PA00X+048937Y-024626X0669Y0669R000S0
|
||||
317PMOD-10 J9 -10 D0469PA00X+047937Y-023626X0669Y0669R000S0
|
||||
317PMOD-9 J9 -9 D0469PA00X+048937Y-023626X0669Y0669R000S0
|
||||
317PMOD-8 J9 -8 D0469PA00X+047937Y-022626X0669Y0669R000S0
|
||||
317PMOD-7 J9 -7 D0469PA00X+048937Y-022626X0669Y0669R000S0
|
||||
317PMOD-6 J9 -6 D0469PA00X+047937Y-021626X0669Y0669R000S0
|
||||
317PMOD-5 J9 -5 D0469PA00X+048937Y-021626X0669Y0669R000S0
|
||||
317GND J9 -4 D0469PA00X+047937Y-020626X0669Y0669R000S0
|
||||
317GND J9 -3 D0469PA00X+048937Y-020626X0669Y0669R000S0
|
||||
317+3V3 J9 -2 D0469PA00X+047937Y-019626X0669Y0669R000S0
|
||||
317+3V3 J9 -1 D0469PA00X+048937Y-019626X0669Y0669R000S0
|
||||
327+3V3 C11 -1 A01X+057874Y-019139X0344Y0374R090S2
|
||||
327GND C11 -2 A01X+057874Y-019759X0344Y0374R090S2
|
||||
327GND U12 -1 A01X+058642Y-019528X0417Y0256R270S2
|
||||
327~CLK2X_5V U12 -2 A01X+059016Y-019528X0417Y0256R270S2
|
||||
327GND U12 -3 A01X+059390Y-019528X0417Y0256R270S2
|
||||
327~CLK2X_3V3 U12 -4 A01X+059390Y-018661X0417Y0256R270S2
|
||||
327VCC U12 -5 A01X+058642Y-018661X0417Y0256R270S2
|
||||
327+3V3 U12 -5 A01X+058642Y-018661X0417Y0256R270S2
|
||||
327N/C U14 -1 A01X+054833Y-020315X0610Y0177R270S2
|
||||
327~ID3_5V U14 -2 A01X+055089Y-020315X0610Y0177R270S2
|
||||
327~ID2_5V U14 -3 A01X+055344Y-020315X0610Y0177R270S2
|
||||
@ -216,22 +198,22 @@ P DIM N
|
||||
327~ID3_3V3 U14 -18 A01X+055344Y-018110X0610Y0177R270S2
|
||||
327GND U14 -19 A01X+055089Y-018110X0610Y0177R270S2
|
||||
327+3V3 U14 -20 A01X+054833Y-018110X0610Y0177R270S2
|
||||
327+3V3 C9 -1 A01X+061501Y-008425X0344Y0374R000S2
|
||||
327GND C9 -2 A01X+062121Y-008425X0344Y0374R000S2
|
||||
327+3V3 C10 -1 A01X+061442Y-009291X0384Y0551R000S2
|
||||
327GND C10 -2 A01X+062180Y-009291X0384Y0551R000S2
|
||||
327SD_D2 J2 -1 A01X+062992Y-005787X0315Y0591R000S2
|
||||
327SD_D3 J2 -2 A01X+062559Y-005787X0315Y0591R000S2
|
||||
327SD_CMD J2 -3 A01X+062126Y-005787X0315Y0591R000S2
|
||||
327+3V3 J2 -4 A01X+061693Y-005787X0315Y0591R000S2
|
||||
327SD_CLK J2 -5 A01X+061260Y-005787X0315Y0591R000S2
|
||||
327GND J2 -6 A01X+060827Y-005787X0315Y0591R000S2
|
||||
327SD_D0 J2 -7 A01X+060394Y-005787X0315Y0591R000S2
|
||||
327SD_D1 J2 -8 A01X+059961Y-005787X0315Y0591R000S2
|
||||
327GND J2 -G1 A01X+064439Y-006811X0591Y0807R000S2
|
||||
327GND J2 -G2 A01X+064439Y-003543X0591Y0807R000S2
|
||||
327GND J2 -G3 A01X+059026Y-003543X0591Y0807R000S2
|
||||
327GND J2 -G4 A01X+059026Y-006811X0591Y0807R000S2
|
||||
327+3V3 C9 -1 A01X+061635Y-008583X0344Y0374R000S2
|
||||
327GND C9 -2 A01X+062255Y-008583X0344Y0374R000S2
|
||||
327+3V3 C10 -1 A01X+061576Y-009449X0384Y0551R000S2
|
||||
327GND C10 -2 A01X+062314Y-009449X0384Y0551R000S2
|
||||
327SD_D2 J2 -1 A01X+060327Y-004205X0315Y0591R180S2
|
||||
327SD_D3 J2 -2 A01X+060760Y-004205X0315Y0591R180S2
|
||||
327SD_CMD J2 -3 A01X+061193Y-004205X0315Y0591R180S2
|
||||
327+3V3 J2 -4 A01X+061626Y-004205X0315Y0591R180S2
|
||||
327SD_CLK J2 -5 A01X+062059Y-004205X0315Y0591R180S2
|
||||
327GND J2 -6 A01X+062492Y-004205X0315Y0591R180S2
|
||||
327SD_D0 J2 -7 A01X+062925Y-004205X0315Y0591R180S2
|
||||
327SD_D1 J2 -8 A01X+063358Y-004205X0315Y0591R180S2
|
||||
327GND J2 -G1 A01X+058880Y-003181X0591Y0807R180S2
|
||||
327GND J2 -G2 A01X+058880Y-006449X0591Y0807R180S2
|
||||
327GND J2 -G3 A01X+064293Y-006449X0591Y0807R180S2
|
||||
327GND J2 -G4 A01X+064293Y-003181X0591Y0807R180S2
|
||||
327+3V3 C8 -1 A01X+075212Y-018484X0344Y0374R180S2
|
||||
327GND C8 -2 A01X+074592Y-018484X0344Y0374R180S2
|
||||
327GND U13 -1 A01X+072313Y-019213X0571Y0177R000S2
|
||||
@ -432,7 +414,7 @@ P DIM N
|
||||
327/HDMI/HPD_B U9 -10 A01X+097669Y-024104X0618Y0161R000S2
|
||||
327+5V U9 -11 A01X+097669Y-024360X0618Y0161R000S2
|
||||
327+3V3 U9 -12 A01X+097669Y-024616X0618Y0161R000S2
|
||||
327HDMI_5V U9 -13 A01X+099929Y-024616X0618Y0161R000S2
|
||||
327/HDMI/HDMI_5V U9 -13 A01X+099929Y-024616X0618Y0161R000S2
|
||||
327GND U9 -14 A01X+099929Y-024360X0618Y0161R000S2
|
||||
327HDMI_CLK- U9 -15 A01X+099929Y-024104X0618Y0161R000S2
|
||||
327HDMI_CLK+ U9 -16 A01X+099929Y-023848X0618Y0161R000S2
|
||||
@ -444,22 +426,22 @@ P DIM N
|
||||
327HDMI_D2- U9 -22 A01X+099929Y-022313X0618Y0161R000S2
|
||||
327HDMI_D2+ U9 -23 A01X+099929Y-022057X0618Y0161R000S2
|
||||
327+3V3 U9 -24 A01X+099929Y-021801X0618Y0161R000S2
|
||||
327NET-(D11-PAD2) D11 -2 A01X+048018Y-018062X0384Y0551R180S2
|
||||
327~ID0_3V3 D11 -1 A01X+048756Y-018062X0384Y0551R180S2
|
||||
327~ID3_3V3 D14 -1 A01X+048756Y-014558X0384Y0551R180S2
|
||||
327NET-(D14-PAD2) D14 -2 A01X+048018Y-014558X0384Y0551R180S2
|
||||
327NET-(D13-PAD2) D13 -2 A01X+048018Y-015726X0384Y0551R180S2
|
||||
327~ID2_3V3 D13 -1 A01X+048756Y-015726X0384Y0551R180S2
|
||||
327~ID1_3V3 D12 -1 A01X+048756Y-016894X0384Y0551R180S2
|
||||
327NET-(D12-PAD2) D12 -2 A01X+048018Y-016894X0384Y0551R180S2
|
||||
327NET-(D11-PAD2) R16 -2 A01X+047181Y-018062X0344Y0374R000S2
|
||||
327+3V3 R16 -1 A01X+046561Y-018062X0344Y0374R000S2
|
||||
327+3V3 R19 -1 A01X+046561Y-014558X0344Y0374R000S2
|
||||
327NET-(D14-PAD2) R19 -2 A01X+047181Y-014558X0344Y0374R000S2
|
||||
327NET-(D13-PAD2) R18 -2 A01X+047181Y-015726X0344Y0374R000S2
|
||||
327+3V3 R18 -1 A01X+046561Y-015726X0344Y0374R000S2
|
||||
327+3V3 R17 -1 A01X+046561Y-016894X0344Y0374R000S2
|
||||
327NET-(D12-PAD2) R17 -2 A01X+047181Y-016894X0344Y0374R000S2
|
||||
327NET-(D11-PAD2) D11 -2 A01X+048018Y-020818X0384Y0551R180S2
|
||||
327~ID0_3V3 D11 -1 A01X+048756Y-020818X0384Y0551R180S2
|
||||
327~ID3_3V3 D14 -1 A01X+048756Y-017314X0384Y0551R180S2
|
||||
327NET-(D14-PAD2) D14 -2 A01X+048018Y-017314X0384Y0551R180S2
|
||||
327NET-(D13-PAD2) D13 -2 A01X+048018Y-018482X0384Y0551R180S2
|
||||
327~ID2_3V3 D13 -1 A01X+048756Y-018482X0384Y0551R180S2
|
||||
327~ID1_3V3 D12 -1 A01X+048756Y-019650X0384Y0551R180S2
|
||||
327NET-(D12-PAD2) D12 -2 A01X+048018Y-019650X0384Y0551R180S2
|
||||
327NET-(D11-PAD2) R16 -2 A01X+047181Y-020818X0344Y0374R000S2
|
||||
327+3V3 R16 -1 A01X+046561Y-020818X0344Y0374R000S2
|
||||
327+3V3 R19 -1 A01X+046561Y-017314X0344Y0374R000S2
|
||||
327NET-(D14-PAD2) R19 -2 A01X+047181Y-017314X0344Y0374R000S2
|
||||
327NET-(D13-PAD2) R18 -2 A01X+047181Y-018482X0344Y0374R000S2
|
||||
327+3V3 R18 -1 A01X+046561Y-018482X0344Y0374R000S2
|
||||
327+3V3 R17 -1 A01X+046561Y-019650X0344Y0374R000S2
|
||||
327NET-(D12-PAD2) R17 -2 A01X+047181Y-019650X0344Y0374R000S2
|
||||
327SHIELD J6 -6 A01X+107046Y-030736X0591Y0748R270S2
|
||||
317SHIELD J6 -6 D0335PA00X+105983Y-032114X0571Y0000R270S0
|
||||
327/USB/USB_D- J6 -2 A01X+105983Y-031386X0157Y0531R270S2
|
||||
@ -500,8 +482,8 @@ P DIM N
|
||||
317ET-(JCD1-PAD2) JCD1 -2 D0449PA00X+051181Y-010811X0669Y0669R270S0
|
||||
317GND JCD1 -3 D0449PA00X+052181Y-011811X0669Y0669R270S0
|
||||
317GND JCD1 -4 D0449PA00X+052181Y-010811X0669Y0669R270S0
|
||||
317/B2B/RX JCD1 -5 D0449PA00X+053181Y-011811X0669Y0669R270S0
|
||||
317/B2B/TX JCD1 -6 D0449PA00X+053181Y-010811X0669Y0669R270S0
|
||||
317LED1 JCD1 -5 D0449PA00X+053181Y-011811X0669Y0669R270S0
|
||||
317LED0 JCD1 -6 D0449PA00X+053181Y-010811X0669Y0669R270S0
|
||||
317~ID3_3V3 JCD1 -7 D0449PA00X+054181Y-011811X0669Y0669R270S0
|
||||
317~ID2_3V3 JCD1 -8 D0449PA00X+054181Y-010811X0669Y0669R270S0
|
||||
317~ID0_3V3 JCD1 -9 D0449PA00X+055181Y-011811X0669Y0669R270S0
|
||||
@ -510,22 +492,22 @@ P DIM N
|
||||
317~ARB2_3V3 JCD1 -12 D0449PA00X+056181Y-010811X0669Y0669R270S0
|
||||
317~ARB0_3V3 JCD1 -13 D0449PA00X+057181Y-011811X0669Y0669R270S0
|
||||
317~ARB1_3V3 JCD1 -14 D0449PA00X+057181Y-010811X0669Y0669R270S0
|
||||
317PMOD-6 JCD1 -15 D0449PA00X+058181Y-011811X0669Y0669R270S0
|
||||
317TMX_OE_N JCD1 -15 D0449PA00X+058181Y-011811X0669Y0669R270S0
|
||||
317~CLK2X_3V3 JCD1 -16 D0449PA00X+058181Y-010811X0669Y0669R270S0
|
||||
317PMOD-5 JCD1 -17 D0449PA00X+059181Y-011811X0669Y0669R270S0
|
||||
317SD_D1 JCD1 -18 D0449PA00X+059181Y-010811X0669Y0669R270S0
|
||||
317PMOD-8 JCD1 -19 D0449PA00X+060181Y-011811X0669Y0669R270S0
|
||||
317SD_D0 JCD1 -20 D0449PA00X+060181Y-010811X0669Y0669R270S0
|
||||
317PMOD-7 JCD1 -21 D0449PA00X+061181Y-011811X0669Y0669R270S0
|
||||
317SD_CLK JCD1 -22 D0449PA00X+061181Y-010811X0669Y0669R270S0
|
||||
317PMOD-10 JCD1 -23 D0449PA00X+062181Y-011811X0669Y0669R270S0
|
||||
317SD_CMD JCD1 -24 D0449PA00X+062181Y-010811X0669Y0669R270S0
|
||||
317PMOD-9 JCD1 -25 D0449PA00X+063181Y-011811X0669Y0669R270S0
|
||||
317SD_D3 JCD1 -26 D0449PA00X+063181Y-010811X0669Y0669R270S0
|
||||
317PMOD-12 JCD1 -27 D0449PA00X+064181Y-011811X0669Y0669R270S0
|
||||
317SD_D2 JCD1 -28 D0449PA00X+064181Y-010811X0669Y0669R270S0
|
||||
317PMOD-11 JCD1 -29 D0449PA00X+065181Y-011811X0669Y0669R270S0
|
||||
317TMX_OE_N JCD1 -30 D0449PA00X+065181Y-010811X0669Y0669R270S0
|
||||
317TM1_N_O JCD1 -17 D0449PA00X+059181Y-011811X0669Y0669R270S0
|
||||
317SD_D2 JCD1 -18 D0449PA00X+059181Y-010811X0669Y0669R270S0
|
||||
317TM0_N_O JCD1 -19 D0449PA00X+060181Y-011811X0669Y0669R270S0
|
||||
317SD_D3 JCD1 -20 D0449PA00X+060181Y-010811X0669Y0669R270S0
|
||||
317TM2_OE_N JCD1 -21 D0449PA00X+061181Y-011811X0669Y0669R270S0
|
||||
317SD_CMD JCD1 -22 D0449PA00X+061181Y-010811X0669Y0669R270S0
|
||||
317TM2_O_N JCD1 -23 D0449PA00X+062181Y-011811X0669Y0669R270S0
|
||||
317SD_CLK JCD1 -24 D0449PA00X+062181Y-010811X0669Y0669R270S0
|
||||
317~TM0_3V3 JCD1 -25 D0449PA00X+063181Y-011811X0669Y0669R270S0
|
||||
317SD_D0 JCD1 -26 D0449PA00X+063181Y-010811X0669Y0669R270S0
|
||||
317~TM1_3V3 JCD1 -27 D0449PA00X+064181Y-011811X0669Y0669R270S0
|
||||
317SD_D1 JCD1 -28 D0449PA00X+064181Y-010811X0669Y0669R270S0
|
||||
317~TM2_3V3 JCD1 -29 D0449PA00X+065181Y-011811X0669Y0669R270S0
|
||||
317~RESET_3V3 JCD1 -30 D0449PA00X+065181Y-010811X0669Y0669R270S0
|
||||
317+3V3 JCD1 -31 D0449PA00X+066181Y-011811X0669Y0669R270S0
|
||||
317+3V3 JCD1 -32 D0449PA00X+066181Y-010811X0669Y0669R270S0
|
||||
317GND JCD1 -33 D0449PA00X+067181Y-011811X0669Y0669R270S0
|
||||
@ -533,29 +515,29 @@ P DIM N
|
||||
317+3V3 JCD1 -35 D0449PA00X+068181Y-011811X0669Y0669R270S0
|
||||
317+3V3 JCD1 -36 D0449PA00X+068181Y-010811X0669Y0669R270S0
|
||||
317HDMI_HPD_A JCD1 -37 D0449PA00X+069181Y-011811X0669Y0669R270S0
|
||||
317~TM0_3V3 JCD1 -38 D0449PA00X+069181Y-010811X0669Y0669R270S0
|
||||
317PMOD-15 JCD1 -38 D0449PA00X+069181Y-010811X0669Y0669R270S0
|
||||
317HDMI_SDA_A JCD1 -39 D0449PA00X+070181Y-011811X0669Y0669R270S0
|
||||
317~TM1_3V3 JCD1 -40 D0449PA00X+070181Y-010811X0669Y0669R270S0
|
||||
317PMOD-16 JCD1 -40 D0449PA00X+070181Y-010811X0669Y0669R270S0
|
||||
317HDMI_SCL_A JCD1 -41 D0449PA00X+071181Y-011811X0669Y0669R270S0
|
||||
317TM1_N_O JCD1 -42 D0449PA00X+071181Y-010811X0669Y0669R270S0
|
||||
317PMOD-13 JCD1 -42 D0449PA00X+071181Y-010811X0669Y0669R270S0
|
||||
317HDMI_CEC_A JCD1 -43 D0449PA00X+072181Y-011811X0669Y0669R270S0
|
||||
317TM0_N_O JCD1 -44 D0449PA00X+072181Y-010811X0669Y0669R270S0
|
||||
317PMOD-14 JCD1 -44 D0449PA00X+072181Y-010811X0669Y0669R270S0
|
||||
317HDMI_CLK- JCD1 -45 D0449PA00X+073181Y-011811X0669Y0669R270S0
|
||||
317TM2_OE_N JCD1 -46 D0449PA00X+073181Y-010811X0669Y0669R270S0
|
||||
317PMOD-11 JCD1 -46 D0449PA00X+073181Y-010811X0669Y0669R270S0
|
||||
317HDMI_CLK+ JCD1 -47 D0449PA00X+074181Y-011811X0669Y0669R270S0
|
||||
317TM2_O_N JCD1 -48 D0449PA00X+074181Y-010811X0669Y0669R270S0
|
||||
317PMOD-12 JCD1 -48 D0449PA00X+074181Y-010811X0669Y0669R270S0
|
||||
317HDMI_D0+ JCD1 -49 D0449PA00X+075181Y-011811X0669Y0669R270S0
|
||||
317~TM2_3V3 JCD1 -50 D0449PA00X+075181Y-010811X0669Y0669R270S0
|
||||
317PMOD-9 JCD1 -50 D0449PA00X+075181Y-010811X0669Y0669R270S0
|
||||
317HDMI_D0- JCD1 -51 D0449PA00X+076181Y-011811X0669Y0669R270S0
|
||||
317~RESET_3V3 JCD1 -52 D0449PA00X+076181Y-010811X0669Y0669R270S0
|
||||
317PMOD-10 JCD1 -52 D0449PA00X+076181Y-010811X0669Y0669R270S0
|
||||
317HDMI_D1+ JCD1 -53 D0449PA00X+077181Y-011811X0669Y0669R270S0
|
||||
317LED0 JCD1 -54 D0449PA00X+077181Y-010811X0669Y0669R270S0
|
||||
317PMOD-7 JCD1 -54 D0449PA00X+077181Y-010811X0669Y0669R270S0
|
||||
317HDMI_D1- JCD1 -55 D0449PA00X+078181Y-011811X0669Y0669R270S0
|
||||
317LED1 JCD1 -56 D0449PA00X+078181Y-010811X0669Y0669R270S0
|
||||
317PMOD-8 JCD1 -56 D0449PA00X+078181Y-010811X0669Y0669R270S0
|
||||
317HDMI_D2- JCD1 -57 D0449PA00X+079181Y-011811X0669Y0669R270S0
|
||||
317LED2 JCD1 -58 D0449PA00X+079181Y-010811X0669Y0669R270S0
|
||||
317PMOD-5 JCD1 -58 D0449PA00X+079181Y-010811X0669Y0669R270S0
|
||||
317HDMI_D2+ JCD1 -59 D0449PA00X+080181Y-011811X0669Y0669R270S0
|
||||
317LED3 JCD1 -60 D0449PA00X+080181Y-010811X0669Y0669R270S0
|
||||
317PMOD-6 JCD1 -60 D0449PA00X+080181Y-010811X0669Y0669R270S0
|
||||
317FPGA_JTAG_TDO JCD1 -61 D0449PA00X+081181Y-011811X0669Y0669R270S0
|
||||
317FPGA_JTAG_TMS JCD1 -62 D0449PA00X+081181Y-010811X0669Y0669R270S0
|
||||
317GND JCD1 -63 D0449PA00X+082181Y-011811X0669Y0669R270S0
|
||||
@ -607,16 +589,16 @@ P DIM N
|
||||
327GND R24 -1 A01X+102701Y-030944X0344Y0374R270S2
|
||||
327/USB/USB_FLT R27 -1 A01X+098436Y-033114X0344Y0374R180S2
|
||||
327+5V R27 -2 A01X+097816Y-033114X0344Y0374R180S2
|
||||
327GND D2 -1 A01X+074556Y-005926X0384Y0551R090S2
|
||||
327NET-(D2-PAD2) D2 -2 A01X+074556Y-006664X0384Y0551R090S2
|
||||
327NET-(D1-PAD2) D1 -2 A01X+073669Y-006664X0384Y0551R090S2
|
||||
327GND D1 -1 A01X+073669Y-005926X0384Y0551R090S2
|
||||
327NET-(D2-PAD2) R2 -2 A01X+074556Y-007399X0344Y0374R270S2
|
||||
327LED1 R2 -1 A01X+074556Y-008019X0344Y0374R270S2
|
||||
327LED0 R1 -1 A01X+073669Y-008019X0344Y0374R270S2
|
||||
327NET-(D1-PAD2) R1 -2 A01X+073669Y-007399X0344Y0374R270S2
|
||||
327GND D2 -1 A01X+046060Y-015023X0384Y0551R000S2
|
||||
327NET-(D2-PAD2) D2 -2 A01X+046798Y-015023X0384Y0551R000S2
|
||||
327NET-(D1-PAD2) D1 -2 A01X+046798Y-015909X0384Y0551R000S2
|
||||
327GND D1 -1 A01X+046060Y-015909X0384Y0551R000S2
|
||||
327NET-(D2-PAD2) R2 -2 A01X+047532Y-015023X0344Y0374R180S2
|
||||
327LED1 R2 -1 A01X+048153Y-015023X0344Y0374R180S2
|
||||
327LED0 R1 -1 A01X+048153Y-015909X0344Y0374R180S2
|
||||
327NET-(D1-PAD2) R1 -2 A01X+047532Y-015909X0344Y0374R180S2
|
||||
327GND C24 -2 A01X+103555Y-026519X0344Y0374R090S2
|
||||
327HDMI_5V C24 -1 A01X+103555Y-025899X0344Y0374R090S2
|
||||
327/HDMI/HDMI_5V C24 -1 A01X+103555Y-025899X0344Y0374R090S2
|
||||
327GND C23 -2 A01X+096402Y-023741X0344Y0374R270S2
|
||||
327+5V C23 -1 A01X+096402Y-024361X0344Y0374R270S2
|
||||
327+3V3 C22 -1 A01X+100902Y-021806X0344Y0374R270S2
|
||||
@ -628,7 +610,7 @@ P DIM N
|
||||
317SHIELD J5 -SH D0512PA00X+105059Y-027382X0787Y0000R270S0
|
||||
317SHIELD J5 -SH D0512PA00X+105059Y-021673X0787Y0000R270S0
|
||||
327/HDMI/HPD_B J5 -19 A01X+104705Y-026201X0118Y0748R270S2
|
||||
327HDMI_5V J5 -18 A01X+104705Y-026004X0118Y0748R270S2
|
||||
327/HDMI/HDMI_5V J5 -18 A01X+104705Y-026004X0118Y0748R270S2
|
||||
327GND J5 -17 A01X+104705Y-025807X0118Y0748R270S2
|
||||
327/HDMI/SDA_B J5 -16 A01X+104705Y-025610X0118Y0748R270S2
|
||||
327/HDMI/SCL_B J5 -15 A01X+104705Y-025413X0118Y0748R270S2
|
||||
@ -646,10 +628,10 @@ P DIM N
|
||||
327HDMI_D2- J5 -3 A01X+104705Y-023051X0118Y0748R270S2
|
||||
327GND J5 -2 A01X+104705Y-022854X0118Y0748R270S2
|
||||
327HDMI_D2+ J5 -1 A01X+104705Y-022657X0118Y0748R270S2
|
||||
317SHIELD C39 -1 D0315PA00X+104661Y-017071X0630Y0630R180S0
|
||||
317GND C39 -2 D0315PA00X+103677Y-017071X0630Y0000R180S0
|
||||
327SHIELD R33 -1 A01X+104665Y-014819X0492Y1043R180S2
|
||||
327GND R33 -2 A01X+103563Y-014819X0492Y1043R180S2
|
||||
317SHIELD C39 -1 D0315PA00X+105059Y-017433X0630Y0630R180S0
|
||||
317GND C39 -2 D0315PA00X+104075Y-017433X0630Y0000R180S0
|
||||
327SHIELD R33 -1 A01X+105059Y-019811X0492Y1043R180S2
|
||||
327GND R33 -2 A01X+103957Y-019811X0492Y1043R180S2
|
||||
367N/C J4 D1122UA00X+080740Y-040370X1122Y0000R180S0
|
||||
367N/C J4 D1122UA00X+045740Y-040370X1122Y0000R180S0
|
||||
317-12V J4 -a1 D0394PA00X+078740Y-039370X0610Y0610R180S0
|
||||
@ -753,8 +735,8 @@ P DIM N
|
||||
327NUBUS_OE R4 -2 A01X+062879Y-028425X0344Y0374R180S2
|
||||
327+3V3 R4 -1 A01X+063499Y-028425X0344Y0374R180S2
|
||||
317NET-(J3-PAD6) J3 -6 D0402PA00X+047992Y-008189X0669Y0669R180S0
|
||||
317/B2B/TX J3 -5 D0402PA00X+047992Y-009189X0669Y0669R180S0
|
||||
317/B2B/RX J3 -4 D0402PA00X+047992Y-010189X0669Y0669R180S0
|
||||
317LED0 J3 -5 D0402PA00X+047992Y-009189X0669Y0669R180S0
|
||||
317LED1 J3 -4 D0402PA00X+047992Y-010189X0669Y0669R180S0
|
||||
317NET-(J3-PAD3) J3 -3 D0402PA00X+047992Y-011189X0669Y0669R180S0
|
||||
317NET-(J3-PAD2) J3 -2 D0402PA00X+047992Y-012189X0669Y0669R180S0
|
||||
317GND J3 -1 D0402PA00X+047992Y-013189X0669Y0669R180S0
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
||||
## Footprint report - date Tue Sep 27 13:51:45 2022
|
||||
## Footprint report - date Thu Sep 29 16:16:10 2022
|
||||
## Created by Pcbnew version kicad 5.0.2+dfsg1-1~bpo9+1
|
||||
## Unit = mm, Angle = deg.
|
||||
|
||||
@ -9,12 +9,27 @@ upper_left_corner -50.005001 -35.064286
|
||||
lower_right_corner 400.005001 148.435001
|
||||
$EndBOARD
|
||||
|
||||
$MODULE "J10"
|
||||
reference "J10"
|
||||
value "Conn_01x06"
|
||||
footprint "For_SeeedStudio:PinSocket_1x06_P2.54mm_Vertical_For_SeeedStudio"
|
||||
$MODULE "H1"
|
||||
reference "H1"
|
||||
value "MountingHole_Pad"
|
||||
footprint "MountingHole:MountingHole_2.2mm_M2_Pad"
|
||||
attribut virtual
|
||||
position 257.350000 47.090000 orientation 0.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Circle Layer both
|
||||
position 0.000000 0.000000 size 4.400000 4.400000 orientation 0.00
|
||||
drill 2.200000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE H1
|
||||
|
||||
$MODULE "J8"
|
||||
reference "J8"
|
||||
value "Conn_02x08_Odd_Even"
|
||||
footprint "For_SeeedStudio:PinSocket_2x08_P2.54mm_Horizontal_ForSeeedStudio"
|
||||
attribut none
|
||||
position 193.000000 10.000000 orientation 270.00
|
||||
position 264.310000 37.854999 orientation 180.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Rect Layer both
|
||||
@ -24,42 +39,102 @@ shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "2"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 2.540000 size 1.700000 1.700000 orientation 0.00
|
||||
position -2.540000 0.000000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "3"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 5.080000 size 1.700000 1.700000 orientation 0.00
|
||||
position 0.000000 2.540000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "4"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 7.620000 size 1.700000 1.700000 orientation 0.00
|
||||
position -2.540000 2.540000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "5"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 10.160000 size 1.700000 1.700000 orientation 0.00
|
||||
position 0.000000 5.080000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "6"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 5.080000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "7"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 7.620000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "8"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 7.620000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "9"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 10.160000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "10"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 10.160000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "11"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 12.700000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE J10
|
||||
$PAD "12"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 12.700000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "13"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 15.240000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "14"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 15.240000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "15"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 17.780000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "16"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 17.780000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE J8
|
||||
|
||||
$MODULE "C13"
|
||||
reference "C13"
|
||||
$MODULE "C15"
|
||||
reference "C15"
|
||||
value "100nF"
|
||||
footprint "Capacitor_SMD:C_0603_1608Metric"
|
||||
attribut smd
|
||||
position 181.610000 13.270000 orientation 0.00
|
||||
position 261.185001 37.070000 orientation 90.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
@ -73,7 +148,7 @@ position 0.787500 0.000000 size 0.875000 0.950000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE C13
|
||||
$EndMODULE C15
|
||||
|
||||
$MODULE "D7"
|
||||
reference "D7"
|
||||
@ -285,192 +360,6 @@ shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE R15
|
||||
|
||||
$MODULE "D4"
|
||||
reference "D4"
|
||||
value "RED"
|
||||
footprint "LED_SMD:LED_0805_2012Metric"
|
||||
attribut smd
|
||||
position 191.623332 16.000000 orientation 270.00
|
||||
layer front
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
position 0.937500 0.000000 size 0.975000 1.400000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
position -0.937500 0.000000 size 0.975000 1.400000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE D4
|
||||
|
||||
$MODULE "D5"
|
||||
reference "D5"
|
||||
value "RED"
|
||||
footprint "LED_SMD:LED_0805_2012Metric"
|
||||
attribut smd
|
||||
position 193.875000 16.000000 orientation 270.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
position -0.937500 0.000000 size 0.975000 1.400000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
position 0.937500 0.000000 size 0.975000 1.400000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE D5
|
||||
|
||||
$MODULE "R10"
|
||||
reference "R10"
|
||||
value "590"
|
||||
footprint "Resistor_SMD:R_0603_1608Metric"
|
||||
attribut smd
|
||||
position 193.875000 19.650000 orientation 90.00
|
||||
layer front
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
position 0.787500 0.000000 size 0.875000 0.950000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
position -0.787500 0.000000 size 0.875000 0.950000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE R10
|
||||
|
||||
$MODULE "R9"
|
||||
reference "R9"
|
||||
value "590"
|
||||
footprint "Resistor_SMD:R_0603_1608Metric"
|
||||
attribut smd
|
||||
position 191.623332 19.600000 orientation 90.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
position -0.787500 0.000000 size 0.875000 0.950000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
position 0.787500 0.000000 size 0.875000 0.950000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE R9
|
||||
|
||||
$MODULE "C12"
|
||||
reference "C12"
|
||||
value "100nF"
|
||||
footprint "Capacitor_SMD:C_0603_1608Metric"
|
||||
attribut smd
|
||||
position 127.150000 51.125000 orientation 270.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
position -0.787500 0.000000 size 0.875000 0.950000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
position 0.787500 0.000000 size 0.875000 0.950000 orientation 0.00
|
||||
drill 0.000000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE C12
|
||||
|
||||
$MODULE "J9"
|
||||
reference "J9"
|
||||
value "Conn_02x06_Odd_Even"
|
||||
footprint "For_SeeedStudio:PinSocket_2x06_P2.54mm_Horizontal_For_SeeedStudio"
|
||||
attribut none
|
||||
position 124.300000 49.850000 orientation 0.00
|
||||
layer front
|
||||
$PAD "12"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 12.700000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "11"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 12.700000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "10"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 10.160000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "9"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 10.160000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "8"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 7.620000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "7"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 7.620000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "6"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 5.080000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "5"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 5.080000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "4"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 2.540000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "3"
|
||||
Shape Oval Layer both
|
||||
position 0.000000 2.540000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "2"
|
||||
Shape Oval Layer both
|
||||
position -2.540000 0.000000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$PAD "1"
|
||||
Shape Rect Layer both
|
||||
position 0.000000 0.000000 size 1.700000 1.700000 orientation 0.00
|
||||
drill 1.190000
|
||||
shape_offset 0.000000 0.000000
|
||||
$EndPAD
|
||||
$EndMODULE J9
|
||||
|
||||
$MODULE "C11"
|
||||
reference "C11"
|
||||
value "100nF"
|
||||
@ -665,7 +554,7 @@ reference "C9"
|
||||
value "100nF"
|
||||
footprint "Capacitor_SMD:C_0603_1608Metric"
|
||||
attribut smd
|
||||
position 157.000000 21.400000 orientation 0.00
|
||||
position 157.340000 21.800000 orientation 0.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
@ -683,10 +572,10 @@ $EndMODULE C9
|
||||
|
||||
$MODULE "C10"
|
||||
reference "C10"
|
||||
value "47uF"
|
||||
value "47uF 10V+"
|
||||
footprint "Capacitor_SMD:C_0805_2012Metric"
|
||||
attribut smd
|
||||
position 157.000000 23.600000 orientation 0.00
|
||||
position 157.340000 24.000000 orientation 0.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
@ -707,7 +596,7 @@ reference "J2"
|
||||
value "47219-2001"
|
||||
footprint "MOLEX_47219-2001:MOLEX_47219-2001"
|
||||
attribut none
|
||||
position 156.800000 12.600000 orientation 0.00
|
||||
position 156.430000 12.780000 orientation 180.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Rect Layer front
|
||||
@ -2321,7 +2210,7 @@ reference "D11"
|
||||
value "GREEN"
|
||||
footprint "LED_SMD:LED_0805_2012Metric"
|
||||
attribut smd
|
||||
position 122.902634 45.877042 orientation 180.00
|
||||
position 122.902634 52.877042 orientation 180.00
|
||||
layer front
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
@ -2342,7 +2231,7 @@ reference "D14"
|
||||
value "GREEN"
|
||||
footprint "LED_SMD:LED_0805_2012Metric"
|
||||
attribut smd
|
||||
position 122.902634 36.977042 orientation 180.00
|
||||
position 122.902634 43.977042 orientation 180.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
@ -2363,7 +2252,7 @@ reference "D13"
|
||||
value "GREEN"
|
||||
footprint "LED_SMD:LED_0805_2012Metric"
|
||||
attribut smd
|
||||
position 122.902634 39.943708 orientation 180.00
|
||||
position 122.902634 46.943708 orientation 180.00
|
||||
layer front
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
@ -2384,7 +2273,7 @@ reference "D12"
|
||||
value "GREEN"
|
||||
footprint "LED_SMD:LED_0805_2012Metric"
|
||||
attribut smd
|
||||
position 122.902634 42.910374 orientation 180.00
|
||||
position 122.902634 49.910374 orientation 180.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
@ -2405,7 +2294,7 @@ reference "R16"
|
||||
value "590"
|
||||
footprint "Resistor_SMD:R_0603_1608Metric"
|
||||
attribut smd
|
||||
position 119.052634 45.877042 orientation 0.00
|
||||
position 119.052634 52.877042 orientation 0.00
|
||||
layer front
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
@ -2426,7 +2315,7 @@ reference "R19"
|
||||
value "590"
|
||||
footprint "Resistor_SMD:R_0603_1608Metric"
|
||||
attribut smd
|
||||
position 119.052634 36.977042 orientation 0.00
|
||||
position 119.052634 43.977042 orientation 0.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
@ -2447,7 +2336,7 @@ reference "R18"
|
||||
value "590"
|
||||
footprint "Resistor_SMD:R_0603_1608Metric"
|
||||
attribut smd
|
||||
position 119.052634 39.943708 orientation 0.00
|
||||
position 119.052634 46.943708 orientation 0.00
|
||||
layer front
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
@ -2468,7 +2357,7 @@ reference "R17"
|
||||
value "590"
|
||||
footprint "Resistor_SMD:R_0603_1608Metric"
|
||||
attribut smd
|
||||
position 119.052634 42.910374 orientation 0.00
|
||||
position 119.052634 49.910374 orientation 0.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
@ -3359,7 +3248,7 @@ $EndMODULE C27
|
||||
|
||||
$MODULE "C25"
|
||||
reference "C25"
|
||||
value "150uF"
|
||||
value "150uF (could be >= 100 uF or even less, probably)"
|
||||
footprint "Capacitor_SMD:C_1206_3216Metric"
|
||||
attribut smd
|
||||
position 257.410000 86.360000 orientation 180.00
|
||||
@ -3614,7 +3503,7 @@ reference "D2"
|
||||
value "RED"
|
||||
footprint "LED_SMD:LED_0805_2012Metric"
|
||||
attribut smd
|
||||
position 189.371666 15.990000 orientation 270.00
|
||||
position 117.930000 38.158334 orientation 0.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
@ -3635,7 +3524,7 @@ reference "D1"
|
||||
value "RED"
|
||||
footprint "LED_SMD:LED_0805_2012Metric"
|
||||
attribut smd
|
||||
position 187.120000 15.990000 orientation 270.00
|
||||
position 117.930000 40.410000 orientation 0.00
|
||||
layer front
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
@ -3656,7 +3545,7 @@ reference "R2"
|
||||
value "590"
|
||||
footprint "Resistor_SMD:R_0603_1608Metric"
|
||||
attribut smd
|
||||
position 189.371666 19.580000 orientation 90.00
|
||||
position 121.520000 38.158334 orientation 180.00
|
||||
layer front
|
||||
$PAD "2"
|
||||
Shape Roundrect Layer front
|
||||
@ -3677,7 +3566,7 @@ reference "R1"
|
||||
value "590"
|
||||
footprint "Resistor_SMD:R_0603_1608Metric"
|
||||
attribut smd
|
||||
position 187.120000 19.580000 orientation 90.00
|
||||
position 121.520000 40.410000 orientation 180.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
@ -3929,7 +3818,7 @@ reference "C39"
|
||||
value "1 uF (250+V)"
|
||||
footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm"
|
||||
attribut none
|
||||
position 265.840000 43.360000 orientation 180.00
|
||||
position 266.850000 44.280000 orientation 180.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Rect Layer both
|
||||
@ -3950,7 +3839,7 @@ reference "R33"
|
||||
value "1M"
|
||||
footprint "Resistor_SMD:R_1210_3225Metric"
|
||||
attribut smd
|
||||
position 264.450000 37.640000 orientation 180.00
|
||||
position 265.450000 50.320000 orientation 180.00
|
||||
layer front
|
||||
$PAD "1"
|
||||
Shape Roundrect Layer front
|
||||
|
@ -4,7 +4,7 @@ EELAYER 26 0
|
||||
EELAYER END
|
||||
$Descr A4 11693 8268
|
||||
encoding utf-8
|
||||
Sheet 1 10
|
||||
Sheet 1 9
|
||||
Title ""
|
||||
Date ""
|
||||
Rev ""
|
||||
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -4,7 +4,7 @@ EELAYER 26 0
|
||||
EELAYER END
|
||||
$Descr A2 23386 16535
|
||||
encoding utf-8
|
||||
Sheet 3 10
|
||||
Sheet 3 9
|
||||
Title "nubus-to-ztex NuBus connection & level shifting"
|
||||
Date ""
|
||||
Rev ""
|
||||
@ -29,6 +29,7 @@ F 7 "?" H 17550 2500 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 17550 2500 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 17550 2500 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 17550 2500 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 17550 2500
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -917,9 +918,11 @@ F 0 "U8" H 17350 4428 50 0000 C CNN
|
||||
F 1 "74LVT245BPW,118" H 17350 4337 50 0000 C CNN
|
||||
F 2 "For_SeeedStudio:TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio" H 17350 3450 50 0001 C CNN
|
||||
F 3 "http://www.ti.com/lit/gpn/sn74LS245" H 17350 3450 50 0001 C CNN
|
||||
F 4 "https://eu.mouser.com/ProductDetail/?qs=me8TqzrmIYVnC5%252BK4SaiTg%3D%3D" H 17350 3450 50 0001 C CNN "URL-mouser"
|
||||
F 5 "74LVT245BPW,118" H 17350 3450 50 0001 C CNN "MPN"
|
||||
F 6 "https://www.digikey.fr/fr/products/detail/nexperia-usa-inc/74LVT245BPW-118/1231957" H 17350 3450 50 0001 C CNN "URL"
|
||||
F 4 "https://eu.mouser.com/ProductDetail/?qs=me8TqzrmIYVnC5%252BK4SaiTg%3D%3D" H 17350 3450 50 0001 C CNN "URL - ALT - mouser"
|
||||
F 5 "74LVT245BPW,118" H 17350 3450 50 0001 C CNN "MPN - ALT"
|
||||
F 6 "https://www.digikey.fr/fr/products/detail/nexperia-usa-inc/74LVT245BPW-118/1231957" H 17350 3450 50 0001 C CNN "URL - ALT"
|
||||
F 7 "SN74LVT245BPWR" H 17350 3450 50 0001 C CNN "MPN"
|
||||
F 8 "https://lcsc.com/product-detail/Receivers-Transceivers_Texas-Instruments-SN74LVT245BPWR_C74214.html" H 17350 3450 50 0001 C CNN "URL"
|
||||
1 17350 3450
|
||||
-1 0 0 -1
|
||||
$EndComp
|
||||
@ -943,6 +946,7 @@ F 7 "?" H 15550 2500 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 15550 2500 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 15550 2500 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 15550 2500 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 15550 2500
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -989,9 +993,11 @@ F 0 "U7" H 15350 4428 50 0000 C CNN
|
||||
F 1 "74LVT245BPW,118" H 15350 4337 50 0000 C CNN
|
||||
F 2 "For_SeeedStudio:TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio" H 15350 3450 50 0001 C CNN
|
||||
F 3 "http://www.ti.com/lit/gpn/sn74LS245" H 15350 3450 50 0001 C CNN
|
||||
F 4 "74LVT245BPW,118" H 15350 3450 50 0001 C CNN "MPN"
|
||||
F 5 "https://eu.mouser.com/ProductDetail/?qs=me8TqzrmIYVnC5%252BK4SaiTg%3D%3D" H 15350 3450 50 0001 C CNN "URL-mouser"
|
||||
F 6 "https://www.digikey.fr/fr/products/detail/nexperia-usa-inc/74LVT245BPW-118/1231957" H 15350 3450 50 0001 C CNN "URL"
|
||||
F 4 "74LVT245BPW,118" H 15350 3450 50 0001 C CNN "MPN - ALT"
|
||||
F 5 "https://eu.mouser.com/ProductDetail/?qs=me8TqzrmIYVnC5%252BK4SaiTg%3D%3D" H 15350 3450 50 0001 C CNN "URL - ALT - mouser"
|
||||
F 6 "https://www.digikey.fr/fr/products/detail/nexperia-usa-inc/74LVT245BPW-118/1231957" H 15350 3450 50 0001 C CNN "URL - ALT"
|
||||
F 7 "SN74LVT245BPWR" H 15350 3450 50 0001 C CNN "MPN"
|
||||
F 8 "https://lcsc.com/product-detail/Receivers-Transceivers_Texas-Instruments-SN74LVT245BPWR_C74214.html" H 15350 3450 50 0001 C CNN "URL"
|
||||
1 15350 3450
|
||||
-1 0 0 -1
|
||||
$EndComp
|
||||
@ -1015,6 +1021,7 @@ F 7 "?" H 13500 2500 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 13500 2500 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 13500 2500 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 13500 2500 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 13500 2500
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -1061,9 +1068,11 @@ F 0 "U6" H 13300 4428 50 0000 C CNN
|
||||
F 1 "74LVT245BPW,118" H 13300 4337 50 0000 C CNN
|
||||
F 2 "For_SeeedStudio:TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio" H 13300 3450 50 0001 C CNN
|
||||
F 3 "http://www.ti.com/lit/gpn/sn74LS245" H 13300 3450 50 0001 C CNN
|
||||
F 4 "74LVT245BPW,118" H 13300 3450 50 0001 C CNN "MPN"
|
||||
F 5 "https://eu.mouser.com/ProductDetail/?qs=me8TqzrmIYVnC5%252BK4SaiTg%3D%3D" H 13300 3450 50 0001 C CNN "URL-mouser"
|
||||
F 6 "https://www.digikey.fr/fr/products/detail/nexperia-usa-inc/74LVT245BPW-118/1231957" H 13300 3450 50 0001 C CNN "URL"
|
||||
F 4 "74LVT245BPW,118" H 13300 3450 50 0001 C CNN "MPN - ALT"
|
||||
F 5 "https://eu.mouser.com/ProductDetail/?qs=me8TqzrmIYVnC5%252BK4SaiTg%3D%3D" H 13300 3450 50 0001 C CNN "URL - ALT - mouser"
|
||||
F 6 "https://www.digikey.fr/fr/products/detail/nexperia-usa-inc/74LVT245BPW-118/1231957" H 13300 3450 50 0001 C CNN "URL - ALT"
|
||||
F 7 "SN74LVT245BPWR" H 13300 3450 50 0001 C CNN "MPN"
|
||||
F 8 "https://lcsc.com/product-detail/Receivers-Transceivers_Texas-Instruments-SN74LVT245BPWR_C74214.html" H 13300 3450 50 0001 C CNN "URL"
|
||||
1 13300 3450
|
||||
-1 0 0 -1
|
||||
$EndComp
|
||||
@ -1087,6 +1096,7 @@ F 7 "?" H 11450 2500 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 11450 2500 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 11450 2500 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 11450 2500 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 11450 2500
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -1133,12 +1143,14 @@ F 0 "U5" H 11250 4428 50 0000 C CNN
|
||||
F 1 "74LVT245BPW,118" H 11250 4337 50 0000 C CNN
|
||||
F 2 "For_SeeedStudio:TSSOP-20_4.4x6.5mm_P0.65mm_ForSeeedStudio" H 11250 3450 50 0001 C CNN
|
||||
F 3 "http://www.ti.com/lit/gpn/sn74LS245" H 11250 3450 50 0001 C CNN
|
||||
F 4 "74LVT245BPW,118" H 11250 3450 50 0001 C CNN "MPN"
|
||||
F 5 "https://eu.mouser.com/ProductDetail/?qs=me8TqzrmIYVnC5%252BK4SaiTg%3D%3D" H 11250 3450 50 0001 C CNN "URL-mouser"
|
||||
F 4 "74LVT245BPW,118" H 11250 3450 50 0001 C CNN "MPN - ALT"
|
||||
F 5 "https://eu.mouser.com/ProductDetail/?qs=me8TqzrmIYVnC5%252BK4SaiTg%3D%3D" H 11250 3450 50 0001 C CNN "URL - ALT - mouser"
|
||||
F 6 "https://www.renesas.com/us/en/package/pcg20" H 11250 3450 50 0001 C CNN "Drawings"
|
||||
F 7 "https://www.renesas.com/document/psc/pcpcg-package-outline-150-body-width-qsop-025-pitch?language=en" H 11250 3450 50 0001 C CNN "Datasheet - Packaging"
|
||||
F 8 "https://assets.nexperia.com/documents/package-information/SOT360-1.pdf" H 11250 3450 50 0001 C CNN "Package Drawings"
|
||||
F 9 "https://www.digikey.fr/fr/products/detail/nexperia-usa-inc/74LVT245BPW-118/1231957" H 11250 3450 50 0001 C CNN "URL"
|
||||
F 9 "https://www.digikey.fr/fr/products/detail/nexperia-usa-inc/74LVT245BPW-118/1231957" H 11250 3450 50 0001 C CNN "URL - ALT"
|
||||
F 10 "SN74LVT245BPWR" H 11250 3450 50 0001 C CNN "MPN"
|
||||
F 11 "https://lcsc.com/product-detail/Receivers-Transceivers_Texas-Instruments-SN74LVT245BPWR_C74214.html" H 11250 3450 50 0001 C CNN "URL"
|
||||
1 11250 3450
|
||||
-1 0 0 -1
|
||||
$EndComp
|
||||
@ -1543,6 +1555,7 @@ F 7 "?" H 5100 6200 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 5100 6200 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 5100 6200 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 5100 6200 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 5100 6200
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -1647,6 +1660,7 @@ F 7 "?" H 4650 2850 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 4650 2850 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 4650 2850 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 4650 2850 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 4650 2850
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -1813,6 +1827,7 @@ F 7 "?" H 4700 10300 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 4700 10300 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 4700 10300 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 4700 10300 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 4700 10300
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -2235,6 +2250,7 @@ F 7 "?" H 5150 13300 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 5150 13300 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 5150 13300 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 5150 13300 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 5150 13300 50 0001 C CNN "URL"
|
||||
1 5150 13300
|
||||
-1 0 0 -1
|
||||
$EndComp
|
||||
@ -2321,6 +2337,7 @@ F 7 "?" H 10200 14650 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 10200 14650 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 10200 14650 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 10200 14650 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 10200 14650
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -2410,6 +2427,7 @@ F 7 "?" H 13050 14650 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 13050 14650 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 13050 14650 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 13050 14650 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 13050 14650
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -2527,6 +2545,7 @@ F 7 "?" H 7950 13850 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 7950 13850 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 7950 13850 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 7950 13850 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 7950 13850
|
||||
-1 0 0 -1
|
||||
$EndComp
|
||||
|
@ -4,7 +4,7 @@ EELAYER 26 0
|
||||
EELAYER END
|
||||
$Descr A4 11693 8268
|
||||
encoding utf-8
|
||||
Sheet 9 10
|
||||
Sheet 9 9
|
||||
Title "sbus-to-ztex blinkey stuff"
|
||||
Date ""
|
||||
Rev ""
|
||||
@ -14,176 +14,117 @@ Comment2 ""
|
||||
Comment3 ""
|
||||
Comment4 ""
|
||||
$EndDescr
|
||||
Text Notes 7300 2850 0 50 ~ 0
|
||||
Dual-row "extended" Pmod\nExternal, in line w/ the carrier
|
||||
$Comp
|
||||
L Connector_Generic:Conn_02x06_Odd_Even J9
|
||||
U 1 1 618B4A38
|
||||
P 5650 3400
|
||||
F 0 "J9" H 5700 3817 50 0000 C CNN
|
||||
F 1 "Conn_02x06_Odd_Even" H 5700 3726 50 0000 C CNN
|
||||
F 2 "For_SeeedStudio:PinSocket_2x06_P2.54mm_Horizontal_For_SeeedStudio" H 5650 3400 50 0001 C CNN
|
||||
F 3 "~" H 5650 3400 50 0001 C CNN
|
||||
F 4 "A2541HWR-2x6P" H 5650 3400 50 0001 C CNN "MPN"
|
||||
F 5 "https://lcsc.com/product-detail/Pin-Header-Female-Header_Changjiang-Connectors-A2541HWR-2x6P_C239357.html" H 5650 3400 50 0001 C CNN "URL"
|
||||
1 5650 3400
|
||||
L Connector_Generic:Conn_02x08_Odd_Even J8
|
||||
U 1 1 63467144
|
||||
P 7350 3600
|
||||
F 0 "J8" H 7400 4117 50 0000 C CNN
|
||||
F 1 "Conn_02x08_Odd_Even" H 7400 4026 50 0000 C CNN
|
||||
F 2 "For_SeeedStudio:PinSocket_2x08_P2.54mm_Horizontal_ForSeeedStudio" H 7350 3600 50 0001 C CNN
|
||||
F 3 "~" H 7350 3600 50 0001 C CNN
|
||||
F 4 "A2541HWR-2x8P" H 7350 3600 50 0001 C CNN "MPN"
|
||||
F 5 "https://www.lcsc.com/product-detail/Female-Headers_CJT-Changjiang-Connectors-A2541HWR-2x8P_C239359.html" H 7350 3600 50 0001 C CNN "URL"
|
||||
F 6 "PPPC082LJBN-RC" H 7350 3600 50 0001 C CNN "MPN-ALT"
|
||||
1 7350 3600
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
Wire Wire Line
|
||||
5450 3200 5950 3200
|
||||
Wire Wire Line
|
||||
5950 3200 6250 3200
|
||||
Connection ~ 5950 3200
|
||||
Wire Wire Line
|
||||
5450 3300 5950 3300
|
||||
Wire Wire Line
|
||||
5950 3300 6450 3300
|
||||
Connection ~ 5950 3300
|
||||
$Comp
|
||||
L power:GND #PWR0129
|
||||
U 1 1 618B4A45
|
||||
P 6450 3300
|
||||
F 0 "#PWR0129" H 6450 3050 50 0001 C CNN
|
||||
F 1 "GND" H 6455 3127 50 0000 C CNN
|
||||
F 2 "" H 6450 3300 50 0001 C CNN
|
||||
F 3 "" H 6450 3300 50 0001 C CNN
|
||||
1 6450 3300
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
$Comp
|
||||
L power:+3V3 #PWR0130
|
||||
U 1 1 618B4A4B
|
||||
P 6250 3200
|
||||
F 0 "#PWR0130" H 6250 3050 50 0001 C CNN
|
||||
F 1 "+3V3" H 6265 3373 50 0000 C CNN
|
||||
F 2 "" H 6250 3200 50 0001 C CNN
|
||||
F 3 "" H 6250 3200 50 0001 C CNN
|
||||
1 6250 3200
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
Text GLabel 5950 3700 2 50 Input ~ 0
|
||||
PMOD-12
|
||||
Text GLabel 5450 3400 0 50 Input ~ 0
|
||||
Text GLabel 7150 3500 0 50 Input ~ 0
|
||||
PMOD-5
|
||||
Text GLabel 5950 3400 2 50 Input ~ 0
|
||||
PMOD-6
|
||||
Text GLabel 5450 3500 0 50 Input ~ 0
|
||||
Text GLabel 7150 3600 0 50 Input ~ 0
|
||||
PMOD-7
|
||||
Text GLabel 5950 3500 2 50 Input ~ 0
|
||||
PMOD-8
|
||||
Text GLabel 5450 3600 0 50 Input ~ 0
|
||||
Text GLabel 7150 3700 0 50 Input ~ 0
|
||||
PMOD-9
|
||||
Text GLabel 5950 3600 2 50 Input ~ 0
|
||||
PMOD-10
|
||||
Text GLabel 5450 3700 0 50 Input ~ 0
|
||||
Text GLabel 7150 3800 0 50 Input ~ 0
|
||||
PMOD-11
|
||||
Text GLabel 7650 3800 2 50 Input ~ 0
|
||||
PMOD-12
|
||||
Text GLabel 7650 3500 2 50 Input ~ 0
|
||||
PMOD-6
|
||||
Text GLabel 7650 3600 2 50 Input ~ 0
|
||||
PMOD-8
|
||||
Text GLabel 7650 3700 2 50 Input ~ 0
|
||||
PMOD-10
|
||||
Wire Wire Line
|
||||
7650 3300 7950 3300
|
||||
Wire Wire Line
|
||||
7650 3400 8150 3400
|
||||
$Comp
|
||||
L Device:C C?
|
||||
U 1 1 618B4A60
|
||||
P 6450 3150
|
||||
AR Path="/5F679B53/618B4A60" Ref="C?" Part="1"
|
||||
AR Path="/5F6B165A/618B4A60" Ref="C?" Part="1"
|
||||
AR Path="/61631F14/618B4A60" Ref="C41" Part="1"
|
||||
AR Path="/62CC4C0A/618B4A60" Ref="C12" Part="1"
|
||||
F 0 "C12" H 6475 3250 50 0000 L CNN
|
||||
F 1 "100nF" H 6475 3050 50 0000 L CNN
|
||||
F 2 "Capacitor_SMD:C_0603_1608Metric" H 6488 3000 50 0001 C CNN
|
||||
F 3 "" H 6450 3150 50 0000 C CNN
|
||||
F 4 "www.yageo.com" H 6450 3150 50 0001 C CNN "MNF1_URL"
|
||||
F 5 "CC0603KRX7R8BB104" H 6450 3150 50 0001 C CNN "MPN"
|
||||
F 6 "603-CC603KRX7R8BB104" H 6450 3150 50 0001 C CNN "Mouser"
|
||||
F 7 "?" H 6450 3150 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 6450 3150 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 6450 3150 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 6450 3150 50 0001 C CNN "Side"
|
||||
1 6450 3150
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
Connection ~ 6450 3300
|
||||
Wire Wire Line
|
||||
6250 3200 6350 3200
|
||||
Wire Wire Line
|
||||
6350 3200 6350 3000
|
||||
Wire Wire Line
|
||||
6350 3000 6450 3000
|
||||
Connection ~ 6250 3200
|
||||
Wire Wire Line
|
||||
5600 4400 5900 4400
|
||||
Wire Wire Line
|
||||
5600 4500 6100 4500
|
||||
$Comp
|
||||
L power:GND #PWR0149
|
||||
U 1 1 63373073
|
||||
P 6100 4500
|
||||
F 0 "#PWR0149" H 6100 4250 50 0001 C CNN
|
||||
F 1 "GND" H 6105 4327 50 0000 C CNN
|
||||
F 2 "" H 6100 4500 50 0001 C CNN
|
||||
F 3 "" H 6100 4500 50 0001 C CNN
|
||||
1 6100 4500
|
||||
L power:GND #PWR0151
|
||||
U 1 1 634673C0
|
||||
P 8150 3400
|
||||
F 0 "#PWR0151" H 8150 3150 50 0001 C CNN
|
||||
F 1 "GND" H 8155 3227 50 0000 C CNN
|
||||
F 2 "" H 8150 3400 50 0001 C CNN
|
||||
F 3 "" H 8150 3400 50 0001 C CNN
|
||||
1 8150 3400
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
$Comp
|
||||
L power:+3V3 #PWR0150
|
||||
U 1 1 63373079
|
||||
P 5900 4400
|
||||
F 0 "#PWR0150" H 5900 4250 50 0001 C CNN
|
||||
F 1 "+3V3" H 5915 4573 50 0000 C CNN
|
||||
F 2 "" H 5900 4400 50 0001 C CNN
|
||||
F 3 "" H 5900 4400 50 0001 C CNN
|
||||
1 5900 4400
|
||||
L power:+3V3 #PWR0152
|
||||
U 1 1 634673C6
|
||||
P 7950 3300
|
||||
F 0 "#PWR0152" H 7950 3150 50 0001 C CNN
|
||||
F 1 "+3V3" H 7965 3473 50 0000 C CNN
|
||||
F 2 "" H 7950 3300 50 0001 C CNN
|
||||
F 3 "" H 7950 3300 50 0001 C CNN
|
||||
1 7950 3300
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
$Comp
|
||||
L Device:C C?
|
||||
U 1 1 6337308E
|
||||
P 6100 4350
|
||||
AR Path="/5F679B53/6337308E" Ref="C?" Part="1"
|
||||
AR Path="/5F6B165A/6337308E" Ref="C?" Part="1"
|
||||
AR Path="/61631F14/6337308E" Ref="C?" Part="1"
|
||||
AR Path="/62CC4C0A/6337308E" Ref="C13" Part="1"
|
||||
F 0 "C13" H 6125 4450 50 0000 L CNN
|
||||
F 1 "100nF" H 6125 4250 50 0000 L CNN
|
||||
F 2 "Capacitor_SMD:C_0603_1608Metric" H 6138 4200 50 0001 C CNN
|
||||
F 3 "" H 6100 4350 50 0000 C CNN
|
||||
F 4 "www.yageo.com" H 6100 4350 50 0001 C CNN "MNF1_URL"
|
||||
F 5 "CC0603KRX7R8BB104" H 6100 4350 50 0001 C CNN "MPN"
|
||||
F 6 "603-CC603KRX7R8BB104" H 6100 4350 50 0001 C CNN "Mouser"
|
||||
F 7 "?" H 6100 4350 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 6100 4350 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 6100 4350 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 6100 4350 50 0001 C CNN "Side"
|
||||
1 6100 4350
|
||||
U 1 1 634673D3
|
||||
P 8150 3250
|
||||
AR Path="/5F679B53/634673D3" Ref="C?" Part="1"
|
||||
AR Path="/5F6B165A/634673D3" Ref="C?" Part="1"
|
||||
AR Path="/61631F14/634673D3" Ref="C?" Part="1"
|
||||
AR Path="/62CC4C0A/634673D3" Ref="C15" Part="1"
|
||||
F 0 "C15" H 8175 3350 50 0000 L CNN
|
||||
F 1 "100nF" H 8175 3150 50 0000 L CNN
|
||||
F 2 "Capacitor_SMD:C_0603_1608Metric" H 8188 3100 50 0001 C CNN
|
||||
F 3 "" H 8150 3250 50 0000 C CNN
|
||||
F 4 "www.yageo.com" H 8150 3250 50 0001 C CNN "MNF1_URL"
|
||||
F 5 "CC0603KRX7R8BB104" H 8150 3250 50 0001 C CNN "MPN"
|
||||
F 6 "603-CC603KRX7R8BB104" H 8150 3250 50 0001 C CNN "Mouser"
|
||||
F 7 "?" H 8150 3250 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 8150 3250 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 8150 3250 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 8150 3250 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 8150 3250
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
Connection ~ 6100 4500
|
||||
Connection ~ 8150 3400
|
||||
Wire Wire Line
|
||||
5900 4400 6000 4400
|
||||
7950 3300 8050 3300
|
||||
Wire Wire Line
|
||||
6000 4400 6000 4200
|
||||
8050 3300 8050 3100
|
||||
Wire Wire Line
|
||||
6000 4200 6100 4200
|
||||
Connection ~ 5900 4400
|
||||
$Comp
|
||||
L Connector_Generic:Conn_01x06 J10
|
||||
U 1 1 63373341
|
||||
P 5400 4700
|
||||
F 0 "J10" H 5320 4175 50 0000 C CNN
|
||||
F 1 "Conn_01x06" H 5320 4266 50 0000 C CNN
|
||||
F 2 "For_SeeedStudio:PinSocket_1x06_P2.54mm_Vertical_For_SeeedStudio" H 5400 4700 50 0001 C CNN
|
||||
F 3 "~" H 5400 4700 50 0001 C CNN
|
||||
F 4 "A2541HWV-6P" H 5400 4700 50 0001 C CNN "MPN"
|
||||
F 5 "https://www.lcsc.com/product-detail/Female-Headers_CJT-Changjiang-Connectors-A2541HWV-6P_C2897443.html" H 5400 4700 50 0001 C CNN "URL"
|
||||
1 5400 4700
|
||||
-1 0 0 1
|
||||
$EndComp
|
||||
Text GLabel 5600 4600 2 60 Input ~ 12
|
||||
LED0
|
||||
Text GLabel 5600 4700 2 60 Input ~ 12
|
||||
LED1
|
||||
Text GLabel 5600 4800 2 60 Input ~ 12
|
||||
LED2
|
||||
Text GLabel 5600 4900 2 60 Input ~ 12
|
||||
LED3
|
||||
Text Notes 5400 2900 0 50 ~ 0
|
||||
Dual-row Pmod\nInternal, in line w/ the carrier
|
||||
Text Notes 4850 4150 0 50 ~ 0
|
||||
Single-row Pmod\nSharing the user LED signals, mostly for debugging\nInternal, perpendicular to carrier
|
||||
8050 3100 8150 3100
|
||||
Connection ~ 7950 3300
|
||||
Wire Wire Line
|
||||
7150 3300 7650 3300
|
||||
Connection ~ 7650 3300
|
||||
Wire Wire Line
|
||||
7650 3400 7150 3400
|
||||
Connection ~ 7650 3400
|
||||
Text GLabel 7650 3900 2 50 Input ~ 0
|
||||
PMOD-14
|
||||
Text GLabel 7650 4000 2 50 Input ~ 0
|
||||
PMOD-16
|
||||
Text GLabel 7150 3900 0 50 Input ~ 0
|
||||
PMOD-13
|
||||
Text GLabel 7150 4000 0 50 Input ~ 0
|
||||
PMOD-15
|
||||
Wire Notes Line
|
||||
6700 3850 8100 3850
|
||||
Wire Notes Line
|
||||
8100 3850 8100 4050
|
||||
Wire Notes Line
|
||||
8100 4050 6700 4050
|
||||
Wire Notes Line
|
||||
6700 4050 6700 3850
|
||||
Text Notes 8100 4050 0 50 ~ 0
|
||||
Extra Pins
|
||||
$EndSCHEMATC
|
||||
|
@ -0,0 +1,7 @@
|
||||
Info: Front side (top side) place file: “/home/dolbeau/MAC/NuBusFPGA.V1_2/nubus-to-ztex/nubus-to-ztex-top.pos”.
|
||||
Info: Component count: 88.
|
||||
Info: Back side (bottom side) place file: “/home/dolbeau/MAC/NuBusFPGA.V1_2/nubus-to-ztex/nubus-to-ztex-bottom.pos”.
|
||||
Info: Component count: 0.
|
||||
Info: Full component count: 88
|
||||
|
||||
Component Placement File generation OK.
|
@ -4,7 +4,7 @@ EELAYER 26 0
|
||||
EELAYER END
|
||||
$Descr A4 11693 8268
|
||||
encoding utf-8
|
||||
Sheet 8 10
|
||||
Sheet 8 9
|
||||
Title "sbus-to-ztex sdcard"
|
||||
Date ""
|
||||
Rev ""
|
||||
@ -53,10 +53,13 @@ L Device:C C10
|
||||
U 1 1 590C7447
|
||||
P 5450 5150
|
||||
F 0 "C10" H 5475 5250 50 0000 L CNN
|
||||
F 1 "47uF" H 5475 5050 50 0000 L CNN
|
||||
F 1 "47uF 10V+" H 5475 5050 50 0000 L CNN
|
||||
F 2 "Capacitor_SMD:C_0805_2012Metric" H 5488 5000 50 0001 C CNN
|
||||
F 3 "" H 5450 5150 50 0000 C CNN
|
||||
F 4 "GRM21BR60J476ME15L" H 5450 5150 50 0001 C CNN "MPN"
|
||||
F 4 "GRM21BR60J476ME15L" H 5450 5150 50 0001 C CNN "MPN-ALT"
|
||||
F 5 "https://www.lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM21BR60J476ME15L_C77072.html" H 5450 5150 50 0001 C CNN "URL-ALT"
|
||||
F 6 "GRM21BR61A476ME15K" H 5450 5150 50 0001 C CNN "MPN"
|
||||
F 7 "https://www.lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM21BR61A476ME15K_C2292827.html" H 5450 5150 50 0001 C CNN "URL"
|
||||
1 5450 5150
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -113,6 +116,7 @@ F 7 "?" H 5200 5150 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 5200 5150 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 5200 5150 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 5200 5150 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 5200 5150
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
|
Binary file not shown.
Binary file not shown.
@ -4,7 +4,7 @@ EELAYER 26 0
|
||||
EELAYER END
|
||||
$Descr A4 11693 8268
|
||||
encoding utf-8
|
||||
Sheet 5 10
|
||||
Sheet 5 9
|
||||
Title "nubus-to-ztex USB"
|
||||
Date ""
|
||||
Rev ""
|
||||
@ -125,6 +125,7 @@ F 7 "?" H 7200 2000 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 7200 2000 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 7200 2000 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 7200 2000 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 7200 2000
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -306,12 +307,14 @@ L Device:CP C25
|
||||
U 1 1 60D9A750
|
||||
P 4950 2000
|
||||
F 0 "C25" H 5068 2046 50 0000 L CNN
|
||||
F 1 "150uF" H 5068 1955 50 0000 L CNN
|
||||
F 1 "150uF (could be >= 100 uF or even less, probably)" H 5068 1955 50 0000 L CNN
|
||||
F 2 "Capacitor_SMD:C_1206_3216Metric" H 4988 1850 50 0001 C CNN
|
||||
F 3 "~" H 4950 2000 50 0001 C CNN
|
||||
F 4 "GRM31CR60J157ME11L" H 4950 2000 50 0001 C CNN "MPN"
|
||||
F 5 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM31CR60J157ME11L_C528968.html" H 4950 2000 50 0001 C CNN "URL"
|
||||
F 6 "https://www.mouser.fr/ProductDetail/Murata-Electronics/GRM31CR60J157ME11L?qs=qSv5qXjCIG3a12X8fU8miQ%3D%3D" H 4950 2000 50 0001 C CNN "URL (mouser)"
|
||||
F 4 "GRM31CR60J157ME11L" H 4950 2000 50 0001 C CNN "MPN-ALT"
|
||||
F 5 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM31CR60J157ME11L_C528968.html" H 4950 2000 50 0001 C CNN "URL-ALT"
|
||||
F 6 "https://www.mouser.fr/ProductDetail/Murata-Electronics/GRM31CR60J157ME11L?qs=qSv5qXjCIG3a12X8fU8miQ%3D%3D" H 4950 2000 50 0001 C CNN "URL-ALT (mouser)"
|
||||
F 7 "JMK316ABJ107ML-T" H 4950 2000 50 0001 C CNN "MPN"
|
||||
F 8 "https://www.lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Taiyo-Yuden-JMK316ABJ107ML-T_C268006.html" H 4950 2000 50 0001 C CNN "URL"
|
||||
1 4950 2000
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
@ -382,6 +385,7 @@ F 7 "?" H 7850 2000 50 0001 C CNN "Digikey"
|
||||
F 8 "?" H 7850 2000 50 0001 C CNN "LCSC"
|
||||
F 9 "?" H 7850 2000 50 0001 C CNN "Koncar"
|
||||
F 10 "TB" H 7850 2000 50 0001 C CNN "Side"
|
||||
F 11 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB104_C92490.html" H 3000 6050 50 0001 C CNN "URL"
|
||||
1 7850 2000
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
|
@ -4,7 +4,7 @@ EELAYER 26 0
|
||||
EELAYER END
|
||||
$Descr A4 11693 8268
|
||||
encoding utf-8
|
||||
Sheet 7 10
|
||||
Sheet 7 9
|
||||
Title "nubus-to-ztex VGA"
|
||||
Date ""
|
||||
Rev ""
|
||||
@ -62,4 +62,16 @@ F 7 "https://www.lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-U
|
||||
1 8000 5050
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
$Comp
|
||||
L Mechanical:MountingHole_Pad H1
|
||||
U 1 1 633638E3
|
||||
P 8250 4800
|
||||
F 0 "H1" H 8350 4851 50 0000 L CNN
|
||||
F 1 "MountingHole_Pad" H 8350 4760 50 0000 L CNN
|
||||
F 2 "MountingHole:MountingHole_2.2mm_M2_Pad" H 8250 4800 50 0001 C CNN
|
||||
F 3 "~" H 8250 4800 50 0001 C CNN
|
||||
1 8250 4800
|
||||
1 0 0 -1
|
||||
$EndComp
|
||||
Connection ~ 8250 4900
|
||||
$EndSCHEMATC
|
||||
|
Loading…
Reference in New Issue
Block a user