large update

This commit is contained in:
Romain Dolbeau 2022-01-09 11:39:59 +01:00
parent a040aba8e0
commit b664739ba2
36 changed files with 96963 additions and 46559 deletions

View File

@ -2,9 +2,9 @@
NET "fpga_to_cpld_clk" LOC = "S:PIN1";
NET "tmoen" LOC = "S:PIN23";
NET "fpga_to_cpld_signal" LOC = "S:PIN39";
NET "fpga_to_cpld_signal_2" LOC = "S:PIN40";
NET "rqst_o" LOC = "S:PIN43";
NET "rqst_n_5v" LOC = "S:PIN43";
NET "rqst_n_5v" LOC = "S:PIN40";
NET "rqst_n_3v3" LOC = "S:PIN36";
#PINLOCK_BEGIN

View File

@ -2,7 +2,6 @@ module nubus_cpld
(
input fpga_to_cpld_clk, // unused (extra line from FPGA to CPLD, pin is a clk input)
input fpga_to_cpld_signal, // unused (extra line from FPGA to CPLD)
input fpga_to_cpld_signal_2, // unused (extra line from FPGA to CPLD)
input tmoen,
input [3:0] id_n_5v, // ID of this card
inout [3:0] arb_n_5v, // NuBus arbiter's lines
@ -23,8 +22,9 @@ module nubus_cpld
inout ack_n_3v3, // ack from/to FPGA
inout start_n_5v, // start from/to NuBus
inout ack_n_5v, // ack to/from NuBus
inout rqst_n_5v,
inout rqst_n_3v3
input rqst_n_5v,
inout rqst_n_3v3,
output rqst_o
);
// clock and pure in -> out pass_through are always on
@ -36,7 +36,8 @@ module nubus_cpld
assign start_n_5v = nubus_oe ? 'bZ : ( nubus_master_dir ? start_n_3v3 : 'bZ); // master out
assign start_n_3v3 = nubus_oe ? 'bZ : (~nubus_master_dir ? start_n_5v : 'bZ); // master in
assign rqst_n_5v = nubus_oe ? 'bZ : ( nubus_master_dir ? rqst_n_3v3 : 'bZ); // master out
// rqst_o is always driven and is active high
assign rqst_o = nubus_oe ? 'b0 : ( nubus_master_dir ? ~rqst_n_3v3 : 'b0); // master out
assign rqst_n_3v3 = nubus_oe ? 'bZ : (~nubus_master_dir ? rqst_n_5v : 'bZ); // master in
assign ack_n_5v = nubus_oe ? 'bZ : ((nubus_master_dir ^ ~tmoen) ? ack_n_3v3 : 'bZ); // slave out/in

View File

@ -26,7 +26,7 @@ from migen.genlib.cdc import BusSynchronizer
from migen.genlib.resetsync import AsyncResetSynchronizer
from litex.soc.cores.video import VideoVGAPHY
import cg3_fb
import toby_fb
# Wishbone stuff
from sbus_wb import WishboneDomainCrossingMaster
@ -36,7 +36,7 @@ from nubus_mem_wb import NuBus2Wishbone
class _CRG(Module):
def __init__(self, platform, sys_clk_freq,
cg3=False,
toby=False,
hdmi=False,
pix_clk=0):
self.clock_domains.cd_sys = ClockDomain() # 100 MHz PLL, reset'ed by NuBus (via pll), SoC/Wishbone main clock
@ -46,7 +46,7 @@ class _CRG(Module):
self.clock_domains.cd_native = ClockDomain(reset_less=True) # 48MHz native, non-reset'ed (for power-on long delay, never reset, we don't want the delay after a warm reset)
self.clock_domains.cd_nubus = ClockDomain() # 10 MHz NuBus, reset'ed by NuBus, native NuBus clock domain (25% duty cycle)
self.clock_domains.cd_nubus90 = ClockDomain() # 20 MHz NuBus90, reset'ed by NuBus, native NuBus90 clock domain (25% duty cycle)
if (cg3):
if (toby):
if (not hdmi):
self.clock_domains.cd_vga = ClockDomain(reset_less=True)
else:
@ -121,7 +121,7 @@ class _CRG(Module):
num_adv = num_adv + 1
num_clk = 0
if (cg3):
if (toby):
self.submodules.video_pll = video_pll = S7MMCM(speedgrade=platform.speedgrade)
video_pll.register_clkin(self.clk48_bufg, 48e6)
if (not hdmi):
@ -144,7 +144,7 @@ class _CRG(Module):
class NuBusFPGA(SoCCore):
def __init__(self, variant, version, sys_clk_freq, cg3, hdmi, cg3_res, **kwargs):
def __init__(self, variant, version, sys_clk_freq, toby, hdmi, toby_res, **kwargs):
print(f"Building NuBusFPGA for board version {version}")
kwargs["cpu_type"] = "None"
@ -156,16 +156,16 @@ class NuBusFPGA(SoCCore):
self.platform = platform = ztex213_nubus.Platform(variant = variant, version = version)
if (cg3):
hres = int(cg3_res.split("@")[0].split("x")[0])
vres = int(cg3_res.split("@")[0].split("x")[1])
cg3_fb_size = cg3_fb.cg3_rounded_size(hres, vres)
print(f"Reserving {cg3_fb_size} bytes ({cg3_fb_size//1048576} MiB) for the CG3/CG6")
if (toby):
hres = int(toby_res.split("@")[0].split("x")[0])
vres = int(toby_res.split("@")[0].split("x")[1])
toby_fb_size = toby_fb.toby_rounded_size(hres, vres)
print(f"Reserving {toby_fb_size} bytes ({toby_fb_size//1048576} MiB) for the toby")
else:
hres = 0
vres = 0
cg3_fb_size = 0
litex.soc.cores.video.video_timings.update(cg3_fb.cg3_timings)
toby_fb_size = 0
# litex.soc.cores.video.video_timings.update(toby_fb.toby_timings)
SoCCore.__init__(self,
platform=platform,
@ -186,18 +186,33 @@ class NuBusFPGA(SoCCore):
# in 24 bits it's only one megabyte, $s0 0000 through $sF FFFF
# they are translated: '$s0 0000-$sF FFFF' to '$Fs00 0000-$Fs0F FFFF' (for s in range $9 through $E)
self.wb_mem_map = wb_mem_map = {
"cg3_mem_short": 0x00000000, # up to 832 KiB of FB memory
"csr" : 0x000D0000, # CSR in the middle of the first MB
"cg3_bt" : 0x000E0000, # BT for CG3 just before the ROM
"toby_mem": 0x00000000, # up to 512 KiB of FB memory
"csr" : 0x000D0000, # CSR in the middle of the first MB, oups
"toby_bt" : 0x00080000, # BT for toby just before the ROM, 0x70000 long
"rom": 0x000FF000, # ROM at the end of the first MB (4 KiB of it ATM)
"END OF FIRST MB" : 0x000FFFFF,
"cg3_mem": 0x00100000, # full FB mem, up to 15 MiB
"rom1": 0x001FF000, # ROM mirrored
"rom2": 0x002FF000, # ROM mirrored
"rom3": 0x003FF000, # ROM mirrored
"rom4": 0x004FF000, # ROM mirrored
"rom5": 0x005FF000, # ROM mirrored
"rom6": 0x006FF000, # ROM mirrored
"rom7": 0x007FF000, # ROM mirrored
"rom8": 0x008FF000, # ROM mirrored
"toby_mem_dupl" : 0x00900000, # replicated FB memory
"rom9": 0x009FF000, # ROM mirrored
"roma": 0x00AFF000, # ROM mirrored
"romb": 0x00BFF000, # ROM mirrored
"romc": 0x00CFF000, # ROM mirrored
"romd": 0x00DFF000, # ROM mirrored
"rome": 0x00EFF000, # ROM mirrored
"romf": 0x00FFF000, # ROM mirrored
"END OF SLOT SPACE": 0x00FFFFFF,
"main_ram": 0x80000000, # not directly reachable from NuBus
"video_framebuffer": 0x80000000 + 0x10000000 - cg3_fb_size, # Updated later
"video_framebuffer": 0x80000000 + 0x10000000 - toby_fb_size, # Updated later
}
self.mem_map.update(wb_mem_map)
self.submodules.crg = _CRG(platform=platform, sys_clk_freq=sys_clk_freq, cg3=cg3, pix_clk=litex.soc.cores.video.video_timings[cg3_res]["pix_clk"])
self.submodules.crg = _CRG(platform=platform, sys_clk_freq=sys_clk_freq, toby=toby, pix_clk=litex.soc.cores.video.video_timings[toby_res]["pix_clk"])
## add our custom timings after the clocks have been defined
xdc_timings_filename = None;
@ -221,6 +236,8 @@ class NuBusFPGA(SoCCore):
# print(hex(rom[i]))
#print("\n****************************************\n")
self.add_ram("rom", origin=self.mem_map["rom"], size=2**12, contents=rom_data, mode="r") ### FIXME: round up the prom_data size & check for <= 2**12!
# do we need to mirror the rom in *all* 16 mb ?
self.bus.add_slave("romf", self.rom.bus, SoCRegion(origin=self.mem_map["romf"], size=2**12, mode="r"))
#getattr(self,"rom").mem.init = rom_data
#getattr(self,"rom").mem.depth = 2**16
@ -235,6 +252,7 @@ class NuBusFPGA(SoCCore):
# l2_cache_size = 0,
#)
#avail_sdram = self.bus.regions["main_ram"].size
avail_sdram = 256 * 1024 * 1024
self.submodules.leds = LedChaser(
pads = platform.request_all("user_led"),
@ -242,9 +260,9 @@ class NuBusFPGA(SoCCore):
self.add_csr("leds")
base_fb = self.wb_mem_map["main_ram"] + avail_sdram - 1048576 # placeholder
if (cg3):
if (avail_sdram >= cg3_fb_size):
avail_sdram = avail_sdram - cg3_fb_size
if (toby):
if (avail_sdram >= toby_fb_size):
avail_sdram = avail_sdram - toby_fb_size
base_fb = self.wb_mem_map["main_ram"] + avail_sdram
self.wb_mem_map["video_framebuffer"] = base_fb
else:
@ -274,16 +292,16 @@ class NuBusFPGA(SoCCore):
self.submodules.nubus = nubus.NuBus(platform=platform, cd_nubus="nubus")
self.submodules.nubus2wishbone = ClockDomainsRenamer("nubus")(NuBus2Wishbone(nubus=self.nubus,wb=self.wishbone_master_nubus))
self.add_ram("ram", origin=self.mem_map["cg3_mem_short"], size=2**16, mode="rw")
self.add_ram("ram", origin=self.mem_map["toby_mem"], size=2**16, mode="rw")
if (cg3):
if (toby):
if (not hdmi):
self.submodules.videophy = VideoVGAPHY(platform.request("vga"), clock_domain="vga")
self.submodules.cg3 = cg3_fb.cg3(soc=self, phy=self.videophy, timings=cg3_res, clock_domain="vga") # clock_domain for the VGA side, cg3 is running in cd_sys
self.submodules.toby = toby_fb.toby(soc=self, phy=self.videophy, timings=toby_res, clock_domain="vga") # clock_domain for the VGA side, toby is running in cd_sys
else:
self.submodules.videophy = VideoS7HDMIPHY(platform.request("hdmi"), clock_domain="hdmi")
self.submodules.cg3 = cg3_fb.cg3(soc=self, phy=self.videophy, timings=cg3_res, clock_domain="hdmi") # clock_domain for the VGA side, cg3 is running in cd_sys
self.bus.add_slave("cg3_bt", self.cg3.bus, SoCRegion(origin=self.mem_map.get("cg3_bt", None), size=0x1000, cached=False))
self.submodules.toby = toby_fb.toby(soc=self, phy=self.videophy, timings=toby_res, clock_domain="hdmi") # clock_domain for the VGA side, toby is running in cd_sys
self.bus.add_slave("toby_bt", self.toby.bus, SoCRegion(origin=self.mem_map.get("toby_bt", None), size=0x70000, cached=False))
def main():
@ -292,9 +310,9 @@ def main():
parser.add_argument("--variant", default="ztex2.13a", help="ZTex board variant (default ztex2.13a)")
parser.add_argument("--version", default="V1.0", help="NuBusFPGA board version (default V1.0)")
parser.add_argument("--sys-clk-freq", default=100e6, help="NuBusFPGA system clock (default 100e6 = 100 MHz)")
parser.add_argument("--cg3", action="store_true", help="add a CG3 framebuffer")
parser.add_argument("--toby", action="store_true", help="add a toby framebuffer")
parser.add_argument("--hdmi", action="store_true", help="The framebuffer uses HDMI (default to VGA)")
parser.add_argument("--cg3-res", default="1152x900@76Hz", help="Specify the CG3resolution")
parser.add_argument("--toby-res", default="640x480@60Hz", help="Specify the toby resolution")
builder_args(parser)
vivado_build_args(parser)
args = parser.parse_args()
@ -303,9 +321,9 @@ def main():
variant=args.variant,
version=args.version,
sys_clk_freq=int(float(args.sys_clk_freq)),
cg3=args.cg3,
toby=args.toby,
hdmi=args.hdmi,
cg3_res=args.cg3_res)
toby_res=args.toby_res)
version_for_filename = args.version.replace(".", "_")

View File

@ -114,6 +114,8 @@ F 5 "A2005WR-N-2X7P-B" H 3150 7250 50 0001 C CNN "MPN-ALT Right Angle"
F 6 "https://www2.mouser.com/ProductDetail/Molex/87833-1420?qs=%2Fha2pyFadujYFYCIYI1IvFCvLi7no9WQYzIL%2FpYxKhg%3D" H 3150 7250 50 0001 C CNN "URL Rihgt Angle"
F 7 "87831-1420" H 3150 7250 50 0001 C CNN "MPN"
F 8 "https://www2.mouser.com/ProductDetail/Molex/87831-1420?qs=QtQX4uD3c2VDCL534TqpVg%3D%3D" H 3150 7250 50 0001 C CNN "URL"
F 9 "https://datasheet.lcsc.com/lcsc/1811051309_MOLEX-878311420_C240854.pdf" H 3150 7250 50 0001 C CNN "Datasheet-ALT"
F 10 "87831-1419, 87831-1420, 87831-1421, 87831-1436 only change plating" H 3150 7250 50 0001 C CNN "Notes"
1 3150 7250
1 0 0 -1
$EndComp
@ -329,7 +331,7 @@ Text GLabel 4100 2050 2 50 Input Italic 0
~CLK_3V3
Text GLabel 1600 1350 0 50 Input ~ 0
~RQST_3V3
Text GLabel 4100 1350 2 50 Input ~ 0
Text GLabel 4750 650 2 50 Input ~ 0
~NMRQ_3V3
Text GLabel 1600 1550 0 50 Input ~ 0
~START_3V3
@ -524,7 +526,7 @@ AR Path="/5F6B165A/61B5DFCC" Ref="D?" Part="1"
AR Path="/5F67E4B9/61B5DFCC" Ref="D?" Part="1"
AR Path="/618E8C75/61B5DFCC" Ref="D2" Part="1"
F 0 "D2" H 1000 6000 50 0000 C CNN
F 1 "RED" H 650 5900 50 0000 R CNN
F 1 "RED" H 1050 5750 50 0000 R CNN
F 2 "LED_SMD:LED_0805_2012Metric" H 1000 5900 50 0001 C CNN
F 3 "https://optoelectronics.liteon.com/upload/download/DS-22-99-0150/LTST-C170KRKT.pdf" H 1000 5900 50 0001 C CNN
F 4 "www.liteon.com" H 1000 5900 60 0001 C CNN "MNF1_URL"
@ -576,7 +578,7 @@ AR Path="/5F6B165A/61B5F405" Ref="D?" Part="1"
AR Path="/5F67E4B9/61B5F405" Ref="D?" Part="1"
AR Path="/618E8C75/61B5F405" Ref="D3" Part="1"
F 0 "D3" H 1000 6500 50 0000 C CNN
F 1 "RED" H 650 6400 50 0000 R CNN
F 1 "RED" H 1050 6250 50 0000 R CNN
F 2 "LED_SMD:LED_0805_2012Metric" H 1000 6400 50 0001 C CNN
F 3 "https://optoelectronics.liteon.com/upload/download/DS-22-99-0150/LTST-C170KRKT.pdf" H 1000 6400 50 0001 C CNN
F 4 "www.liteon.com" H 1000 6400 60 0001 C CNN "MNF1_URL"
@ -628,7 +630,7 @@ AR Path="/5F6B165A/61B60A6F" Ref="D?" Part="1"
AR Path="/5F67E4B9/61B60A6F" Ref="D?" Part="1"
AR Path="/618E8C75/61B60A6F" Ref="D4" Part="1"
F 0 "D4" H 1000 7000 50 0000 C CNN
F 1 "RED" H 650 6900 50 0000 R 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"
@ -680,7 +682,7 @@ AR Path="/5F6B165A/61B62362" Ref="D?" Part="1"
AR Path="/5F67E4B9/61B62362" Ref="D?" Part="1"
AR Path="/618E8C75/61B62362" Ref="D5" Part="1"
F 0 "D5" H 1000 7500 50 0000 C CNN
F 1 "RED" H 650 7400 50 0000 R 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"
@ -864,8 +866,55 @@ F 3 "" H 4750 6950 50 0001 C CNN
$EndComp
Text GLabel 7400 1650 0 39 Input ~ 8
tmoen
Text GLabel 4100 1850 2 39 Input ~ 8
fpga_to_cpld_signal_2
Text GLabel 1600 1750 0 39 Input ~ 8
fpga_to_cpld_signal
$Comp
L Device:C C?
U 1 1 61F08531
P 2750 6050
AR Path="/618F532C/61F08531" Ref="C?" Part="1"
AR Path="/618E8C75/61F08531" Ref="C4" Part="1"
F 0 "C4" H 2775 6150 50 0000 L CNN
F 1 "100nF" H 2775 5950 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 2788 5900 50 0001 C CNN
F 3 "" H 2750 6050 50 0000 C CNN
F 4 "www.yageo.com" H 2750 6050 50 0001 C CNN "MNF1_URL"
F 5 "CC0603KRX7R8BB104" H 2750 6050 50 0001 C CNN "MPN"
F 6 "603-CC603KRX7R8BB104" H 2750 6050 50 0001 C CNN "Mouser"
F 7 "?" H 2750 6050 50 0001 C CNN "Digikey"
F 8 "?" H 2750 6050 50 0001 C CNN "LCSC"
F 9 "?" H 2750 6050 50 0001 C CNN "Koncar"
F 10 "TB" H 2750 6050 50 0001 C CNN "Side"
1 2750 6050
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR0132
U 1 1 61F08538
P 2750 6200
F 0 "#PWR0132" H 2750 5950 50 0001 C CNN
F 1 "GND" H 2755 6027 50 0000 C CNN
F 2 "" H 2750 6200 50 0001 C CNN
F 3 "" H 2750 6200 50 0001 C CNN
1 2750 6200
1 0 0 -1
$EndComp
$Comp
L power:+3.3V #PWR0133
U 1 1 61F0853E
P 2750 5900
F 0 "#PWR0133" H 2750 5750 50 0001 C CNN
F 1 "+3.3V" H 2765 6073 50 0000 C CNN
F 2 "" H 2750 5900 50 0001 C CNN
F 3 "" H 2750 5900 50 0001 C CNN
1 2750 5900
1 0 0 -1
$EndComp
Text Notes 1200 5650 0 50 ~ 0
User LEDS
Text GLabel 4100 1350 2 50 Input ~ 0
NMRQ
Text Notes 5700 550 2 50 ~ 0
design use NMRQ (active high) instead
NoConn ~ 4750 650
$EndSCHEMATC

View File

@ -4,7 +4,7 @@ EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 7 7
Sheet 6 7
Title "sbus-to-ztex blinkey stuff"
Date ""
Rev ""
@ -151,86 +151,8 @@ Wire Wire Line
Wire Wire Line
6600 4500 6200 4500
Connection ~ 6600 4400
$Comp
L Connector:Conn_01x03_Male J10
U 1 1 61C52A59
P 4400 5800
F 0 "J10" H 4506 6078 50 0000 C CNN
F 1 "Conn_01x03_Male" H 4506 5987 50 0000 C CNN
F 2 "Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical" H 4400 5800 50 0001 C CNN
F 3 "~" H 4400 5800 50 0001 C CNN
F 4 "22-27-2031" H 4400 5800 50 0001 C CNN "MPN-ALT"
F 5 "Molex" H 4400 5800 50 0001 C CNN "Manufacturer-ALT"
F 6 "https://www.mouser.fr/ProductDetail/Molex/22-27-2031?qs=%2Fha2pyFadugXOaGYK9vaczm7nZ04txhJn3OGcnGWT3U=" H 4400 5800 50 0001 C CNN "URL-ALT"
F 7 "640456-3" H 4400 5800 50 0001 C CNN "MPN"
F 8 "TE Connectivity" H 4400 5800 50 0001 C CNN "Manufacturer"
F 9 "https://www.lcsc.com/product-detail/Wire-To-Board-Wire-To-Wire-Connector_TE-Connectivity-640456-3_C86503.html" H 4400 5800 50 0001 C CNN "URL"
1 4400 5800
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR0208
U 1 1 61C52A60
P 4600 5700
F 0 "#PWR0208" H 4600 5450 50 0001 C CNN
F 1 "GND" V 4605 5572 50 0000 R CNN
F 2 "" H 4600 5700 50 0001 C CNN
F 3 "" H 4600 5700 50 0001 C CNN
1 4600 5700
0 -1 -1 0
$EndComp
$Comp
L power:GND #PWR0209
U 1 1 61C52A6C
P 4600 5900
F 0 "#PWR0209" H 4600 5650 50 0001 C CNN
F 1 "GND" V 4605 5772 50 0000 R CNN
F 2 "" H 4600 5900 50 0001 C CNN
F 3 "" H 4600 5900 50 0001 C CNN
1 4600 5900
0 -1 -1 0
$EndComp
$Comp
L Device:C C?
U 1 1 61C52A73
P 5150 5850
AR Path="/5F69F4EF/61C52A73" Ref="C?" Part="1"
AR Path="/5F6B165A/61C52A73" Ref="C?" Part="1"
AR Path="/61B99D2C/61C52A73" Ref="C33" Part="1"
F 0 "C33" H 5175 5950 50 0000 L CNN
F 1 "10uF" H 5175 5750 50 0000 L CNN
F 2 "Capacitor_SMD:C_0805_2012Metric" H 5188 5700 50 0001 C CNN
F 3 "" H 5150 5850 50 0000 C CNN
F 4 "GRM21BR61E106MA73L" H 5150 5850 50 0001 C CNN "MPN"
F 5 "https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM21BR61E106MA73L_C391262.html" H 5150 5850 50 0001 C CNN "URL"
1 5150 5850
1 0 0 -1
$EndComp
Wire Wire Line
4600 5800 5150 5800
Wire Wire Line
5150 5800 5150 5700
Wire Wire Line
4600 5900 5150 5900
Wire Wire Line
5150 5900 5150 6000
Connection ~ 4600 5900
$Comp
L power:+12V #PWR0210
U 1 1 61C52B88
P 4600 5800
F 0 "#PWR0210" H 4600 5650 50 0001 C CNN
F 1 "+12V" V 4615 5928 50 0000 L CNN
F 2 "" H 4600 5800 50 0001 C CNN
F 3 "" H 4600 5800 50 0001 C CNN
1 4600 5800
0 1 1 0
$EndComp
Connection ~ 4600 5800
Text Notes 3950 4750 0 50 ~ 0
5V Fan
Text Notes 4000 5850 0 50 ~ 0
12V Fan
Text Notes 6800 4600 0 50 ~ 0
3.3V access
$EndSCHEMATC

View File

@ -4,7 +4,7 @@ EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 5 7
Sheet 4 7
Title "sbus-to-ztex blinkey stuff"
Date ""
Rev ""
@ -27,6 +27,7 @@ F 5 "Texas Instruments" H 3300 2700 50 0001 L BNN "MANUFACTURER"
F 6 "F" H 3300 2700 50 0001 L BNN "PARTREV"
F 7 "IPC 7351B" H 3300 2700 50 0001 L BNN "STANDARD"
F 8 "TPD12S016PWR" H 3300 2700 50 0001 C CNN "MPN"
F 9 "https://lcsc.com/product-detail/Interface-Specialized_Texas-Instruments-TPD12S016PWR_C201665.html" H 3300 2700 50 0001 C CNN "URL"
1 3300 2700
1 0 0 -1
$EndComp

View File

@ -1,182 +1,91 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.2+dfsg1-1~bpo9+1*
G04 #@! TF.CreationDate,2021-12-20T11:51:13+01:00*
G04 #@! TF.CreationDate,2022-01-09T11:10:32+01:00*
G04 #@! TF.ProjectId,nubus-to-ztex,6e756275-732d-4746-9f2d-7a7465782e6b,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Copper,L4,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 Mon Dec 20 11:51:13 2021*
G04 Created by KiCad (PCBNEW 5.0.2+dfsg1-1~bpo9+1) date Sun Jan 9 11:10:32 2022*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 #@! TA.AperFunction,ComponentPad*
%ADD10C,1.450000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD11O,1.900000X1.200000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD12R,1.700000X1.700000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD13O,1.700000X1.700000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD14R,1.350000X1.350000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD15O,1.350000X1.350000*%
G04 #@! TD*
G04 #@! TA.AperFunction,Conductor*
%ADD10C,0.100000*%
%ADD16C,0.100000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD11C,1.740000*%
%ADD17C,1.740000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD12O,2.200000X1.740000*%
%ADD18O,1.740000X2.200000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD13C,1.450000*%
%ADD19C,2.000000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD14O,1.900000X1.200000*%
%ADD20C,1.500000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD15R,1.700000X1.700000*%
%ADD21C,3.500000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD16O,1.700000X1.700000*%
%ADD22R,1.600000X1.600000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD17R,1.350000X1.350000*%
%ADD23C,1.600000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD18O,1.350000X1.350000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD19O,1.740000X2.200000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD20C,2.000000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD21C,1.500000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD22C,3.500000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD23R,1.600000X1.600000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD24C,1.600000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ComponentPad*
%ADD25C,1.550000*%
%ADD24C,1.550000*%
G04 #@! TD*
G04 #@! TA.AperFunction,ViaPad*
%ADD26C,0.800000*%
%ADD25C,0.800000*%
G04 #@! TD*
G04 #@! TA.AperFunction,Conductor*
%ADD27C,0.152400*%
%ADD26C,0.152400*%
G04 #@! TD*
G04 APERTURE END LIST*
D10*
G04 #@! TO.N,GND*
G04 #@! TO.C,J10*
G36*
X116074505Y-86931204D02*
X116098773Y-86934804D01*
X116122572Y-86940765D01*
X116145671Y-86949030D01*
X116167850Y-86959520D01*
X116188893Y-86972132D01*
X116208599Y-86986747D01*
X116226777Y-87003223D01*
X116243253Y-87021401D01*
X116257868Y-87041107D01*
X116270480Y-87062150D01*
X116280970Y-87084329D01*
X116289235Y-87107428D01*
X116295196Y-87131227D01*
X116298796Y-87155495D01*
X116300000Y-87179999D01*
X116300000Y-88420001D01*
X116298796Y-88444505D01*
X116295196Y-88468773D01*
X116289235Y-88492572D01*
X116280970Y-88515671D01*
X116270480Y-88537850D01*
X116257868Y-88558893D01*
X116243253Y-88578599D01*
X116226777Y-88596777D01*
X116208599Y-88613253D01*
X116188893Y-88627868D01*
X116167850Y-88640480D01*
X116145671Y-88650970D01*
X116122572Y-88659235D01*
X116098773Y-88665196D01*
X116074505Y-88668796D01*
X116050001Y-88670000D01*
X114349999Y-88670000D01*
X114325495Y-88668796D01*
X114301227Y-88665196D01*
X114277428Y-88659235D01*
X114254329Y-88650970D01*
X114232150Y-88640480D01*
X114211107Y-88627868D01*
X114191401Y-88613253D01*
X114173223Y-88596777D01*
X114156747Y-88578599D01*
X114142132Y-88558893D01*
X114129520Y-88537850D01*
X114119030Y-88515671D01*
X114110765Y-88492572D01*
X114104804Y-88468773D01*
X114101204Y-88444505D01*
X114100000Y-88420001D01*
X114100000Y-87179999D01*
X114101204Y-87155495D01*
X114104804Y-87131227D01*
X114110765Y-87107428D01*
X114119030Y-87084329D01*
X114129520Y-87062150D01*
X114142132Y-87041107D01*
X114156747Y-87021401D01*
X114173223Y-87003223D01*
X114191401Y-86986747D01*
X114211107Y-86972132D01*
X114232150Y-86959520D01*
X114254329Y-86949030D01*
X114277428Y-86940765D01*
X114301227Y-86934804D01*
X114325495Y-86931204D01*
X114349999Y-86930000D01*
X116050001Y-86930000D01*
X116074505Y-86931204D01*
X116074505Y-86931204D01*
G37*
D11*
G04 #@! TD*
G04 #@! TO.P,J10,1*
G04 #@! TO.N,GND*
X115200000Y-87800000D03*
D12*
G04 #@! TO.P,J10,2*
G04 #@! TO.N,+12V*
X115200000Y-85260000D03*
G04 #@! TO.P,J10,3*
G04 #@! TO.N,GND*
X115200000Y-82720000D03*
G04 #@! TD*
D13*
G04 #@! TO.P,J6,6*
G04 #@! TO.N,SHIELD*
X269197500Y-81570000D03*
X269197500Y-76570000D03*
D14*
D11*
X271897500Y-82570000D03*
X271897500Y-75570000D03*
G04 #@! TD*
D15*
D12*
G04 #@! TO.P,J9,1*
G04 #@! TO.N,+3V3*
X202830000Y-79080000D03*
D16*
D13*
G04 #@! TO.P,J9,2*
G04 #@! TO.N,GND*
X205370000Y-79080000D03*
G04 #@! TD*
D17*
D14*
G04 #@! TO.P,J8,1*
G04 #@! TO.N,GND*
X116600000Y-75800000D03*
D18*
D15*
G04 #@! TO.P,J8,2*
G04 #@! TO.N,+3V3*
X114600000Y-75800000D03*
@ -217,7 +126,7 @@ G04 #@! TO.P,J8,14*
G04 #@! TO.N,Net-(J8-Pad14)*
X114600000Y-63800000D03*
G04 #@! TD*
D10*
D16*
G04 #@! TO.N,GND*
G04 #@! TO.C,J7*
G36*
@ -292,12 +201,12 @@ X218860001Y-90170000D01*
X218884505Y-90171204D01*
X218884505Y-90171204D01*
G37*
D11*
D17*
G04 #@! TD*
G04 #@! TO.P,J7,1*
G04 #@! TO.N,GND*
X218240000Y-91270000D03*
D19*
D18*
G04 #@! TO.P,J7,2*
G04 #@! TO.N,+5V*
X220780000Y-91270000D03*
@ -305,11 +214,11 @@ G04 #@! TO.P,J7,3*
G04 #@! TO.N,GND*
X223320000Y-91270000D03*
G04 #@! TD*
D15*
D12*
G04 #@! TO.P,JCD1,1*
G04 #@! TO.N,Net-(JCD1-Pad1)*
X130000000Y-30000000D03*
D16*
D13*
G04 #@! TO.P,JCD1,2*
G04 #@! TO.N,Net-(JCD1-Pad2)*
X130000000Y-27460000D03*
@ -495,11 +404,11 @@ X208740000Y-30000000D03*
G04 #@! TO.P,JCD1,64*
X208740000Y-27460000D03*
G04 #@! TD*
D17*
D14*
G04 #@! TO.P,J1,1*
G04 #@! TO.N,GND*
X228230000Y-27500000D03*
D18*
D15*
G04 #@! TO.P,J1,2*
G04 #@! TO.N,/B2B/JTAG_VIO*
X228230000Y-29500000D03*
@ -540,7 +449,7 @@ G04 #@! TO.P,J1,14*
G04 #@! TO.N,Net-(J1-Pad14)*
X216230000Y-29500000D03*
G04 #@! TD*
D20*
D19*
G04 #@! TO.P,J5,SH*
G04 #@! TO.N,SHIELD*
X270800000Y-70150000D03*
@ -548,7 +457,7 @@ X270800000Y-54450000D03*
X265850000Y-69550000D03*
X265850000Y-55050000D03*
G04 #@! TD*
D21*
D20*
G04 #@! TO.P,J4,15*
G04 #@! TO.N,Net-(J4-Pad15)*
X264540000Y-38460000D03*
@ -591,22 +500,22 @@ X259460000Y-31590000D03*
G04 #@! TO.P,J4,1*
G04 #@! TO.N,/vga/VGA_R*
X259460000Y-29300000D03*
D22*
D21*
G04 #@! TO.P,J4,0*
G04 #@! TO.N,SHIELD*
X262000000Y-21130000D03*
X262000000Y-46130000D03*
G04 #@! TD*
D23*
D22*
G04 #@! TO.P,C11,1*
G04 #@! TO.N,SHIELD*
X252540000Y-13380000D03*
D24*
D23*
G04 #@! TO.P,C11,2*
G04 #@! TO.N,GND*
X252540000Y-15880000D03*
G04 #@! TD*
D10*
D16*
G04 #@! TO.N,-12V*
G04 #@! TO.C,J3*
G36*
@ -681,7 +590,7 @@ X200525001Y-99225000D01*
X200549505Y-99226204D01*
X200549505Y-99226204D01*
G37*
D25*
D24*
G04 #@! TD*
G04 #@! TO.P,J3,a1*
G04 #@! TO.N,-12V*
@ -952,7 +861,7 @@ G04 #@! TO.P,J3,c32*
G04 #@! TO.N,~CLK_5V*
X121260000Y-94920000D03*
G04 #@! TD*
D16*
D13*
G04 #@! TO.P,J2,6*
G04 #@! TO.N,Net-(J2-Pad6)*
X121900000Y-20800000D03*
@ -968,12 +877,12 @@ X121900000Y-28420000D03*
G04 #@! TO.P,J2,2*
G04 #@! TO.N,Net-(J2-Pad2)*
X121900000Y-30960000D03*
D15*
D12*
G04 #@! TO.P,J2,1*
G04 #@! TO.N,GND*
X121900000Y-33500000D03*
G04 #@! TD*
D16*
D13*
G04 #@! TO.P,JAB1,64*
G04 #@! TO.N,GND*
X208740000Y-59210000D03*
@ -1116,7 +1025,7 @@ G04 #@! TO.P,JAB1,17*
G04 #@! TO.N,~RESET_3V3*
X150320000Y-61750000D03*
G04 #@! TO.P,JAB1,16*
G04 #@! TO.N,fpga_to_cpld_signal_2*
G04 #@! TO.N,Net-(JAB1-Pad16)*
X147780000Y-59210000D03*
G04 #@! TO.P,JAB1,15*
G04 #@! TO.N,NUBUS_MASTER_DIR*
@ -1146,7 +1055,7 @@ G04 #@! TO.P,JAB1,7*
G04 #@! TO.N,~TM0_3V3*
X137620000Y-61750000D03*
G04 #@! TO.P,JAB1,6*
G04 #@! TO.N,~NMRQ_3V3*
G04 #@! TO.N,NMRQ*
X135080000Y-59210000D03*
G04 #@! TO.P,JAB1,5*
G04 #@! TO.N,~RQST_3V3*
@ -1159,25 +1068,24 @@ X132540000Y-61750000D03*
G04 #@! TO.P,JAB1,2*
G04 #@! TO.N,+5V*
X130000000Y-59210000D03*
D15*
D12*
G04 #@! TO.P,JAB1,1*
X130000000Y-61750000D03*
G04 #@! TD*
D26*
D25*
G04 #@! TO.N,GND*
X255250000Y-27250000D03*
X234220000Y-50625000D03*
X233500000Y-47375000D03*
X256220000Y-61875000D03*
X255500000Y-58625000D03*
X256010000Y-87920000D03*
X243770000Y-35180000D03*
X267000000Y-58050000D03*
X262640000Y-79355000D03*
X252900000Y-82730000D03*
X222350000Y-53330000D03*
X267000000Y-65550000D03*
X141650000Y-14352500D03*
X233040000Y-42562500D03*
X224510000Y-47375000D03*
X255040000Y-53812500D03*
X246510000Y-58625000D03*
X242870000Y-30170000D03*
X141900000Y-67700000D03*
X224140000Y-96000000D03*
@ -1196,7 +1104,6 @@ X149900000Y-71000000D03*
X134300000Y-83680000D03*
X127100000Y-70212500D03*
X128400000Y-77100000D03*
X120600000Y-68800000D03*
X256000000Y-33000000D03*
X256000000Y-31250000D03*
X248670000Y-34670001D03*
@ -1208,6 +1115,11 @@ X267720000Y-77180000D03*
X251500000Y-23100000D03*
X248840000Y-40287500D03*
X237972500Y-37170000D03*
X252380000Y-61875000D03*
X112250000Y-92712500D03*
X112250000Y-97950000D03*
X117250000Y-92000000D03*
X117250000Y-84250000D03*
G04 #@! TO.N,+3V3*
X246800000Y-26300000D03*
X186750000Y-73687500D03*
@ -1215,21 +1127,26 @@ X175300000Y-73700000D03*
X148750000Y-73687500D03*
X161750000Y-73687500D03*
X129050000Y-73000000D03*
X235550000Y-44137500D03*
X257550000Y-55387500D03*
X139500000Y-66400000D03*
X223550000Y-46725000D03*
X245550000Y-57975000D03*
X147000000Y-77812500D03*
X125012500Y-74400000D03*
X127000000Y-66900000D03*
X226080000Y-52500000D03*
X248080000Y-63750000D03*
X252000000Y-31250000D03*
X252000000Y-33000000D03*
X256000000Y-29500000D03*
X256000000Y-22250000D03*
X241210000Y-35980000D03*
X118665134Y-45500000D03*
X118665134Y-39500000D03*
X117503601Y-58400000D03*
X200600000Y-82787500D03*
X222537500Y-59000000D03*
X160287500Y-20250000D03*
X126300000Y-74112500D03*
G04 #@! TO.N,+5V*
X253850000Y-87660000D03*
X224230000Y-50622500D03*
X246230000Y-61872500D03*
X137447842Y-88000000D03*
X135647842Y-88000000D03*
X133847842Y-88000000D03*
@ -1239,25 +1156,36 @@ G04 #@! TO.N,~RESET_5V*
X143600000Y-75500000D03*
G04 #@! TO.N,~TM1_5V*
X132000000Y-75400000D03*
G04 #@! TO.N,~NMRQ_5V*
X124200000Y-83600000D03*
G04 #@! TO.N,~TM0_5V*
X133100000Y-74600000D03*
G04 #@! TO.N,~ID3_3V3*
X125500000Y-38077042D03*
G04 #@! TO.N,~ID2_3V3*
X125500000Y-41043708D03*
G04 #@! TO.N,~ID1_3V3*
X125500000Y-44010374D03*
G04 #@! TO.N,~ID0_3V3*
X125500000Y-46977042D03*
G04 #@! TO.N,~START_3V3*
X131900000Y-77800000D03*
G04 #@! TO.N,~ACK_3V3*
X128900000Y-78600000D03*
X124800000Y-60144020D03*
G04 #@! TO.N,~TM0_3V3*
X132100000Y-67700000D03*
X123800000Y-53930000D03*
G04 #@! TO.N,~TM1_3V3*
X130100000Y-69100000D03*
X123800000Y-56680000D03*
G04 #@! TO.N,FPGA_VGA_HS*
X251850000Y-34730000D03*
G04 #@! TO.N,FPGA_VGA_VS*
X251850000Y-36460000D03*
G04 #@! TO.N,HDMI_5V*
X233920000Y-52070000D03*
X255920000Y-63320000D03*
X260760000Y-65782500D03*
G04 #@! TO.N,ARB*
X153250000Y-18750000D03*
G04 #@! TO.N,NUBUS_AD_DIR*
X148500000Y-78500000D03*
G04 #@! TO.N,CPLD_JTAG_TDI*
@ -1269,12 +1197,12 @@ G04 #@! TO.N,CPLD_JTAG_TMS*
X137900000Y-80200000D03*
G04 #@! TO.N,CPLD_JTAG_TCK*
X137300000Y-79066666D03*
G04 #@! TO.N,fpga_to_cpld_signal_2*
X137900000Y-73899999D03*
G04 #@! TO.N,GRANT*
X153250000Y-22000000D03*
G04 #@! TO.N,fpga_to_cpld_signal*
X136900000Y-72800000D03*
G04 #@! TD*
D27*
D26*
G04 #@! TO.N,/B2B/JTAG_VIO*
X209589999Y-60900001D02*
X208740000Y-61750000D01*
@ -1312,15 +1240,6 @@ X136695190Y-75400000D02*
X132000000Y-75400000D01*
X143400000Y-82104810D02*
X136695190Y-75400000D01*
G04 #@! TO.N,~NMRQ_5V*
X124574999Y-99225001D02*
X123800000Y-100000000D01*
X124803601Y-98996399D02*
X124574999Y-99225001D01*
X124803601Y-84203601D02*
X124803601Y-98996399D01*
X124200000Y-83600000D02*
X124803601Y-84203601D01*
G04 #@! TO.N,~TM0_5V*
X189840000Y-94920000D02*
X176720000Y-81800000D01*
@ -1330,13 +1249,51 @@ X136500000Y-74600000D02*
X133100000Y-74600000D01*
X143700000Y-81800000D02*
X136500000Y-74600000D01*
G04 #@! TO.N,~ID3_3V3*
X129542958Y-38077042D02*
X125500000Y-38077042D01*
X137620000Y-30000000D02*
X129542958Y-38077042D01*
G04 #@! TO.N,~ID2_3V3*
X138469999Y-28309999D02*
X137620000Y-27460000D01*
X138698601Y-28538601D02*
X138469999Y-28309999D01*
X138698601Y-30517729D02*
X138698601Y-28538601D01*
X128172622Y-41043708D02*
X138698601Y-30517729D01*
X125500000Y-41043708D02*
X128172622Y-41043708D01*
G04 #@! TO.N,~ID1_3V3*
X139081399Y-28538601D02*
X139310001Y-28309999D01*
X139081399Y-32674931D02*
X139081399Y-28538601D01*
X139310001Y-28309999D02*
X140160000Y-27460000D01*
X127745956Y-44010374D02*
X139081399Y-32674931D01*
X125500000Y-44010374D02*
X127745956Y-44010374D01*
G04 #@! TO.N,~ID0_3V3*
X125899999Y-46577043D02*
X125500000Y-46977042D01*
X139386209Y-33090833D02*
X125899999Y-46577043D01*
X139386209Y-31975872D02*
X139386209Y-33090833D01*
X140160000Y-31202081D02*
X139386209Y-31975872D01*
X140160000Y-30000000D02*
X140160000Y-31202081D01*
G04 #@! TO.N,~START_3V3*
X131171399Y-77071399D02*
X131900000Y-77800000D01*
X131171399Y-70738601D02*
X131171399Y-77071399D01*
X140160000Y-61750000D02*
X131171399Y-70738601D01*
X131171399Y-70738601D02*
X131171399Y-77071399D01*
X131171399Y-77071399D02*
X131900000Y-77800000D01*
G04 #@! TO.N,~ACK_3V3*
X140160000Y-59210000D02*
X139081399Y-60288601D01*
@ -1348,11 +1305,31 @@ X130866589Y-76633411D02*
X130866589Y-70099741D01*
X128900000Y-78600000D02*
X130866589Y-76633411D01*
X124800000Y-60144020D02*
X124800000Y-63769670D01*
X124800000Y-63769670D02*
X128400000Y-67369670D01*
X129099741Y-70099741D02*
X130866589Y-70099741D01*
X128400000Y-67369670D02*
X128400000Y-69400000D01*
X128400000Y-69400000D02*
X129099741Y-70099741D01*
G04 #@! TO.N,~TM0_3V3*
X137620000Y-62180000D02*
X137620000Y-61750000D01*
X132100000Y-67700000D02*
X137620000Y-62180000D01*
X138469999Y-60900001D02*
X137620000Y-61750000D01*
X138698601Y-58692271D02*
X138698601Y-60671399D01*
X133936330Y-53930000D02*
X138698601Y-58692271D01*
X123800000Y-53930000D02*
X133936330Y-53930000D01*
X138698601Y-60671399D02*
X138469999Y-60900001D01*
G04 #@! TO.N,~TM1_3V3*
X136541399Y-61898271D02*
X130100000Y-68339670D01*
@ -1362,6 +1339,12 @@ X137620000Y-59210000D02*
X136541399Y-60288601D01*
X130100000Y-68339670D02*
X130100000Y-69100000D01*
X135090000Y-56680000D02*
X136770001Y-58360001D01*
X136770001Y-58360001D02*
X137620000Y-59210000D01*
X123800000Y-56680000D02*
X135090000Y-56680000D01*
G04 #@! TO.N,FPGA_VGA_HS*
X154273700Y-26046300D02*
X152860000Y-27460000D01*
@ -1388,12 +1371,17 @@ X156430000Y-26430000D02*
X156249999Y-26610001D01*
X156508600Y-26351400D02*
X156430000Y-26430000D01*
G04 #@! TO.N,HDMI_D2-*
X163154900Y-27325100D02*
X163020000Y-27460000D01*
G04 #@! TO.N,HDMI_D2+*
X165560000Y-27460000D02*
X165636000Y-27384000D01*
G04 #@! TO.N,ARB*
X152850001Y-19149999D02*
X153250000Y-18750000D01*
X151476589Y-20523411D02*
X152850001Y-19149999D01*
X151476589Y-30439741D02*
X151476589Y-20523411D01*
X142700000Y-39216330D02*
X151476589Y-30439741D01*
X142700000Y-59210000D02*
X142700000Y-39216330D01*
G04 #@! TO.N,NUBUS_AD_DIR*
X147500000Y-74750000D02*
X148500000Y-75750000D01*
@ -1482,15 +1470,19 @@ X225326399Y-28596399D02*
X225555001Y-28825001D01*
X207340000Y-28600000D02*
X207343601Y-28596399D01*
G04 #@! TO.N,fpga_to_cpld_signal_2*
X146701399Y-60288601D02*
X146701399Y-68398601D01*
X147780000Y-59210000D02*
X146701399Y-60288601D01*
X141200001Y-73899999D02*
X137900000Y-73899999D01*
X146701399Y-68398601D02*
X141200001Y-73899999D01*
G04 #@! TO.N,GRANT*
X152850001Y-22399999D02*
X153250000Y-22000000D01*
X151781399Y-23468601D02*
X152850001Y-22399999D01*
X151781399Y-30565997D02*
X151781399Y-23468601D01*
X143778601Y-60671399D02*
X143778601Y-38568795D01*
X143778601Y-38568795D02*
X151781399Y-30565997D01*
X142700000Y-61750000D02*
X143778601Y-60671399D01*
G04 #@! TO.N,fpga_to_cpld_signal*
X136900000Y-70090000D02*
X145240000Y-61750000D01*

View File

@ -1,11 +1,11 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.2+dfsg1-1~bpo9+1*
G04 #@! TF.CreationDate,2021-12-20T11:51:13+01:00*
G04 #@! TF.CreationDate,2022-01-09T11:10:32+01: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 Mon Dec 20 11:51:13 2021*
G04 Created by KiCad (PCBNEW 5.0.2+dfsg1-1~bpo9+1) date Sun Jan 9 11:10:32 2022*
%MOMM*%
%LPD*%
G01*
@ -14,34 +14,60 @@ G04 APERTURE LIST*
%ADD11C,0.200000*%
G04 APERTURE END LIST*
D10*
X270060000Y-7830000D02*
G75*
G03X270060000Y-7830000I-1800000J0D01*
G01*
X273330000Y-5000000D02*
X273330000Y-10680000D01*
X261800000Y-13030000D02*
X261800000Y-11630000D01*
X272380000Y-13030000D02*
X261800000Y-13030000D01*
X272380000Y-11630000D02*
X273330000Y-10680000D01*
X272380000Y-11630000D02*
X261800000Y-11630000D01*
X272380000Y-13030000D02*
X273330000Y-13980000D01*
X273330000Y-105080000D02*
X273330000Y-9480000D01*
X273330000Y-101230000D01*
X272380000Y-100280000D02*
X273330000Y-101230000D01*
X272380000Y-98880000D02*
X273330000Y-97930000D01*
X261800000Y-100280000D02*
X261800000Y-98880000D01*
X272380000Y-98880000D02*
X261800000Y-98880000D01*
X272380000Y-100280000D02*
X261800000Y-100280000D01*
D11*
X170930000Y-12480000D02*
G75*
G03X170930000Y-12480000I-1600000J0D01*
G01*
X200930000Y-12480000D02*
G75*
G03X200930000Y-12480000I-1600000J0D01*
G01*
D10*
X273330000Y-97930000D02*
X273330000Y-13980000D01*
D11*
X230930000Y-12480000D02*
G75*
G03X230930000Y-12480000I-1600000J0D01*
G01*
X260930000Y-12480000D02*
X270060000Y-95080000D02*
G75*
G03X260930000Y-12480000I-1600000J0D01*
G01*
X260930000Y-101080000D02*
G75*
G03X260930000Y-101080000I-1600000J0D01*
G01*
X271830000Y-101080000D02*
G75*
G03X271830000Y-101080000I-2500000J0D01*
G01*
X271830000Y-12480000D02*
G75*
G03X271830000Y-12480000I-2500000J0D01*
G03X270060000Y-95080000I-1800000J0D01*
G01*
D10*
X111730000Y-9480000D02*
X111730000Y-5000000D02*
X111730000Y-105080000D01*
X111730000Y-9480000D02*
X273330000Y-9480000D01*
X111730000Y-5000000D02*
X273330000Y-5000000D01*
X111730000Y-105080000D02*
X273330000Y-105080000D01*
M02*

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

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
M48
;DRILL file {KiCad 5.0.2+dfsg1-1~bpo9+1} date Mon Dec 20 11:51:10 2021
;DRILL file {KiCad 5.0.2+dfsg1-1~bpo9+1} date Sun Jan 9 11:10:34 2022
;FORMAT={-:-/ absolute / inch / decimal}
FMAT,2
INCH,TZ

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
M48
;DRILL file {KiCad 5.0.2+dfsg1-1~bpo9+1} date Mon Dec 20 11:51:10 2021
;DRILL file {KiCad 5.0.2+dfsg1-1~bpo9+1} date Sun Jan 9 11:10:34 2022
;FORMAT={-:-/ absolute / inch / decimal}
FMAT,2
INCH,TZ
@ -19,10 +19,21 @@ T12C0.1201
G90
G05
T1
X4.748Y-2.7087
X4.8898Y-3.2913
X4.9218Y-2.9291
X5.Y-2.6339
X4.4193Y-3.6501
X4.4193Y-3.8563
X4.6161Y-3.3169
X4.6161Y-3.622
X4.6261Y-2.2992
X4.6719Y-1.5551
X4.6719Y-1.7913
X4.874Y-2.1232
X4.874Y-2.2315
X4.9134Y-2.3679
X4.9409Y-1.4991
X4.9409Y-1.6159
X4.9409Y-1.7327
X4.9409Y-1.8495
X4.9724Y-2.9178
X5.0039Y-2.7643
X5.0551Y-3.0354
X5.0748Y-3.0945
@ -40,7 +51,6 @@ X5.3622Y-3.0682
X5.3898Y-2.8661
X5.4055Y-3.1129
X5.4113Y-3.4646
X5.4291Y-2.9094
X5.4291Y-3.1575
X5.4567Y-2.8307
X5.4792Y-3.4652
@ -55,7 +65,10 @@ X5.7874Y-3.0635
X5.8465Y-3.0906
X5.8563Y-2.9011
X5.9016Y-2.7953
X6.0335Y-0.7382
X6.0335Y-0.8661
X6.1164Y-3.1398
X6.3105Y-0.7972
X6.3681Y-2.9011
X6.4173Y-2.7953
X6.6282Y-3.1398
@ -66,25 +79,21 @@ X7.1597Y-3.1398
X7.3524Y-2.9011
X7.4016Y-2.7953
X7.6125Y-3.1398
X7.8976Y-3.2594
X8.6945Y-3.8571
X8.7539Y-2.0996
X8.8012Y-1.8396
X8.7613Y-2.3228
X8.8244Y-3.7795
X8.828Y-1.993
X8.839Y-1.8652
X8.9008Y-2.0669
X9.1748Y-1.6757
X9.1929Y-1.8652
X9.2094Y-2.05
X9.2213Y-1.9931
X9.2736Y-1.7377
X9.369Y-1.4634
X9.4965Y-1.4165
X9.5618Y-1.1878
X9.5972Y-1.385
X9.6673Y-2.2825
X9.6941Y-2.4359
X9.6949Y-0.876
X9.7051Y-2.3081
X9.7165Y-1.0354
X9.7252Y-1.1618
X9.7669Y-2.5098
X9.7902Y-1.365
X9.7969Y-1.5861
X9.7988Y-0.6366
@ -93,14 +102,20 @@ X9.9154Y-1.3673
X9.9154Y-1.4354
X9.9213Y-1.2303
X9.9213Y-1.2992
X9.9362Y-2.436
X9.9567Y-3.2571
X9.9941Y-3.4512
X10.0409Y-2.1186
X10.0492Y-1.0728
X10.0591Y-2.3081
X10.0756Y-2.4929
X10.0787Y-0.876
X10.0787Y-1.1614
X10.0787Y-1.2303
X10.0787Y-1.2992
X10.0791Y-3.4614
X10.0874Y-2.436
X10.1398Y-2.1806
X10.2661Y-2.5899
X10.3402Y-3.1242
X10.5118Y-2.2854
@ -240,14 +255,14 @@ X7.874Y-3.737
X7.874Y-3.837
X7.874Y-3.937
T7
X7.9854Y-3.1134
X8.0854Y-3.1134
X4.7992Y-0.8189
X4.7992Y-0.9189
X4.7992Y-1.0189
X4.7992Y-1.1189
X4.7992Y-1.2189
X4.7992Y-1.3189
X7.9854Y-3.1134
X8.0854Y-3.1134
T8
X5.1181Y-2.3311
X5.1181Y-2.4311
@ -397,9 +412,6 @@ T10
X8.5921Y-3.5933
X8.6921Y-3.5933
X8.7921Y-3.5933
X4.5354Y-3.2567
X4.5354Y-3.3567
X4.5354Y-3.4567
T11
X10.4665Y-2.1673
X10.4665Y-2.7382

View File

@ -1,4 +1,4 @@
### Module positions - created on Mon Dec 20 11:52:17 2021 ###
### Module positions - created on Sun Jan 9 11:10:46 2022 ###
### Printed by Pcbnew version kicad 5.0.2+dfsg1-1~bpo9+1
## Unit = mm, Angle = deg.
## Side : bottom

View File

@ -1,29 +1,6 @@
EESchema-LIBRARY Version 2.4
#encoding utf-8
#
# 74xGxx_74LVC1G07
#
DEF 74xGxx_74LVC1G07 U 0 40 Y Y 1 F N
F0 "U" -100 150 50 H V C CNN
F1 "74xGxx_74LVC1G07" 0 -150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
ALIAS 74AUC1G07 74AUP1G07
$FPLIST
SOT*
SG-*
$ENDFPLIST
DRAW
P 2 0 1 0 -100 -25 -50 -25 N
P 4 0 1 10 -150 100 -150 -100 100 0 -150 100 N
P 5 0 1 0 -75 25 -100 0 -75 -25 -50 0 -75 25 N
X ~ 2 -300 0 150 R 40 40 1 1 I
X GND 3 0 -100 0 D 40 40 1 1 W N
X ~ 4 250 0 150 L 40 40 1 1 C
X VCC 5 0 100 0 U 40 40 1 1 W N
ENDDRAW
ENDDEF
#
# 74xx_74LS245
#
DEF 74xx_74LS245 U 0 40 Y Y 1 L N
@ -666,6 +643,29 @@ X SDA_B 9 700 -600 200 L 40 40 0 0 B
ENDDRAW
ENDDEF
#
# Transistor_BJT_MMBT3904
#
DEF Transistor_BJT_MMBT3904 Q 0 0 Y N 1 F N
F0 "Q" 200 75 50 H V L CNN
F1 "Transistor_BJT_MMBT3904" 200 0 50 H V L CNN
F2 "Package_TO_SOT_SMD:SOT-23" 200 -75 50 H I L CIN
F3 "" 0 0 50 H I L CNN
ALIAS BC818 BC847 BC848 BC849 BC850 MMBT3904 MMBT5550L MMBT5551L
$FPLIST
SOT?23*
$ENDFPLIST
DRAW
C 50 0 111 0 1 10 N
P 2 0 1 0 25 25 100 100 N
P 3 0 1 0 25 -25 100 -100 100 -100 N
P 3 0 1 20 25 75 25 -75 25 -75 N
P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F
X B 1 -200 0 225 R 50 50 1 1 I
X E 2 100 -200 100 U 50 50 1 1 P
X C 3 100 200 100 D 50 50 1 1 P
ENDDRAW
ENDDEF
#
# ad1580_AD1580
#
DEF ad1580_AD1580 U 0 40 Y Y 1 F N
@ -771,20 +771,6 @@ X GND 1 0 0 0 D 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# power_VCC
#
DEF power_VCC #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -150 50 H I C CNN
F1 "power_VCC" 0 150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
C 0 75 25 0 1 0 N
P 2 0 1 0 0 0 0 50 N
X VCC 1 0 0 0 U 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# xc9536xl-vq44_XC9536XL-VQ44
#
DEF xc9536xl-vq44_XC9536XL-VQ44 U 0 20 Y Y 1 F N

View File

@ -1,5 +1,5 @@
Drill report for /home/dolbeau/MAC/NuBusFPGA/nubus-to-ztex/nubus-to-ztex.kicad_pcb
Created on Sun Dec 19 16:53:35 2021
Created on Sun Jan 9 11:10:36 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" (88 holes)
T1 0.40mm 0.016" (103 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)
@ -25,7 +25,7 @@ Drill file 'nubus-to-ztex-PTH.drl' contains
T11 1.30mm 0.051" (4 holes)
T12 3.05mm 0.120" (2 holes)
Total plated holes count 378
Total plated holes count 393
Drill file 'nubus-to-ztex-NPTH.drl' contains

View File

@ -1,78 +1,107 @@
### Module positions - created on Mon Dec 20 11:52:17 2021 ###
### Module positions - created on Sun Jan 9 11:10:46 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 128.4000 -75.1000 270.0000 top
C2 100nF C_0603_1608Metric 188.0000 -72.9000 90.0000 top
C3 10nF C_0603_1608Metric 144.0000 -78.6000 270.0000 top
C4 100nF C_0603_1608Metric 166.8400 -55.7600 0.0000 top
C5 10nF C_0603_1608Metric 248.0100 -25.0000 90.0000 top
C6 100nF C_0603_1608Metric 238.7600 -35.9800 180.0000 top
C7 100nF C_0603_1608Metric 254.0000 -29.5000 0.0000 top
C8 10nF C_0603_1608Metric 254.0000 -33.0000 0.0000 top
C9 10nF C_0603_1608Metric 240.4200 -37.8800 180.0000 top
C10 1uF C_0603_1608Metric 253.3300 -27.8100 0.0000 top
C12 47uF_10V+ C_0805_2012Metric 237.5400 -42.5600 180.0000 top
C13 100nF C_0603_1608Metric 234.2900 -43.3500 90.0000 top
C14 100nF C_0603_1608Metric 222.3500 -51.4100 270.0000 top
C15 100nF C_0603_1608Metric 262.0300 -66.5700 270.0000 top
C16 150uF C_1206_3216Metric 257.4100 -86.3600 180.0000 top
C17 100nF C_0603_1608Metric 254.6300 -89.0600 0.0000 top
C18 100nF C_0603_1608Metric 253.0500 -81.4600 180.0000 top
C19 100nF C_0603_1608Metric 172.3750 -33.6000 180.0000 top
C20 47uF_10V+ C_0805_2012Metric 221.7800 -96.0000 0.0000 top
C21 10nF C_0603_1608Metric 231.8200 -41.7700 90.0000 top
C22 10nF C_0603_1608Metric 139.8000 -67.7000 0.0000 top
C23 100nF C_0603_1608Metric 149.9000 -72.9000 90.0000 top
C24 100nF C_0603_1608Metric 163.0000 -72.9000 90.0000 top
C25 100nF C_0603_1608Metric 176.5000 -72.9000 90.0000 top
C26 100nF C_0603_1608Metric 125.8000 -73.1000 0.0000 top
C27 100nF C_0603_1608Metric 145.8000 -78.6000 270.0000 top
C28 10nF C_0603_1608Metric 128.4000 -71.0000 90.0000 top
C29 100nF C_0603_1608Metric 254.0000 -31.2500 0.0000 top
C30 100nF C_0603_1608Metric 141.6500 -66.0000 0.0000 top
C31 47uF_10V+ C_0805_2012Metric 204.3000 -82.7000 0.0000 top
C32 100nF C_0603_1608Metric 246.2500 -24.2500 90.0000 top
C33 10uF C_0805_2012Metric 119.9000 -86.2000 270.0000 top
D2 RED LED_0805_2012Metric 143.2200 -15.2900 270.0000 top
D3 RED LED_0805_2012Metric 145.4667 -15.2900 270.0000 top
D4 RED LED_0805_2012Metric 147.7133 -15.2900 270.0000 top
D5 RED LED_0805_2012Metric 149.9600 -15.2900 270.0000 top
FB1 Ferrite_Bead_Small L_0805_2012Metric 257.8700 -84.0700 0.0000 top
J5 HDMI_A HDMI_A_Amphenol_10029449-111 267.9000 -62.3000 90.0000 top
J6 USB_micro-B USB_Micro-B_Molex-105017-0001 270.6600 -79.0700 90.0000 top
R1 75 R_0603_1608Metric 251.5000 -25.0000 270.0000 top
R2 10k R_0603_1608Metric 160.5000 -72.2000 180.0000 top
R3 536 R_0603_1608Metric 249.7500 -25.0000 90.0000 top
R4 1M R_1210_3225Metric 246.8200 -14.7700 270.0000 top
R5 100 R_0603_1608Metric 253.9200 -34.7300 0.0000 top
R6 100 R_0603_1608Metric 253.9100 -36.4600 0.0000 top
R7 549 R_0603_1608Metric 143.2200 -18.8800 90.0000 top
R8 549 R_0603_1608Metric 145.4667 -18.8800 90.0000 top
R9 549 R_0603_1608Metric 147.7133 -18.8800 90.0000 top
R10 549 R_0603_1608Metric 149.9600 -18.8800 90.0000 top
R11 27 R_0603_1608Metric 263.5100 -76.5600 180.0000 top
R12 27 R_0603_1608Metric 263.5100 -82.1500 180.0000 top
R13 15k R_0603_1608Metric 260.8600 -77.8100 90.0000 top
R14 15k R_0603_1608Metric 260.8600 -80.9000 90.0000 top
R15 10k R_0603_1608Metric 249.2400 -86.3100 180.0000 top
R16 10k R_0603_1608Metric 249.2400 -84.1100 180.0000 top
R17 10k R_0603_1608Metric 125.0000 -66.9000 180.0000 top
R18 75 R_0603_1608Metric 250.0000 -39.5000 90.0000 top
R19 75 R_0603_1608Metric 252.0000 -39.5000 90.0000 top
R20 1k R_0603_1608Metric 254.0000 -22.2500 180.0000 top
R23 10k R_0603_1608Metric 139.2478 -86.0071 90.0000 top
R24 10k R_0603_1608Metric 137.4478 -86.0071 90.0000 top
R25 10k R_0603_1608Metric 135.6478 -86.0071 90.0000 top
R26 10k R_0603_1608Metric 133.8478 -86.0071 90.0000 top
U1 74LVC1G07 SOT-23-5 124.2000 -70.0000 270.0000 top
U2 AD1580 SOT-23 254.2500 -25.0000 90.0000 top
U6 SN65220 SOT-23-6 265.4000 -79.3550 180.0000 top
U7 TPS2051C SOT-23-5 252.9000 -85.2100 270.0000 top
U8 XC9536XL-VQ44 TQFP-44_10x10mm_P0.8mm_Xilinx 136.2000 -76.2000 90.0000 top
U9 74FCT245ATQG QSOP-20_3.9x8.7mm_P0.635mm 152.5000 -78.5000 90.0000 top
U10 74FCT245ATQG QSOP-20_3.9x8.7mm_P0.635mm 165.5000 -78.5000 90.0000 top
U11 74FCT245ATQG QSOP-20_3.9x8.7mm_P0.635mm 179.0000 -78.5000 90.0000 top
U12 74FCT245ATQG QSOP-20_3.9x8.7mm_P0.635mm 190.5000 -78.5000 90.0000 top
# Ref Val Package PosX PosY Rot Side
C1 100nF C_0603_1608Metric 128.4000 -75.1000 270.0000 top
C2 100nF C_0603_1608Metric 188.0000 -72.9000 90.0000 top
C3 10nF C_0603_1608Metric 144.0000 -78.6000 270.0000 top
C4 100nF C_0603_1608Metric 166.8400 -55.7600 0.0000 top
C5 10nF C_0603_1608Metric 248.0100 -25.0000 90.0000 top
C6 100nF C_0603_1608Metric 238.7600 -35.9800 180.0000 top
C7 100nF C_0603_1608Metric 254.0000 -29.5000 0.0000 top
C8 10nF C_0603_1608Metric 254.0000 -33.0000 0.0000 top
C9 10nF C_0603_1608Metric 240.4200 -37.8800 180.0000 top
C10 1uF C_0603_1608Metric 253.3300 -27.8100 0.0000 top
C12 47uF_10V+ C_0805_2012Metric 259.5400 -53.8100 180.0000 top
C13 100nF C_0603_1608Metric 256.2900 -54.6000 90.0000 top
C14 100nF C_0603_1608Metric 244.8600 -61.0900 90.0000 top
C15 100nF C_0603_1608Metric 262.0300 -66.5700 270.0000 top
C16 150uF C_1206_3216Metric 257.4100 -86.3600 180.0000 top
C17 100nF C_0603_1608Metric 254.6300 -89.0600 0.0000 top
C18 100nF C_0603_1608Metric 253.0500 -81.4600 180.0000 top
C19 100nF C_0603_1608Metric 172.3750 -33.6000 180.0000 top
C20 47uF_10V+ C_0805_2012Metric 221.7800 -96.0000 0.0000 top
C21 10nF C_0603_1608Metric 253.8200 -53.0200 90.0000 top
C22 10nF C_0603_1608Metric 139.8000 -67.7000 0.0000 top
C23 100nF C_0603_1608Metric 149.9000 -72.9000 90.0000 top
C24 100nF C_0603_1608Metric 163.0000 -72.9000 90.0000 top
C25 100nF C_0603_1608Metric 176.5000 -72.9000 90.0000 top
C26 1uF C_0603_1608Metric 125.8000 -71.0000 90.0000 top
C27 100nF C_0603_1608Metric 145.8000 -78.6000 270.0000 top
C28 10nF C_0603_1608Metric 128.4000 -71.0000 90.0000 top
C29 100nF C_0603_1608Metric 254.0000 -31.2500 0.0000 top
C30 100nF C_0603_1608Metric 141.6500 -66.0000 0.0000 top
C31 47uF_10V+ C_0805_2012Metric 204.3000 -82.7000 0.0000 top
C32 100nF C_0603_1608Metric 246.2500 -24.2500 90.0000 top
D1 GREEN LED_0805_2012Metric 123.3026 -46.9770 180.0000 top
D2 RED LED_0805_2012Metric 143.2200 -15.2900 270.0000 top
D3 RED LED_0805_2012Metric 145.4667 -15.2900 270.0000 top
D4 RED LED_0805_2012Metric 147.7133 -15.2900 270.0000 top
D5 RED LED_0805_2012Metric 149.9600 -15.2900 270.0000 top
D6 GREEN LED_0805_2012Metric 123.3026 -44.0104 180.0000 top
D7 GREEN LED_0805_2012Metric 123.3026 -41.0437 180.0000 top
D8 GREEN LED_0805_2012Metric 123.3026 -38.0770 180.0000 top
D9 ORANGE LED_0805_2012Metric 197.7500 -78.2500 270.0000 top
D10 YELLOW LED_0805_2012Metric 121.5600 -56.6800 180.0000 top
D11 YELLOW LED_0805_2012Metric 121.5600 -53.9300 180.0000 top
D12 YELLOW LED_0805_2012Metric 122.4708 -60.1440 180.0000 top
D13 YELLOW LED_0805_2012Metric 126.1000 -77.8000 180.0000 top
D14 YELLOW LED_0805_2012Metric 217.7500 -60.7500 0.0000 top
D15 YELLOW LED_0805_2012Metric 217.7500 -57.5000 0.0000 top
D16 ORANGE LED_0805_2012Metric 155.5000 -18.7500 0.0000 top
D17 ORANGE LED_0805_2012Metric 155.5000 -22.0000 0.0000 top
FB1 Ferrite_Bead_Small L_0805_2012Metric 257.8700 -84.0700 0.0000 top
J5 HDMI_A HDMI_A_Amphenol_10029449-111 267.9000 -62.3000 90.0000 top
J6 USB_micro-B USB_Micro-B_Molex-105017-0001 270.6600 -79.0700 90.0000 top
Q1 MMBT3904 SOT-23 114.5000 -97.0000 0.0000 top
Q2 MMBT3904 SOT-23 118.2500 -89.7500 0.0000 top
R1 75 R_0603_1608Metric 251.5000 -25.0000 270.0000 top
R2 10k R_0603_1608Metric 160.5000 -72.2000 180.0000 top
R3 536 R_0603_1608Metric 249.7500 -25.0000 90.0000 top
R4 1M R_1210_3225Metric 246.8200 -14.7700 270.0000 top
R5 100 R_0603_1608Metric 253.9200 -34.7300 0.0000 top
R6 100 R_0603_1608Metric 253.9100 -36.4600 0.0000 top
R7 549 R_0603_1608Metric 143.2200 -18.8800 90.0000 top
R8 549 R_0603_1608Metric 145.4667 -18.8800 90.0000 top
R9 549 R_0603_1608Metric 147.7133 -18.8800 90.0000 top
R10 549 R_0603_1608Metric 149.9600 -18.8800 90.0000 top
R11 27 R_0603_1608Metric 263.5100 -76.5600 180.0000 top
R12 27 R_0603_1608Metric 263.5100 -82.1500 180.0000 top
R13 15k R_0603_1608Metric 260.8600 -77.8100 90.0000 top
R14 15k R_0603_1608Metric 260.8600 -80.9000 90.0000 top
R15 10k R_0603_1608Metric 249.2400 -86.3100 180.0000 top
R16 10k R_0603_1608Metric 249.2400 -84.1100 180.0000 top
R17 27 R_0603_1608Metric 115.2500 -93.5000 90.0000 top
R18 75 R_0603_1608Metric 250.0000 -39.5000 90.0000 top
R19 75 R_0603_1608Metric 252.0000 -39.5000 90.0000 top
R20 1k R_0603_1608Metric 254.0000 -22.2500 180.0000 top
R21 549 R_0603_1608Metric 119.4526 -46.9770 0.0000 top
R22 549 R_0603_1608Metric 119.4526 -44.0104 0.0000 top
R23 10k R_0603_1608Metric 139.2478 -86.0071 90.0000 top
R24 10k R_0603_1608Metric 137.4478 -86.0071 90.0000 top
R25 10k R_0603_1608Metric 135.6478 -86.0071 90.0000 top
R26 10k R_0603_1608Metric 133.8478 -86.0071 90.0000 top
R27 549 R_0603_1608Metric 119.4526 -41.0437 0.0000 top
R28 549 R_0603_1608Metric 119.4526 -38.0770 0.0000 top
R29 549 R_0603_1608Metric 197.7500 -82.0000 90.0000 top
R30 549 R_0603_1608Metric 117.8100 -56.6800 0.0000 top
R31 549 R_0603_1608Metric 117.8100 -53.9300 0.0000 top
R32 549 R_0603_1608Metric 118.6708 -60.1640 0.0000 top
R33 549 R_0603_1608Metric 125.1000 -74.9000 270.0000 top
R34 549 R_0603_1608Metric 221.7500 -60.7500 180.0000 top
R35 549 R_0603_1608Metric 221.7500 -57.5000 180.0000 top
R36 549 R_0603_1608Metric 159.5000 -18.7500 180.0000 top
R37 549 R_0603_1608Metric 159.5000 -22.0000 180.0000 top
R38 1k R_0603_1608Metric 113.5000 -93.5000 270.0000 top
R39 27 R_0603_1608Metric 119.0000 -86.2500 90.0000 top
R40 1k R_0603_1608Metric 117.2500 -86.2500 270.0000 top
U2 AD1580 SOT-23 254.2500 -25.0000 90.0000 top
U6 SN65220 SOT-23-6 265.4000 -79.3550 180.0000 top
U7 TPS2051C SOT-23-5 252.9000 -85.2100 270.0000 top
U8 XC9536XL-VQ44 TQFP-44_10x10mm_P0.8mm_Xilinx 136.2000 -76.2000 90.0000 top
U9 74FCT245ATQG QSOP-20_3.9x8.7mm_P0.635mm_Renesas 152.5000 -78.5000 90.0000 top
U10 74FCT245ATQG QSOP-20_3.9x8.7mm_P0.635mm_Renesas 165.5000 -78.5000 90.0000 top
U11 74FCT245ATQG QSOP-20_3.9x8.7mm_P0.635mm_Renesas 179.0000 -78.5000 90.0000 top
U12 74FCT245ATQG QSOP-20_3.9x8.7mm_P0.635mm_Renesas 190.5000 -78.5000 90.0000 top
## End

View File

@ -1,36 +1,38 @@
Part/Designator,Manufacture Part Number/Seeed SKU,Quantity,URL
"R5,R6",0603WAF1000T5E,2,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_Uniroyal-Elec-0603WAF1000T5E_C22775.html
R20,0603WAF1001T5E,1,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF1001T5E_C21190.html
"R2,R15,R16,R17,R23,R24,R25,R26",0603WAF1002T5E,8,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF1002T5E_C25804.html
"R20,R38,R40",0603WAF1001T5E,3,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF1001T5E_C21190.html
"R2,R15,R16,R23,R24,R25,R26",0603WAF1002T5E,7,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF1002T5E_C25804.html
"R13,R14",0603WAF1502T5E,2,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF1502T5E_C22809.html
"R11,R12",0603WAF270JT5E,2,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF270JT5E_C25190.html
"R11,R12,R17,R39",0603WAF270JT5E,4,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF270JT5E_C25190.html
R3,0603WAF5360T5E,1,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF5360T5E_C23201.html
"R7,R8,R9,R10",0603WAF5490T5E,4,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF5490T5E_C23079.html
"R7,R8,R9,R10,R21,R22,R27,R28,R29,R30,R31,R32,R33,R34,R35,R36,R37",0603WAF5490T5E,17,https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF5490T5E_C23079.html
"R1,R18,R19",0603WAF750JT5E,3,https://www.lcsc.com/product-detail/Chip-Resistor-Surface-Mount_Uniroyal-Elec-0603WAF750JT5E_C4275.html
"JAB1,JCD1",10-89-7642,2,https://www2.mouser.com/ProductDetail/Molex/10-89-7642?qs=%2Fha2pyFadugCxzQFZUdvioDcljDVidgd4vXrOFuSRYM%3D
J5,10029449-111,1,https://www2.mouser.com/ProductDetail/Amphenol-FCI/10029449-111RLF?qs=fmpTyLOWOey0HPdD9%2F%2FaXA%3D%3D
J6,105017-0001,1,https://www.mouser.fr/ProductDetail/Molex/105017-0001?qs=hlXxxvYE36k7QcsR97GUKA%3D%3D
J6,105017-0001,1,https://lcsc.com/product-detail/USB-Connectors_MOLEX-1050170001_C136000.html
R4,1210W2F1004T5E,1,https://www.lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-1210W2F1004T5E_C620664.html
"J7,J10",640456-3,2,https://www.lcsc.com/product-detail/Wire-To-Board-Wire-To-Wire-Connector_TE-Connectivity-640456-3_C86503.html
J7,640456-3,1,https://www.lcsc.com/product-detail/Wire-To-Board-Wire-To-Wire-Connector_TE-Connectivity-640456-3_C86503.html
"U9,U10,U11,U12",74FCT245ATQG,4,https://www.mouser.fr/ProductDetail/Renesas-IDT/74FCT245ATQG?qs=JcGQCygHkIZJMVzrAcertA%3D%3D
J3,85003-0567,1,https://www.mouser.fr/ProductDetail/Molex/85003-0567?qs=U4pz39agNJB6P1oBpJ4bJA%3D%3D
"J1,J8",87831-1420,2,https://www2.mouser.com/ProductDetail/Molex/87831-1420?qs=QtQX4uD3c2VDCL534TqpVg%3D%3D
U2,AD1580ARTZ,1,https://www.mouser.fr/ProductDetail/Analog-Devices/AD1580ARTZ-REEL7?qs=NmRFExCfTkENN3U3%252BacLbA%3D%3D
U4,ADV7125JSTZ240,1,https://lcsc.com/product-detail/Digital-To-Analog-Converters-DACs_Analog-Devices-ADV7125KSTZ50_C514374.html
U2,AD1580BRTZ,1,https://www.mouser.fr/ProductDetail/Analog-Devices/AD1580BRTZ-REEL7?qs=NmRFExCfTkFZVi9%2F1ZfkXg%3D%3D
U4,ADV7125JSTZ240,1,https://lcsc.com/product-detail/Digital-To-Analog-Converters-DACs_Analog-Devices-ADV7125JSTZ240_C514373.html
"C12,C20,C31",C2012X5R1A476MTJ00E,3,https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_TDK-C2012X5R1A476MTJ00E_C76636.html
"C3,C5,C8,C9,C21,C22,C28",CC0603KRX7R8BB103,7,https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB103_C327204.html
"C1,C2,C4,C6,C7,C13,C14,C15,C17,C18,C19,C23,C24,C25,C26,C27,C29,C30,C32",CC0603KRX7R8BB104,19,
C10,CC0603KRX7R8BB105,1,https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB105_C106858.html
C33,GRM21BR61E106MA73L,1,https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM21BR61E106MA73L_C391262.html
"C1,C2,C4,C6,C7,C13,C14,C15,C17,C18,C19,C23,C24,C25,C27,C29,C30,C32",CC0603KRX7R8BB104,18,
"C10,C26",CC0603KRX7R8BB105,2,https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB105_C106858.html
C16,GRM31CR60J157ME11L,1,https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM31CR60J157ME11L_C528968.html
C11,KM010M400E110A,1,https://lcsc.com/product-detail/Aluminum-Electrolytic-Capacitors-Leaded_Capxon-International-Elec-KM010M400E110A_C59365.html
J4,L77HDE15SD1CH4F,1,https://www.mouser.fr/ProductDetail/Amphenol/L77HDE15SD1CH4F?qs=mq7kV%2Fq8lk6plQnZOUKCHg%3D%3D
J4,L77HDE15SD1CH4FVGA,1,https://www.mouser.fr/ProductDetail/Amphenol-Commercial-Products/L77HDE15SD1CH4FVGA?qs=ToP8pWlZ0bNtQSp9f8k5Rw%3D%3D
"D9,D16,D17",LTST-C170KFKT,3,https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KFKT_C284931.html
"D1,D6,D7,D8",LTST-C170KGKT,4,https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KGKT_C98221.html
"D2,D3,D4,D5",LTST-C170KRKT,4,https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KRKT_C94868.html
"D10,D11,D12,D13,D14,D15",LTST-C170KSKT,6,https://lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KSKT_C125091.html
"Q1,Q2",MMBT3904,2,
J9,PM254V-11-02-H85,1,https://www.lcsc.com/product-detail/Pin-Header-Female-Header_XFCN-PM254V-11-02-H85_C541849.html
FB1,PZ2012U221-2R0TF,1,https://lcsc.com/product-detail/Ferrite-Beads_Sunlord-PZ2012U221-2R0TF_C44361.html
J2,PZ254R-11-06P,1,https://lcsc.com/product-detail/Pin-Header-Female-Header_XFCN-PZ254R-11-06P_C492414.html
U6,SN65220DBVR,1,https://www2.mouser.com/ProductDetail/Texas-Instruments/SN65220DBVR?qs=5nGYs9Do7G0gEpYxbYqyeA%3D%3D
U1,SN74LVC1G07DBVR,1,https://www.mouser.fr/ProductDetail/Texas-Instruments/SN74LVC1G07DBVR?qs=FM6NhYOeeBXhZlYg%2Fa2W9g%3D%3D
U5,TPD12S016PWR,1,
U6,SN65220DBVR,1,https://lcsc.com/product-detail/TVS_Texas-Instruments-SN65220DBVR_C21787.html
U5,TPD12S016PWR,1,https://lcsc.com/product-detail/Interface-Specialized_Texas-Instruments-TPD12S016PWR_C201665.html
U7,TPS2051CDBVR,1,https://www.mouser.fr/ProductDetail/Texas-Instruments/TPS2051CDBVR?qs=PF3AD18CSE5vi2HeWLJCmw%3D%3D
U8,XC9536XL-10VQ44C,1,https://www2.mouser.com/ProductDetail/?qs=rrS6PyfT74dzgfwydI2z8g%3D%3D
U8,XC9572XL-5VQ44C,1,https://www.mouser.fr/ProductDetail/Xilinx/XC9572XL-5VQ44C?qs=rrS6PyfT74dsfCIFWnnuFQ%3D%3D

1 Part/Designator Manufacture Part Number/Seeed SKU Quantity URL
2 R5,R6 0603WAF1000T5E 2 https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_Uniroyal-Elec-0603WAF1000T5E_C22775.html
3 R20 R20,R38,R40 0603WAF1001T5E 1 3 https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF1001T5E_C21190.html
4 R2,R15,R16,R17,R23,R24,R25,R26 R2,R15,R16,R23,R24,R25,R26 0603WAF1002T5E 8 7 https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF1002T5E_C25804.html
5 R13,R14 0603WAF1502T5E 2 https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF1502T5E_C22809.html
6 R11,R12 R11,R12,R17,R39 0603WAF270JT5E 2 4 https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF270JT5E_C25190.html
7 R3 0603WAF5360T5E 1 https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF5360T5E_C23201.html
8 R7,R8,R9,R10 R7,R8,R9,R10,R21,R22,R27,R28,R29,R30,R31,R32,R33,R34,R35,R36,R37 0603WAF5490T5E 4 17 https://lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-0603WAF5490T5E_C23079.html
9 R1,R18,R19 0603WAF750JT5E 3 https://www.lcsc.com/product-detail/Chip-Resistor-Surface-Mount_Uniroyal-Elec-0603WAF750JT5E_C4275.html
10 JAB1,JCD1 10-89-7642 2 https://www2.mouser.com/ProductDetail/Molex/10-89-7642?qs=%2Fha2pyFadugCxzQFZUdvioDcljDVidgd4vXrOFuSRYM%3D
11 J5 10029449-111 1 https://www2.mouser.com/ProductDetail/Amphenol-FCI/10029449-111RLF?qs=fmpTyLOWOey0HPdD9%2F%2FaXA%3D%3D
12 J6 105017-0001 1 https://www.mouser.fr/ProductDetail/Molex/105017-0001?qs=hlXxxvYE36k7QcsR97GUKA%3D%3D https://lcsc.com/product-detail/USB-Connectors_MOLEX-1050170001_C136000.html
13 R4 1210W2F1004T5E 1 https://www.lcsc.com/product-detail/Chip-Resistor-Surface-Mount_UNI-ROYAL-Uniroyal-Elec-1210W2F1004T5E_C620664.html
14 J7,J10 J7 640456-3 2 1 https://www.lcsc.com/product-detail/Wire-To-Board-Wire-To-Wire-Connector_TE-Connectivity-640456-3_C86503.html
15 U9,U10,U11,U12 74FCT245ATQG 4 https://www.mouser.fr/ProductDetail/Renesas-IDT/74FCT245ATQG?qs=JcGQCygHkIZJMVzrAcertA%3D%3D
16 J3 85003-0567 1 https://www.mouser.fr/ProductDetail/Molex/85003-0567?qs=U4pz39agNJB6P1oBpJ4bJA%3D%3D
17 J1,J8 87831-1420 2 https://www2.mouser.com/ProductDetail/Molex/87831-1420?qs=QtQX4uD3c2VDCL534TqpVg%3D%3D
18 U2 AD1580ARTZ AD1580BRTZ 1 https://www.mouser.fr/ProductDetail/Analog-Devices/AD1580ARTZ-REEL7?qs=NmRFExCfTkENN3U3%252BacLbA%3D%3D https://www.mouser.fr/ProductDetail/Analog-Devices/AD1580BRTZ-REEL7?qs=NmRFExCfTkFZVi9%2F1ZfkXg%3D%3D
19 U4 ADV7125JSTZ240 1 https://lcsc.com/product-detail/Digital-To-Analog-Converters-DACs_Analog-Devices-ADV7125KSTZ50_C514374.html https://lcsc.com/product-detail/Digital-To-Analog-Converters-DACs_Analog-Devices-ADV7125JSTZ240_C514373.html
20 C12,C20,C31 C2012X5R1A476MTJ00E 3 https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_TDK-C2012X5R1A476MTJ00E_C76636.html
21 C3,C5,C8,C9,C21,C22,C28 CC0603KRX7R8BB103 7 https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB103_C327204.html
22 C1,C2,C4,C6,C7,C13,C14,C15,C17,C18,C19,C23,C24,C25,C26,C27,C29,C30,C32 C1,C2,C4,C6,C7,C13,C14,C15,C17,C18,C19,C23,C24,C25,C27,C29,C30,C32 CC0603KRX7R8BB104 19 18
23 C10 C10,C26 CC0603KRX7R8BB105 1 2 https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_YAGEO-CC0603KRX7R8BB105_C106858.html
C33 GRM21BR61E106MA73L 1 https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM21BR61E106MA73L_C391262.html
24 C16 GRM31CR60J157ME11L 1 https://lcsc.com/product-detail/Multilayer-Ceramic-Capacitors-MLCC-SMD-SMT_Murata-Electronics-GRM31CR60J157ME11L_C528968.html
25 C11 KM010M400E110A 1 https://lcsc.com/product-detail/Aluminum-Electrolytic-Capacitors-Leaded_Capxon-International-Elec-KM010M400E110A_C59365.html
26 J4 L77HDE15SD1CH4F L77HDE15SD1CH4FVGA 1 https://www.mouser.fr/ProductDetail/Amphenol/L77HDE15SD1CH4F?qs=mq7kV%2Fq8lk6plQnZOUKCHg%3D%3D https://www.mouser.fr/ProductDetail/Amphenol-Commercial-Products/L77HDE15SD1CH4FVGA?qs=ToP8pWlZ0bNtQSp9f8k5Rw%3D%3D
27 D9,D16,D17 LTST-C170KFKT 3 https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KFKT_C284931.html
28 D1,D6,D7,D8 LTST-C170KGKT 4 https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KGKT_C98221.html
29 D2,D3,D4,D5 LTST-C170KRKT 4 https://www.lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KRKT_C94868.html
30 D10,D11,D12,D13,D14,D15 LTST-C170KSKT 6 https://lcsc.com/product-detail/Light-Emitting-Diodes-LED_Lite-On-LTST-C170KSKT_C125091.html
31 Q1,Q2 MMBT3904 2
32 J9 PM254V-11-02-H85 1 https://www.lcsc.com/product-detail/Pin-Header-Female-Header_XFCN-PM254V-11-02-H85_C541849.html
33 FB1 PZ2012U221-2R0TF 1 https://lcsc.com/product-detail/Ferrite-Beads_Sunlord-PZ2012U221-2R0TF_C44361.html
34 J2 PZ254R-11-06P 1 https://lcsc.com/product-detail/Pin-Header-Female-Header_XFCN-PZ254R-11-06P_C492414.html
35 U6 SN65220DBVR 1 https://www2.mouser.com/ProductDetail/Texas-Instruments/SN65220DBVR?qs=5nGYs9Do7G0gEpYxbYqyeA%3D%3D https://lcsc.com/product-detail/TVS_Texas-Instruments-SN65220DBVR_C21787.html
36 U1 U5 SN74LVC1G07DBVR TPD12S016PWR 1 https://www.mouser.fr/ProductDetail/Texas-Instruments/SN74LVC1G07DBVR?qs=FM6NhYOeeBXhZlYg%2Fa2W9g%3D%3D https://lcsc.com/product-detail/Interface-Specialized_Texas-Instruments-TPD12S016PWR_C201665.html
U5 TPD12S016PWR 1
37 U7 TPS2051CDBVR 1 https://www.mouser.fr/ProductDetail/Texas-Instruments/TPS2051CDBVR?qs=PF3AD18CSE5vi2HeWLJCmw%3D%3D
38 U8 XC9536XL-10VQ44C XC9572XL-5VQ44C 1 https://www2.mouser.com/ProductDetail/?qs=rrS6PyfT74dzgfwydI2z8g%3D%3D https://www.mouser.fr/ProductDetail/Xilinx/XC9572XL-5VQ44C?qs=rrS6PyfT74dsfCIFWnnuFQ%3D%3D

View File

@ -2,18 +2,17 @@ P CODE 00
P UNITS CUST 0
P DIM N
317GND VIA MD0157PA00X+100492Y-010728X0315Y0000R000S3
317GND VIA MD0157PA00X+092213Y-019931X0315Y0000R000S3
317GND VIA MD0157PA00X+091929Y-018652X0315Y0000R000S3
317GND VIA MD0157PA00X+100874Y-024360X0315Y0000R000S3
317GND VIA MD0157PA00X+100591Y-023081X0315Y0000R000S3
317GND VIA MD0157PA00X+100791Y-034614X0315Y0000R000S3
317GND VIA MD0157PA00X+095972Y-013850X0315Y0000R000S3
317GND VIA MD0157PA00X+105118Y-022854X0315Y0000R000S3
317GND VIA MD0157PA00X+103402Y-031242X0315Y0000R000S3
317GND VIA MD0157PA00X+099567Y-032571X0315Y0000R000S3
317GND VIA MD0157PA00X+087539Y-020996X0315Y0000R000S3
317GND VIA MD0157PA00X+105118Y-025807X0315Y0000R000S3
317GND VIA MD0157PA00X+055768Y-005651X0315Y0000R000S3
317GND VIA MD0157PA00X+091748Y-016757X0315Y0000R000S3
317GND VIA MD0157PA00X+088390Y-018652X0315Y0000R000S3
317GND VIA MD0157PA00X+100409Y-021186X0315Y0000R000S3
317GND VIA MD0157PA00X+097051Y-023081X0315Y0000R000S3
317GND VIA MD0157PA00X+095618Y-011878X0315Y0000R000S3
317GND VIA MD0157PA00X+055866Y-026654X0315Y0000R000S3
317GND VIA MD0157PA00X+088244Y-037795X0315Y0000R000S3
@ -32,7 +31,6 @@ P DIM N
317GND VIA MD0157PA00X+052874Y-032945X0315Y0000R000S3
317GND VIA MD0157PA00X+050039Y-027643X0315Y0000R000S3
317GND VIA MD0157PA00X+050551Y-030354X0315Y0000R000S3
317GND VIA MD0157PA00X+047480Y-027087X0315Y0000R000S3
317GND VIA MD0157PA00X+100787Y-012992X0315Y0000R000S3
317GND VIA MD0157PA00X+100787Y-012303X0315Y0000R000S3
317GND VIA MD0157PA00X+097902Y-013650X0315Y0000R000S3
@ -44,26 +42,36 @@ P DIM N
317GND VIA MD0157PA00X+099016Y-009094X0315Y0000R000S3
317GND VIA MD0157PA00X+097969Y-015861X0315Y0000R000S3
317GND VIA MD0157PA00X+093690Y-014634X0315Y0000R000S3
317GND VIA MD0157PA00X+099362Y-024360X0315Y0000R000S3
317GND VIA MD0157PA00X+044193Y-036501X0315Y0000R000S3
317GND VIA MD0157PA00X+044193Y-038563X0315Y0000R000S3
317GND VIA MD0157PA00X+046161Y-036220X0315Y0000R000S3
317GND VIA MD0157PA00X+046161Y-033169X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+097165Y-010354X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+073524Y-029011X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+069016Y-029016X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+058563Y-029011X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+063681Y-029011X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+050807Y-028740X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+092736Y-017377X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+101398Y-021806X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+054921Y-026142X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+088012Y-018396X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+096673Y-022825X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+057874Y-030635X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+049218Y-029291X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+050000Y-026339X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+089008Y-020669X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+097669Y-025098X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+099213Y-012303X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+099213Y-012992X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+100787Y-011614X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+100787Y-008760X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+094965Y-014165X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+046719Y-017913X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+046719Y-015551X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+046261Y-022992X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+078976Y-032594X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+087613Y-023228X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+063105Y-007972X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+049724Y-029178X0315Y0000R000S3
317+5V VIA MD0157PA00X+099941Y-034512X0315Y0000R000S3
317+5V VIA MD0157PA00X+088280Y-019930X0315Y0000R000S3
317+5V VIA MD0157PA00X+096941Y-024359X0315Y0000R000S3
317+5V VIA MD0157PA00X+054113Y-034646X0315Y0000R000S3
317+5V VIA MD0157PA00X+053405Y-034646X0315Y0000R000S3
317+5V VIA MD0157PA00X+052696Y-034646X0315Y0000R000S3
@ -71,31 +79,249 @@ P DIM N
317+5V VIA MD0157PA00X+086945Y-038571X0315Y0000R000S3
317~RESET_5V VIA MD0157PA00X+056535Y-029724X0315Y0000R000S3
317~TM1_5V VIA MD0157PA00X+051969Y-029685X0315Y0000R000S3
317~NMRQ_5V VIA MD0157PA00X+048898Y-032913X0315Y0000R000S3
317~TM0_5V VIA MD0157PA00X+052402Y-029370X0315Y0000R000S3
317~ID3_3V3 VIA MD0157PA00X+049409Y-014991X0315Y0000R000S3
317~ID2_3V3 VIA MD0157PA00X+049409Y-016159X0315Y0000R000S3
317~ID1_3V3 VIA MD0157PA00X+049409Y-017327X0315Y0000R000S3
317~ID0_3V3 VIA MD0157PA00X+049409Y-018495X0315Y0000R000S3
317~START_3V3 VIA MD0157PA00X+051929Y-030630X0315Y0000R000S3
317~ACK_3V3 VIA MD0157PA00X+050748Y-030945X0315Y0000R000S3
317~ACK_3V3 VIA MD0157PA00X+049134Y-023679X0315Y0000R000S3
317~TM0_3V3 VIA MD0157PA00X+052008Y-026654X0315Y0000R000S3
317~TM0_3V3 VIA MD0157PA00X+048740Y-021232X0315Y0000R000S3
317~TM1_3V3 VIA MD0157PA00X+051220Y-027205X0315Y0000R000S3
317~TM1_3V3 VIA MD0157PA00X+048740Y-022315X0315Y0000R000S3
317FPGA_VGA_HS VIA MD0157PA00X+099154Y-013673X0315Y0000R000S3
317FPGA_VGA_VS VIA MD0157PA00X+099154Y-014354X0315Y0000R000S3
317HDMI_5V VIA MD0157PA00X+092094Y-020500X0315Y0000R000S3
317HDMI_5V VIA MD0157PA00X+100756Y-024929X0315Y0000R000S3
317HDMI_5V VIA MD0157PA00X+102661Y-025899X0315Y0000R000S3
317ARB VIA MD0157PA00X+060335Y-007382X0315Y0000R000S3
317NUBUS_AD_DIR VIA MD0157PA00X+058465Y-030906X0315Y0000R000S3
317CPLD_JTAG_TDI VIA MD0157PA00X+053110Y-030748X0315Y0000R000S3
317CPLD_JTAG_TDO VIA MD0157PA00X+053622Y-030682X0315Y0000R000S3
317CPLD_JTAG_TDO VIA MD0157PA00X+054882Y-028799X0315Y0000R000S3
317CPLD_JTAG_TMS VIA MD0157PA00X+054291Y-031575X0315Y0000R000S3
317CPLD_JTAG_TCK VIA MD0157PA00X+054055Y-031129X0315Y0000R000S3
317_CPLD_SIGNAL_2 VIA MD0157PA00X+054291Y-029094X0315Y0000R000S3
317GRANT VIA MD0157PA00X+060335Y-008661X0315Y0000R000S3
317TO_CPLD_SIGNAL VIA MD0157PA00X+053898Y-028661X0315Y0000R000S3
327+3V3 C26 -1 A01X+049528Y-028263X0344Y0374R270S2
327GND C26 -2 A01X+049528Y-027643X0344Y0374R270S2
327NET-(Q2-PAD1) Q2 -1 A01X+046161Y-034961X0354Y0315R000S2
327GND Q2 -2 A01X+046161Y-035709X0354Y0315R000S2
327~RQST_5V Q2 -3 A01X+046949Y-035335X0354Y0315R000S2
327RQST_O R39 -2 A01X+046850Y-033647X0344Y0374R270S2
327NET-(Q2-PAD1) R39 -1 A01X+046850Y-034267X0344Y0374R270S2
327GND R40 -1 A01X+046161Y-033647X0344Y0374R090S2
327NET-(Q2-PAD1) R40 -2 A01X+046161Y-034267X0344Y0374R090S2
327GND R38 -1 A01X+044685Y-036501X0344Y0374R090S2
327NET-(Q1-PAD1) R38 -2 A01X+044685Y-037121X0344Y0374R090S2
327NMRQ R17 -2 A01X+045374Y-036501X0344Y0374R270S2
327NET-(Q1-PAD1) R17 -1 A01X+045374Y-037121X0344Y0374R270S2
327NET-(Q1-PAD1) Q1 -1 A01X+044685Y-037815X0354Y0315R000S2
327GND Q1 -2 A01X+044685Y-038563X0354Y0315R000S2
327~NMRQ_5V Q1 -3 A01X+045472Y-038189X0354Y0315R000S2
327~CLK_5V U8 -44 A01X+051378Y-031575X0630Y0217R180S2
327RQST_O U8 -43 A01X+051378Y-031260X0630Y0217R180S2
327~ACK_3V3 U8 -42 A01X+051378Y-030945X0630Y0217R180S2
327~START_3V3 U8 -41 A01X+051378Y-030630X0630Y0217R180S2
327~RQST_5V U8 -40 A01X+051378Y-030315X0630Y0217R180S2
327TO_CPLD_SIGNAL U8 -39 A01X+051378Y-030000X0630Y0217R180S2
327~TM1_5V U8 -38 A01X+051378Y-029685X0630Y0217R180S2
327~TM0_5V U8 -37 A01X+051378Y-029370X0630Y0217R180S2
327~RQST_3V3 U8 -36 A01X+051378Y-029055X0630Y0217R180S2
327+3V3 U8 -35 A01X+051378Y-028740X0630Y0217R180S2
327~TM1_3V3 U8 -34 A01X+051378Y-028425X0630Y0217R180S2
327~TM0_3V3 U8 -33 A01X+052047Y-027756X0630Y0217R270S2
327~ID3_3V3 U8 -32 A01X+052362Y-027756X0630Y0217R270S2
327~ID2_3V3 U8 -31 A01X+052677Y-027756X0630Y0217R270S2
327~ID1_3V3 U8 -30 A01X+052992Y-027756X0630Y0217R270S2
327~ID0_3V3 U8 -29 A01X+053307Y-027756X0630Y0217R270S2
327ARB U8 -28 A01X+053622Y-027756X0630Y0217R270S2
327GRANT U8 -27 A01X+053937Y-027756X0630Y0217R270S2
327+3V3 U8 -26 A01X+054252Y-027756X0630Y0217R270S2
327GND U8 -25 A01X+054567Y-027756X0630Y0217R270S2
327CPLD_JTAG_TDO U8 -24 A01X+054882Y-027756X0630Y0217R270S2
327TMOEN U8 -23 A01X+055197Y-027756X0630Y0217R270S2
327BUS_MASTER_DIR U8 -22 A01X+055866Y-028425X0630Y0217R180S2
327~RESET_3V3 U8 -21 A01X+055866Y-028740X0630Y0217R180S2
327~CLK_3V3 U8 -20 A01X+055866Y-029055X0630Y0217R180S2
327NUBUS_OE U8 -19 A01X+055866Y-029370X0630Y0217R180S2
327~RESET_5V U8 -18 A01X+055866Y-029685X0630Y0217R180S2
327GND U8 -17 A01X+055866Y-030000X0630Y0217R180S2
327~ARB3_5V U8 -16 A01X+055866Y-030315X0630Y0217R180S2
327+3V3 U8 -15 A01X+055866Y-030630X0630Y0217R180S2
327~ARB2_5V U8 -14 A01X+055866Y-030945X0630Y0217R180S2
327~ARB1_5V U8 -13 A01X+055866Y-031260X0630Y0217R180S2
327~ARB0_5V U8 -12 A01X+055866Y-031575X0630Y0217R180S2
327CPLD_JTAG_TCK U8 -11 A01X+055197Y-032244X0630Y0217R270S2
327CPLD_JTAG_TMS U8 -10 A01X+054882Y-032244X0630Y0217R270S2
327CPLD_JTAG_TDI U8 -9 A01X+054567Y-032244X0630Y0217R270S2
327~ID0_5V U8 -8 A01X+054252Y-032244X0630Y0217R270S2
327~ID1_5V U8 -7 A01X+053937Y-032244X0630Y0217R270S2
327~ID2_5V U8 -6 A01X+053622Y-032244X0630Y0217R270S2
327~ID3_5V U8 -5 A01X+053307Y-032244X0630Y0217R270S2
327GND U8 -4 A01X+052992Y-032244X0630Y0217R270S2
327~ACK_5V U8 -3 A01X+052677Y-032244X0630Y0217R270S2
327~START_5V U8 -2 A01X+052362Y-032244X0630Y0217R270S2
327GA_TO_CPLD_CLK U8 -1 A01X+052047Y-032244X0630Y0217R270S2
327+3V3 U9 -20 A01X+058914Y-029845X0661Y0161R270S2
327NUBUS_OE U9 -19 A01X+059164Y-029845X0661Y0161R270S2
327~AD31_3V3 U9 -18 A01X+059414Y-029845X0661Y0161R270S2
327~AD26_3V3 U9 -13 A01X+060664Y-029845X0661Y0161R270S2
327~AD25_3V3 U9 -12 A01X+060914Y-029845X0661Y0161R270S2
327~AD24_3V3 U9 -11 A01X+061164Y-029845X0661Y0161R270S2
327GND U9 -10 A01X+061164Y-031966X0661Y0161R270S2
327~AD24_5V U9 -9 A01X+060914Y-031966X0661Y0161R270S2
327~AD25_5V U9 -8 A01X+060664Y-031966X0661Y0161R270S2
327~AD30_5V U9 -3 A01X+059414Y-031966X0661Y0161R270S2
327~AD31_5V U9 -2 A01X+059164Y-031966X0661Y0161R270S2
327NUBUS_AD_DIR U9 -1 A01X+058914Y-031966X0661Y0161R270S2
327~AD29_5V U9 -4 A01X+059664Y-031966X0661Y0161R270S2
327~AD28_5V U9 -5 A01X+059914Y-031966X0661Y0161R270S2
327~AD29_3V3 U9 -16 A01X+059914Y-029845X0661Y0161R270S2
327~AD30_3V3 U9 -17 A01X+059664Y-029845X0661Y0161R270S2
327~AD27_5V U9 -6 A01X+060164Y-031966X0661Y0161R270S2
327~AD26_5V U9 -7 A01X+060414Y-031966X0661Y0161R270S2
327~AD28_3V3 U9 -15 A01X+060164Y-029845X0661Y0161R270S2
327~AD27_3V3 U9 -14 A01X+060414Y-029845X0661Y0161R270S2
327~AD10_3V3 U11 -14 A01X+070847Y-029845X0661Y0161R270S2
327~AD13_3V3 U11 -15 A01X+070597Y-029845X0661Y0161R270S2
327~AD11_5V U11 -7 A01X+070847Y-031966X0661Y0161R270S2
327~AD10_5V U11 -6 A01X+070597Y-031966X0661Y0161R270S2
327~AD15_3V3 U11 -17 A01X+070097Y-029845X0661Y0161R270S2
327~AD12_3V3 U11 -16 A01X+070347Y-029845X0661Y0161R270S2
327~AD13_5V U11 -5 A01X+070347Y-031966X0661Y0161R270S2
327~AD12_5V U11 -4 A01X+070097Y-031966X0661Y0161R270S2
327NUBUS_AD_DIR U11 -1 A01X+069347Y-031966X0661Y0161R270S2
327~AD14_5V U11 -2 A01X+069597Y-031966X0661Y0161R270S2
327~AD15_5V U11 -3 A01X+069847Y-031966X0661Y0161R270S2
327~AD8_5V U11 -8 A01X+071097Y-031966X0661Y0161R270S2
327~AD9_5V U11 -9 A01X+071347Y-031966X0661Y0161R270S2
327GND U11 -10 A01X+071597Y-031966X0661Y0161R270S2
327~AD9_3V3 U11 -11 A01X+071597Y-029845X0661Y0161R270S2
327~AD8_3V3 U11 -12 A01X+071347Y-029845X0661Y0161R270S2
327~AD11_3V3 U11 -13 A01X+071097Y-029845X0661Y0161R270S2
327~AD14_3V3 U11 -18 A01X+069847Y-029845X0661Y0161R270S2
327NUBUS_OE U11 -19 A01X+069597Y-029845X0661Y0161R270S2
327+3V3 U11 -20 A01X+069347Y-029845X0661Y0161R270S2
327+3V3 U12 -20 A01X+073875Y-029845X0661Y0161R270S2
327NUBUS_OE U12 -19 A01X+074125Y-029845X0661Y0161R270S2
327~AD6_3V3 U12 -18 A01X+074375Y-029845X0661Y0161R270S2
327~AD3_3V3 U12 -13 A01X+075625Y-029845X0661Y0161R270S2
327~AD0_3V3 U12 -12 A01X+075875Y-029845X0661Y0161R270S2
327~AD1_3V3 U12 -11 A01X+076125Y-029845X0661Y0161R270S2
327GND U12 -10 A01X+076125Y-031966X0661Y0161R270S2
327~AD1_5V U12 -9 A01X+075875Y-031966X0661Y0161R270S2
327~AD0_5V U12 -8 A01X+075625Y-031966X0661Y0161R270S2
327~AD7_5V U12 -3 A01X+074375Y-031966X0661Y0161R270S2
327~AD6_5V U12 -2 A01X+074125Y-031966X0661Y0161R270S2
327NUBUS_AD_DIR U12 -1 A01X+073875Y-031966X0661Y0161R270S2
327~AD4_5V U12 -4 A01X+074625Y-031966X0661Y0161R270S2
327~AD5_5V U12 -5 A01X+074875Y-031966X0661Y0161R270S2
327~AD4_3V3 U12 -16 A01X+074875Y-029845X0661Y0161R270S2
327~AD7_3V3 U12 -17 A01X+074625Y-029845X0661Y0161R270S2
327~AD2_5V U12 -6 A01X+075125Y-031966X0661Y0161R270S2
327~AD3_5V U12 -7 A01X+075375Y-031966X0661Y0161R270S2
327~AD5_3V3 U12 -15 A01X+075125Y-029845X0661Y0161R270S2
327~AD2_3V3 U12 -14 A01X+075375Y-029845X0661Y0161R270S2
327~AD18_3V3 U10 -14 A01X+065532Y-029845X0661Y0161R270S2
327~AD21_3V3 U10 -15 A01X+065282Y-029845X0661Y0161R270S2
327~AD19_5V U10 -7 A01X+065532Y-031966X0661Y0161R270S2
327~AD18_5V U10 -6 A01X+065282Y-031966X0661Y0161R270S2
327~AD23_3V3 U10 -17 A01X+064782Y-029845X0661Y0161R270S2
327~AD20_3V3 U10 -16 A01X+065032Y-029845X0661Y0161R270S2
327~AD21_5V U10 -5 A01X+065032Y-031966X0661Y0161R270S2
327~AD20_5V U10 -4 A01X+064782Y-031966X0661Y0161R270S2
327NUBUS_AD_DIR U10 -1 A01X+064032Y-031966X0661Y0161R270S2
327~AD22_5V U10 -2 A01X+064282Y-031966X0661Y0161R270S2
327~AD23_5V U10 -3 A01X+064532Y-031966X0661Y0161R270S2
327~AD16_5V U10 -8 A01X+065782Y-031966X0661Y0161R270S2
327~AD17_5V U10 -9 A01X+066032Y-031966X0661Y0161R270S2
327GND U10 -10 A01X+066282Y-031966X0661Y0161R270S2
327~AD17_3V3 U10 -11 A01X+066282Y-029845X0661Y0161R270S2
327~AD16_3V3 U10 -12 A01X+066032Y-029845X0661Y0161R270S2
327~AD19_3V3 U10 -13 A01X+065782Y-029845X0661Y0161R270S2
327~AD22_3V3 U10 -18 A01X+064532Y-029845X0661Y0161R270S2
327NUBUS_OE U10 -19 A01X+064282Y-029845X0661Y0161R270S2
327+3V3 U10 -20 A01X+064032Y-029845X0661Y0161R270S2
327HDMI_CEC_A U5 -1 A01X+097669Y-021801X0618Y0161R000S2
327HDMI_SCL_A U5 -2 A01X+097669Y-022057X0618Y0161R000S2
327HDMI_SDA_A U5 -3 A01X+097669Y-022313X0618Y0161R000S2
327HDMI_HPD_A U5 -4 A01X+097669Y-022569X0618Y0161R000S2
327+3V3 U5 -5 A01X+097669Y-022825X0618Y0161R000S2
327GND U5 -6 A01X+097669Y-023081X0618Y0161R000S2
327/HDMI/CEC_B U5 -7 A01X+097669Y-023337X0618Y0161R000S2
327/HDMI/SCL_B U5 -8 A01X+097669Y-023593X0618Y0161R000S2
327/HDMI/SDA_B U5 -9 A01X+097669Y-023848X0618Y0161R000S2
327/HDMI/HPD_B U5 -10 A01X+097669Y-024104X0618Y0161R000S2
327+5V U5 -11 A01X+097669Y-024360X0618Y0161R000S2
327+3V3 U5 -12 A01X+097669Y-024616X0618Y0161R000S2
327HDMI_5V U5 -13 A01X+099929Y-024616X0618Y0161R000S2
327GND U5 -14 A01X+099929Y-024360X0618Y0161R000S2
327HDMI_CLK- U5 -15 A01X+099929Y-024104X0618Y0161R000S2
327HDMI_CLK+ U5 -16 A01X+099929Y-023848X0618Y0161R000S2
327HDMI_D0- U5 -17 A01X+099929Y-023593X0618Y0161R000S2
327HDMI_D0+ U5 -18 A01X+099929Y-023337X0618Y0161R000S2
327GND U5 -19 A01X+099929Y-023081X0618Y0161R000S2
327HDMI_D1- U5 -20 A01X+099929Y-022825X0618Y0161R000S2
327HDMI_D1+ U5 -21 A01X+099929Y-022569X0618Y0161R000S2
327HDMI_D2- U5 -22 A01X+099929Y-022313X0618Y0161R000S2
327HDMI_D2+ U5 -23 A01X+099929Y-022057X0618Y0161R000S2
327+3V3 U5 -24 A01X+099929Y-021801X0618Y0161R000S2
327NET-(D16-PAD2) D16 -2 A01X+061590Y-007382X0384Y0551R000S2
327ARB D16 -1 A01X+060851Y-007382X0384Y0551R000S2
327GRANT D17 -1 A01X+060851Y-008661X0384Y0551R000S2
327NET-(D17-PAD2) D17 -2 A01X+061590Y-008661X0384Y0551R000S2
327NET-(D16-PAD2) R36 -2 A01X+062485Y-007382X0344Y0374R180S2
327+3V3 R36 -1 A01X+063105Y-007382X0344Y0374R180S2
327+3V3 R37 -1 A01X+063105Y-008661X0344Y0374R180S2
327NET-(D17-PAD2) R37 -2 A01X+062485Y-008661X0344Y0374R180S2
327NET-(D15-PAD2) D15 -2 A01X+086097Y-022638X0384Y0551R000S2
327~AD0_3V3 D15 -1 A01X+085359Y-022638X0384Y0551R000S2
327~AD1_3V3 D14 -1 A01X+085359Y-023917X0384Y0551R000S2
327NET-(D14-PAD2) D14 -2 A01X+086097Y-023917X0384Y0551R000S2
327NET-(D14-PAD2) R34 -2 A01X+086993Y-023917X0344Y0374R180S2
327+3V3 R34 -1 A01X+087613Y-023917X0344Y0374R180S2
327+3V3 R35 -1 A01X+087613Y-022638X0344Y0374R180S2
327NET-(D15-PAD2) R35 -2 A01X+086993Y-022638X0344Y0374R180S2
327~START_3V3 D13 -1 A01X+050015Y-030630X0384Y0551R180S2
327NET-(D13-PAD2) D13 -2 A01X+049277Y-030630X0384Y0551R180S2
327+3V3 R33 -1 A01X+049252Y-029178X0344Y0374R090S2
327NET-(D13-PAD2) R33 -2 A01X+049252Y-029798X0344Y0374R090S2
327~TM0_3V3 D11 -1 A01X+048227Y-021232X0384Y0551R180S2
327NET-(D11-PAD2) D11 -2 A01X+047489Y-021232X0384Y0551R180S2
327NET-(D10-PAD2) R30 -2 A01X+046692Y-022315X0344Y0374R000S2
327+3V3 R30 -1 A01X+046072Y-022315X0344Y0374R000S2
327+3V3 R31 -1 A01X+046072Y-021232X0344Y0374R000S2
327NET-(D11-PAD2) R31 -2 A01X+046692Y-021232X0344Y0374R000S2
327NET-(D10-PAD2) D10 -2 A01X+047489Y-022315X0384Y0551R180S2
327~TM1_3V3 D10 -1 A01X+048227Y-022315X0384Y0551R180S2
327~ACK_3V3 D12 -1 A01X+048586Y-023679X0384Y0551R180S2
327NET-(D12-PAD2) D12 -2 A01X+047848Y-023679X0384Y0551R180S2
327+3V3 R32 -1 A01X+046411Y-023687X0344Y0374R000S2
327NET-(D12-PAD2) R32 -2 A01X+047031Y-023687X0344Y0374R000S2
327+3V3 R29 -1 A01X+077854Y-032594X0344Y0374R270S2
327NET-(D9-PAD2) R29 -2 A01X+077854Y-031973X0344Y0374R270S2
327NUBUS_OE D9 -1 A01X+077854Y-030438X0384Y0551R090S2
327NET-(D9-PAD2) D9 -2 A01X+077854Y-031176X0384Y0551R090S2
327NET-(D1-PAD2) D1 -2 A01X+048175Y-018495X0384Y0551R180S2
327~ID0_3V3 D1 -1 A01X+048913Y-018495X0384Y0551R180S2
327~ID3_3V3 D8 -1 A01X+048913Y-014991X0384Y0551R180S2
327NET-(D8-PAD2) D8 -2 A01X+048175Y-014991X0384Y0551R180S2
327NET-(D7-PAD2) D7 -2 A01X+048175Y-016159X0384Y0551R180S2
327~ID2_3V3 D7 -1 A01X+048913Y-016159X0384Y0551R180S2
327~ID1_3V3 D6 -1 A01X+048913Y-017327X0384Y0551R180S2
327NET-(D6-PAD2) D6 -2 A01X+048175Y-017327X0384Y0551R180S2
327NET-(D1-PAD2) R21 -2 A01X+047339Y-018495X0344Y0374R000S2
327+3V3 R21 -1 A01X+046719Y-018495X0344Y0374R000S2
327+3V3 R28 -1 A01X+046719Y-014991X0344Y0374R000S2
327NET-(D8-PAD2) R28 -2 A01X+047339Y-014991X0344Y0374R000S2
327NET-(D7-PAD2) R27 -2 A01X+047339Y-016159X0344Y0374R000S2
327+3V3 R27 -1 A01X+046719Y-016159X0344Y0374R000S2
327+3V3 R22 -1 A01X+046719Y-017327X0344Y0374R000S2
327NET-(D6-PAD2) R22 -2 A01X+047339Y-017327X0344Y0374R000S2
327/VGA/VGA_B R19 -2 A01X+099213Y-015241X0344Y0374R270S2
327GND R19 -1 A01X+099213Y-015861X0344Y0374R270S2
327+12V C33 -1 A01X+047205Y-033568X0384Y0551R090S2
327GND C33 -2 A01X+047205Y-034306X0384Y0551R090S2
317GND J10 -1 D0472PA00X+045354Y-034567X0685Y0866R270S0
317+12V J10 -2 D0472PA00X+045354Y-033567X0685Y0866R270S0
317GND J10 -3 D0472PA00X+045354Y-032567X0685Y0866R270S0
327SHIELD J6 -6 A01X+107046Y-030736X0591Y0748R270S2
317SHIELD J6 -6 D0335PA00X+105983Y-032114X0571Y0000R270S0
327/USB/USB_D- J6 -2 A01X+105983Y-031386X0157Y0531R270S2
@ -168,135 +394,6 @@ P DIM N
327/VGA/VGA_R R1 -2 A01X+099016Y-010153X0344Y0374R090S2
327+3V3 C32 -1 A01X+096949Y-009857X0344Y0374R270S2
327GND C32 -2 A01X+096949Y-009237X0344Y0374R270S2
327~CLK_5V U8 -44 A01X+051378Y-031575X0630Y0217R180S2
327~RQST_5V U8 -43 A01X+051378Y-031260X0630Y0217R180S2
327~ACK_3V3 U8 -42 A01X+051378Y-030945X0630Y0217R180S2
327~START_3V3 U8 -41 A01X+051378Y-030630X0630Y0217R180S2
327_CPLD_SIGNAL_2 U8 -40 A01X+051378Y-030315X0630Y0217R180S2
327TO_CPLD_SIGNAL U8 -39 A01X+051378Y-030000X0630Y0217R180S2
327~TM1_5V U8 -38 A01X+051378Y-029685X0630Y0217R180S2
327~TM0_5V U8 -37 A01X+051378Y-029370X0630Y0217R180S2
327~RQST_3V3 U8 -36 A01X+051378Y-029055X0630Y0217R180S2
327+3V3 U8 -35 A01X+051378Y-028740X0630Y0217R180S2
327~TM1_3V3 U8 -34 A01X+051378Y-028425X0630Y0217R180S2
327~TM0_3V3 U8 -33 A01X+052047Y-027756X0630Y0217R270S2
327~ID3_3V3 U8 -32 A01X+052362Y-027756X0630Y0217R270S2
327~ID2_3V3 U8 -31 A01X+052677Y-027756X0630Y0217R270S2
327~ID1_3V3 U8 -30 A01X+052992Y-027756X0630Y0217R270S2
327~ID0_3V3 U8 -29 A01X+053307Y-027756X0630Y0217R270S2
327ARB U8 -28 A01X+053622Y-027756X0630Y0217R270S2
327GRANT U8 -27 A01X+053937Y-027756X0630Y0217R270S2
327+3V3 U8 -26 A01X+054252Y-027756X0630Y0217R270S2
327GND U8 -25 A01X+054567Y-027756X0630Y0217R270S2
327CPLD_JTAG_TDO U8 -24 A01X+054882Y-027756X0630Y0217R270S2
327TMOEN U8 -23 A01X+055197Y-027756X0630Y0217R270S2
327BUS_MASTER_DIR U8 -22 A01X+055866Y-028425X0630Y0217R180S2
327~RESET_3V3 U8 -21 A01X+055866Y-028740X0630Y0217R180S2
327~CLK_3V3 U8 -20 A01X+055866Y-029055X0630Y0217R180S2
327NUBUS_OE U8 -19 A01X+055866Y-029370X0630Y0217R180S2
327~RESET_5V U8 -18 A01X+055866Y-029685X0630Y0217R180S2
327GND U8 -17 A01X+055866Y-030000X0630Y0217R180S2
327~ARB3_5V U8 -16 A01X+055866Y-030315X0630Y0217R180S2
327+3V3 U8 -15 A01X+055866Y-030630X0630Y0217R180S2
327~ARB2_5V U8 -14 A01X+055866Y-030945X0630Y0217R180S2
327~ARB1_5V U8 -13 A01X+055866Y-031260X0630Y0217R180S2
327~ARB0_5V U8 -12 A01X+055866Y-031575X0630Y0217R180S2
327CPLD_JTAG_TCK U8 -11 A01X+055197Y-032244X0630Y0217R270S2
327CPLD_JTAG_TMS U8 -10 A01X+054882Y-032244X0630Y0217R270S2
327CPLD_JTAG_TDI U8 -9 A01X+054567Y-032244X0630Y0217R270S2
327~ID0_5V U8 -8 A01X+054252Y-032244X0630Y0217R270S2
327~ID1_5V U8 -7 A01X+053937Y-032244X0630Y0217R270S2
327~ID2_5V U8 -6 A01X+053622Y-032244X0630Y0217R270S2
327~ID3_5V U8 -5 A01X+053307Y-032244X0630Y0217R270S2
327GND U8 -4 A01X+052992Y-032244X0630Y0217R270S2
327~ACK_5V U8 -3 A01X+052677Y-032244X0630Y0217R270S2
327~START_5V U8 -2 A01X+052362Y-032244X0630Y0217R270S2
327GA_TO_CPLD_CLK U8 -1 A01X+052047Y-032244X0630Y0217R270S2
327+3V3 U11 -20 A01X+069347Y-029861X0630Y0161R270S2
327NUBUS_OE U11 -19 A01X+069597Y-029861X0630Y0161R270S2
327~AD14_3V3 U11 -18 A01X+069847Y-029861X0630Y0161R270S2
327~AD11_3V3 U11 -13 A01X+071097Y-029861X0630Y0161R270S2
327~AD8_3V3 U11 -12 A01X+071347Y-029861X0630Y0161R270S2
327~AD9_3V3 U11 -11 A01X+071597Y-029861X0630Y0161R270S2
327GND U11 -10 A01X+071597Y-031951X0630Y0161R270S2
327~AD9_5V U11 -9 A01X+071347Y-031951X0630Y0161R270S2
327~AD8_5V U11 -8 A01X+071097Y-031951X0630Y0161R270S2
327~AD15_5V U11 -3 A01X+069847Y-031951X0630Y0161R270S2
327~AD14_5V U11 -2 A01X+069597Y-031951X0630Y0161R270S2
327NUBUS_AD_DIR U11 -1 A01X+069347Y-031951X0630Y0161R270S2
327~AD12_5V U11 -4 A01X+070097Y-031951X0630Y0161R270S2
327~AD13_5V U11 -5 A01X+070347Y-031951X0630Y0161R270S2
327~AD12_3V3 U11 -16 A01X+070347Y-029861X0630Y0161R270S2
327~AD15_3V3 U11 -17 A01X+070097Y-029861X0630Y0161R270S2
327~AD10_5V U11 -6 A01X+070597Y-031951X0630Y0161R270S2
327~AD11_5V U11 -7 A01X+070847Y-031951X0630Y0161R270S2
327~AD13_3V3 U11 -15 A01X+070597Y-029861X0630Y0161R270S2
327~AD10_3V3 U11 -14 A01X+070847Y-029861X0630Y0161R270S2
327~AD18_3V3 U10 -14 A01X+065532Y-029861X0630Y0161R270S2
327~AD21_3V3 U10 -15 A01X+065282Y-029861X0630Y0161R270S2
327~AD19_5V U10 -7 A01X+065532Y-031951X0630Y0161R270S2
327~AD18_5V U10 -6 A01X+065282Y-031951X0630Y0161R270S2
327~AD23_3V3 U10 -17 A01X+064782Y-029861X0630Y0161R270S2
327~AD20_3V3 U10 -16 A01X+065032Y-029861X0630Y0161R270S2
327~AD21_5V U10 -5 A01X+065032Y-031951X0630Y0161R270S2
327~AD20_5V U10 -4 A01X+064782Y-031951X0630Y0161R270S2
327NUBUS_AD_DIR U10 -1 A01X+064032Y-031951X0630Y0161R270S2
327~AD22_5V U10 -2 A01X+064282Y-031951X0630Y0161R270S2
327~AD23_5V U10 -3 A01X+064532Y-031951X0630Y0161R270S2
327~AD16_5V U10 -8 A01X+065782Y-031951X0630Y0161R270S2
327~AD17_5V U10 -9 A01X+066032Y-031951X0630Y0161R270S2
327GND U10 -10 A01X+066282Y-031951X0630Y0161R270S2
327~AD17_3V3 U10 -11 A01X+066282Y-029861X0630Y0161R270S2
327~AD16_3V3 U10 -12 A01X+066032Y-029861X0630Y0161R270S2
327~AD19_3V3 U10 -13 A01X+065782Y-029861X0630Y0161R270S2
327~AD22_3V3 U10 -18 A01X+064532Y-029861X0630Y0161R270S2
327NUBUS_OE U10 -19 A01X+064282Y-029861X0630Y0161R270S2
327+3V3 U10 -20 A01X+064032Y-029861X0630Y0161R270S2
327+3V3 U9 -20 A01X+058914Y-029861X0630Y0161R270S2
327NUBUS_OE U9 -19 A01X+059164Y-029861X0630Y0161R270S2
327~AD31_3V3 U9 -18 A01X+059414Y-029861X0630Y0161R270S2
327~AD26_3V3 U9 -13 A01X+060664Y-029861X0630Y0161R270S2
327~AD25_3V3 U9 -12 A01X+060914Y-029861X0630Y0161R270S2
327~AD24_3V3 U9 -11 A01X+061164Y-029861X0630Y0161R270S2
327GND U9 -10 A01X+061164Y-031951X0630Y0161R270S2
327~AD24_5V U9 -9 A01X+060914Y-031951X0630Y0161R270S2
327~AD25_5V U9 -8 A01X+060664Y-031951X0630Y0161R270S2
327~AD30_5V U9 -3 A01X+059414Y-031951X0630Y0161R270S2
327~AD31_5V U9 -2 A01X+059164Y-031951X0630Y0161R270S2
327NUBUS_AD_DIR U9 -1 A01X+058914Y-031951X0630Y0161R270S2
327~AD29_5V U9 -4 A01X+059664Y-031951X0630Y0161R270S2
327~AD28_5V U9 -5 A01X+059914Y-031951X0630Y0161R270S2
327~AD29_3V3 U9 -16 A01X+059914Y-029861X0630Y0161R270S2
327~AD30_3V3 U9 -17 A01X+059664Y-029861X0630Y0161R270S2
327~AD27_5V U9 -6 A01X+060164Y-031951X0630Y0161R270S2
327~AD26_5V U9 -7 A01X+060414Y-031951X0630Y0161R270S2
327~AD28_3V3 U9 -15 A01X+060164Y-029861X0630Y0161R270S2
327~AD27_3V3 U9 -14 A01X+060414Y-029861X0630Y0161R270S2
327~AD2_3V3 U12 -14 A01X+075375Y-029861X0630Y0161R270S2
327~AD5_3V3 U12 -15 A01X+075125Y-029861X0630Y0161R270S2
327~AD3_5V U12 -7 A01X+075375Y-031951X0630Y0161R270S2
327~AD2_5V U12 -6 A01X+075125Y-031951X0630Y0161R270S2
327~AD7_3V3 U12 -17 A01X+074625Y-029861X0630Y0161R270S2
327~AD4_3V3 U12 -16 A01X+074875Y-029861X0630Y0161R270S2
327~AD5_5V U12 -5 A01X+074875Y-031951X0630Y0161R270S2
327~AD4_5V U12 -4 A01X+074625Y-031951X0630Y0161R270S2
327NUBUS_AD_DIR U12 -1 A01X+073875Y-031951X0630Y0161R270S2
327~AD6_5V U12 -2 A01X+074125Y-031951X0630Y0161R270S2
327~AD7_5V U12 -3 A01X+074375Y-031951X0630Y0161R270S2
327~AD0_5V U12 -8 A01X+075625Y-031951X0630Y0161R270S2
327~AD1_5V U12 -9 A01X+075875Y-031951X0630Y0161R270S2
327GND U12 -10 A01X+076125Y-031951X0630Y0161R270S2
327~AD1_3V3 U12 -11 A01X+076125Y-029861X0630Y0161R270S2
327~AD0_3V3 U12 -12 A01X+075875Y-029861X0630Y0161R270S2
327~AD3_3V3 U12 -13 A01X+075625Y-029861X0630Y0161R270S2
327~AD6_3V3 U12 -18 A01X+074375Y-029861X0630Y0161R270S2
327NUBUS_OE U12 -19 A01X+074125Y-029861X0630Y0161R270S2
327+3V3 U12 -20 A01X+073875Y-029861X0630Y0161R270S2
327N/C U1 -1 A01X+049272Y-027126X0417Y0256R090S2
327~NMRQ_3V3 U1 -2 A01X+048898Y-027126X0417Y0256R090S2
327GND U1 -3 A01X+048524Y-027126X0417Y0256R090S2
327~NMRQ_5V U1 -4 A01X+048524Y-027992X0417Y0256R090S2
327+3V3 U1 -5 A01X+049272Y-027992X0417Y0256R090S2
327+3V3 C31 -1 A01X+080064Y-032559X0384Y0551R000S2
327GND C31 -2 A01X+080802Y-032559X0384Y0551R000S2
327GND C24 -2 A01X+064173Y-028391X0344Y0374R270S2
@ -331,10 +428,6 @@ P DIM N
327GND C25 -2 A01X+069488Y-028391X0344Y0374R270S2
327GND C2 -2 A01X+074016Y-028391X0344Y0374R270S2
327+3V3 C2 -1 A01X+074016Y-029011X0344Y0374R270S2
327+3V3 C26 -1 A01X+049218Y-028780X0344Y0374R000S2
327GND C26 -2 A01X+049838Y-028780X0344Y0374R000S2
327~NMRQ_3V3 R17 -2 A01X+048903Y-026339X0344Y0374R180S2
327+3V3 R17 -1 A01X+049523Y-026339X0344Y0374R180S2
327GND C22 -2 A01X+055349Y-026654X0344Y0374R000S2
327+3V3 C22 -1 A01X+054729Y-026654X0344Y0374R000S2
327+3V3 C23 -1 A01X+059016Y-029011X0344Y0374R270S2
@ -354,8 +447,8 @@ P DIM N
327+5V R26 -1 A01X+052696Y-034171X0344Y0374R270S2
327+5V R23 -1 A01X+054822Y-034171X0344Y0374R270S2
327~ID0_5V R23 -2 A01X+054822Y-033551X0344Y0374R270S2
327+3V3 C21 -1 A01X+091268Y-016755X0344Y0374R270S2
327GND C21 -2 A01X+091268Y-016135X0344Y0374R270S2
327+3V3 C21 -1 A01X+099929Y-021184X0344Y0374R270S2
327GND C21 -2 A01X+099929Y-020564X0344Y0374R270S2
317ET-(JCD1-PAD1) JCD1 -1 D0449PA00X+051181Y-011811X0669Y0669R270S0
317ET-(JCD1-PAD2) JCD1 -2 D0449PA00X+051181Y-010811X0669Y0669R270S0
317GND JCD1 -3 D0449PA00X+052181Y-011811X0669Y0669R270S0
@ -485,12 +578,12 @@ P DIM N
327NET-(D5-PAD2) R10 -2 A01X+059039Y-007123X0344Y0374R270S2
327GND C15 -2 A01X+103161Y-026519X0344Y0374R090S2
327HDMI_5V C15 -1 A01X+103161Y-025899X0344Y0374R090S2
327GND C14 -2 A01X+087539Y-020550X0344Y0374R090S2
327+5V C14 -1 A01X+087539Y-019930X0344Y0374R090S2
327+3V3 C13 -1 A01X+092240Y-017377X0344Y0374R270S2
327GND C13 -2 A01X+092240Y-016757X0344Y0374R270S2
327+3V3 C12 -1 A01X+093889Y-016756X0384Y0551R180S2
327GND C12 -2 A01X+093151Y-016756X0384Y0551R180S2
327GND C14 -2 A01X+096402Y-023741X0344Y0374R270S2
327+5V C14 -1 A01X+096402Y-024361X0344Y0374R270S2
327+3V3 C13 -1 A01X+100902Y-021806X0344Y0374R270S2
327GND C13 -2 A01X+100902Y-021186X0344Y0374R270S2
327+3V3 C12 -1 A01X+102550Y-021185X0384Y0551R180S2
327GND C12 -2 A01X+101812Y-021185X0384Y0551R180S2
317SHIELD J5 -SH D0512PA00X+106614Y-027618X0787Y0000R270S0
317SHIELD J5 -SH D0512PA00X+106614Y-021437X0787Y0000R270S0
317SHIELD J5 -SH D0512PA00X+104665Y-027382X0787Y0000R270S0
@ -514,30 +607,6 @@ P DIM N
327HDMI_D2- J5 -3 A01X+104311Y-023051X0118Y0748R270S2
327GND J5 -2 A01X+104311Y-022854X0118Y0748R270S2
327HDMI_D2+ J5 -1 A01X+104311Y-022657X0118Y0748R270S2
327HDMI_CEC_A U5 -1 A01X+089008Y-017372X0618Y0161R000S2
327HDMI_SCL_A U5 -2 A01X+089008Y-017628X0618Y0161R000S2
327HDMI_SDA_A U5 -3 A01X+089008Y-017884X0618Y0161R000S2
327HDMI_HPD_A U5 -4 A01X+089008Y-018140X0618Y0161R000S2
327+3V3 U5 -5 A01X+089008Y-018396X0618Y0161R000S2
327GND U5 -6 A01X+089008Y-018652X0618Y0161R000S2
327/HDMI/CEC_B U5 -7 A01X+089008Y-018907X0618Y0161R000S2
327/HDMI/SCL_B U5 -8 A01X+089008Y-019163X0618Y0161R000S2
327/HDMI/SDA_B U5 -9 A01X+089008Y-019419X0618Y0161R000S2
327/HDMI/HPD_B U5 -10 A01X+089008Y-019675X0618Y0161R000S2
327+5V U5 -11 A01X+089008Y-019931X0618Y0161R000S2
327+3V3 U5 -12 A01X+089008Y-020187X0618Y0161R000S2
327HDMI_5V U5 -13 A01X+091268Y-020187X0618Y0161R000S2
327GND U5 -14 A01X+091268Y-019931X0618Y0161R000S2
327HDMI_CLK- U5 -15 A01X+091268Y-019675X0618Y0161R000S2
327HDMI_CLK+ U5 -16 A01X+091268Y-019419X0618Y0161R000S2
327HDMI_D0- U5 -17 A01X+091268Y-019163X0618Y0161R000S2
327HDMI_D0+ U5 -18 A01X+091268Y-018907X0618Y0161R000S2
327GND U5 -19 A01X+091268Y-018652X0618Y0161R000S2
327HDMI_D1- U5 -20 A01X+091268Y-018396X0618Y0161R000S2
327HDMI_D1+ U5 -21 A01X+091268Y-018140X0618Y0161R000S2
327HDMI_D2- U5 -22 A01X+091268Y-017884X0618Y0161R000S2
327HDMI_D2+ U5 -23 A01X+091268Y-017628X0618Y0161R000S2
327+3V3 U5 -24 A01X+091268Y-017372X0618Y0161R000S2
317NET-(J4-PAD15) J4 -15 D0469PA00X+104150Y-015142X0591Y0000R270S0
317/VGA/VGA_VS J4 -14 D0469PA00X+104150Y-014240X0591Y0000R270S0
317/VGA/VGA_HS J4 -13 D0469PA00X+104150Y-013337X0591Y0000R270S0
@ -733,7 +802,7 @@ P DIM N
317~AD31_3V3 JAB1 -19 D0449PA00X+060181Y-024311X0669Y0669R270S0
317NUBUS_AD_DIR JAB1 -18 D0449PA00X+059181Y-023311X0669Y0669R270S0
317~RESET_3V3 JAB1 -17 D0449PA00X+059181Y-024311X0669Y0669R270S0
317_CPLD_SIGNAL_2 JAB1 -16 D0449PA00X+058181Y-023311X0669Y0669R270S0
317T-(JAB1-PAD16) JAB1 -16 D0449PA00X+058181Y-023311X0669Y0669R270S0
317BUS_MASTER_DIR JAB1 -15 D0449PA00X+058181Y-024311X0669Y0669R270S0
317GA_TO_CPLD_CLK JAB1 -14 D0449PA00X+057181Y-023311X0669Y0669R270S0
317TO_CPLD_SIGNAL JAB1 -13 D0449PA00X+057181Y-024311X0669Y0669R270S0
@ -743,7 +812,7 @@ P DIM N
317~START_3V3 JAB1 -9 D0449PA00X+055181Y-024311X0669Y0669R270S0
317~TM1_3V3 JAB1 -8 D0449PA00X+054181Y-023311X0669Y0669R270S0
317~TM0_3V3 JAB1 -7 D0449PA00X+054181Y-024311X0669Y0669R270S0
317~NMRQ_3V3 JAB1 -6 D0449PA00X+053181Y-023311X0669Y0669R270S0
317NMRQ JAB1 -6 D0449PA00X+053181Y-023311X0669Y0669R270S0
317~RQST_3V3 JAB1 -5 D0449PA00X+053181Y-024311X0669Y0669R270S0
317GND JAB1 -4 D0449PA00X+052181Y-023311X0669Y0669R270S0
317GND JAB1 -3 D0449PA00X+052181Y-024311X0669Y0669R270S0

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

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
Info: Front side (top side) place file: “/home/dolbeau/MAC/NuBusFPGA/nubus-to-ztex/nubus-to-ztex-top.pos”.
Info: Component count: 71.
Info: Component count: 101.
Info: Back side (bottom side) place file: “/home/dolbeau/MAC/NuBusFPGA/nubus-to-ztex/nubus-to-ztex-bottom.pos”.
Info: Component count: 0.
Info: Full component count: 71
Info: Full component count: 101
Component Placement File generation OK.

Binary file not shown.

Binary file not shown.

View File

@ -4,7 +4,7 @@ EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 6 7
Sheet 5 7
Title ""
Date ""
Rev ""
@ -24,7 +24,8 @@ F 2 "Connector_USB:USB_Micro-B_Molex-105017-0001" H 5150 2750 50 0001 C CNN
F 3 "https://www.molex.com/pdm_docs/sd/1050170001_sd.pdf" H 5150 2750 50 0001 C CNN
F 4 "105017-0001" H 5000 2800 50 0001 C CNN "MPN"
F 5 "Molex" H 5000 2800 50 0001 C CNN "Manufacturer"
F 6 "https://www.mouser.fr/ProductDetail/Molex/105017-0001?qs=hlXxxvYE36k7QcsR97GUKA%3D%3D" H 5000 2800 50 0001 C CNN "URL"
F 6 "https://lcsc.com/product-detail/USB-Connectors_MOLEX-1050170001_C136000.html" H 5000 2800 50 0001 C CNN "URL"
F 7 "https://www.mouser.fr/ProductDetail/Molex/105017-0001?qs=hlXxxvYE36k7QcsR97GUKA%3D%3D" H 5000 2800 50 0001 C CNN "URL-ALT"
1 5000 2800
-1 0 0 -1
$EndComp
@ -151,7 +152,8 @@ F 1 "SN65220" V 4205 2937 50 0000 L CNN
F 2 "Package_TO_SOT_SMD:SOT-23-6" H 4600 2700 50 0001 L CNN
F 3 "http://www.ti.com/lit/ds/symlink/sn65220.pdf" H 4250 3000 50 0001 C CNN
F 4 "SN65220DBVR" V 4250 2850 50 0001 C CNN "MPN"
F 5 "https://www2.mouser.com/ProductDetail/Texas-Instruments/SN65220DBVR?qs=5nGYs9Do7G0gEpYxbYqyeA%3D%3D" V 4250 2850 50 0001 C CNN "URL"
F 5 "https://www2.mouser.com/ProductDetail/Texas-Instruments/SN65220DBVR?qs=5nGYs9Do7G0gEpYxbYqyeA%3D%3D" V 4250 2850 50 0001 C CNN "URL-ALT"
F 6 "https://lcsc.com/product-detail/TVS_Texas-Instruments-SN65220DBVR_C21787.html" V 4250 2850 50 0001 C CNN "URL"
1 4250 2850
0 1 -1 0
$EndComp

View File

@ -4,7 +4,7 @@ EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 4 7
Sheet 7 7
Title ""
Date ""
Rev ""
@ -242,10 +242,12 @@ F 0 "J4" H 7800 4217 50 0000 C CNN
F 1 "DB15_Female_HighDensity_MountingHoles" H 7800 4126 50 0000 C CNN
F 2 "For_SeeedStudio:L77HDE15SD1CH4RHNVGA" H 6850 3750 50 0001 C CNN
F 3 " ~" H 6850 3750 50 0001 C CNN
F 4 "L77HDE15SD1CH4F" H 7800 3350 50 0001 C CNN "MPN"
F 5 "https://www.mouser.fr/ProductDetail/Amphenol/L77HDE15SD1CH4F?qs=mq7kV%2Fq8lk6plQnZOUKCHg%3D%3D" H 7800 3350 50 0001 C CNN "URL"
F 4 "L77HDE15SD1CH4F" H 7800 3350 50 0001 C CNN "MPN-STD"
F 5 "https://www.mouser.fr/ProductDetail/Amphenol/L77HDE15SD1CH4F?qs=mq7kV%2Fq8lk6plQnZOUKCHg%3D%3D" H 7800 3350 50 0001 C CNN "URL-STD"
F 6 "https://www.mouser.com/datasheet/2/18/1/HD_high_density-1501066.pdf" H 7800 3350 50 0001 C CNN "Amphenol Catalog"
F 7 "4F, 4R, 3R, 3F: variations on the screw bits" H 7800 3350 50 0001 C CNN "Notes"
F 8 "L77HDE15SD1CH4FVGA" H 7800 3350 50 0001 C CNN "MPN"
F 9 "https://www.mouser.fr/ProductDetail/Amphenol-Commercial-Products/L77HDE15SD1CH4FVGA?qs=ToP8pWlZ0bNtQSp9f8k5Rw%3D%3D" H 7800 3350 50 0001 C CNN "URL"
1 7800 3350
1 0 0 -1
$EndComp
@ -585,7 +587,7 @@ F 1 "ADV7125-lqfp48" H 4450 6487 50 0000 C CNN
F 2 "For_SeeedStudio:ADV7125KSTZ140" H 4450 3850 50 0001 C CNN
F 3 "https://www.mouser.fr/datasheet/2/609/ADV7125-1503638.pdf" H 4450 3850 50 0001 C CNN
F 4 "ADV7125JSTZ240" H 4450 3850 50 0001 C CNN "MPN"
F 5 "https://lcsc.com/product-detail/Digital-To-Analog-Converters-DACs_Analog-Devices-ADV7125KSTZ50_C514374.html" H 4450 3850 50 0001 C CNN "URL"
F 5 "https://lcsc.com/product-detail/Digital-To-Analog-Converters-DACs_Analog-Devices-ADV7125JSTZ240_C514373.html" H 4450 3850 50 0001 C CNN "URL"
1 4450 3850
1 0 0 -1
$EndComp
@ -680,8 +682,10 @@ F 0 "U2" H 5950 2725 50 0000 C CNN
F 1 "AD1580" H 5950 2634 50 0000 C CNN
F 2 "Package_TO_SOT_SMD:SOT-23" H 5950 2500 50 0001 C CNN
F 3 "" H 5950 2500 50 0001 C CNN
F 4 "AD1580ARTZ" H 5950 2500 50 0001 C CNN "MPN"
F 5 "https://www.mouser.fr/ProductDetail/Analog-Devices/AD1580ARTZ-REEL7?qs=NmRFExCfTkENN3U3%252BacLbA%3D%3D" H 5950 2500 50 0001 C CNN "URL"
F 4 "AD1580ARTZ" H 5950 2500 50 0001 C CNN "MPN-STD"
F 5 "https://www.mouser.fr/ProductDetail/Analog-Devices/AD1580ARTZ-REEL7?qs=NmRFExCfTkENN3U3%252BacLbA%3D%3D" H 5950 2500 50 0001 C CNN "URL-STD"
F 6 "AD1580BRTZ" H 5950 2500 50 0001 C CNN "MPN"
F 7 "https://www.mouser.fr/ProductDetail/Analog-Devices/AD1580BRTZ-REEL7?qs=NmRFExCfTkFZVi9%2F1ZfkXg%3D%3D" H 5950 2500 50 0001 C CNN "URL"
1 5950 2500
1 0 0 -1
$EndComp