0hmX/simplified-am62l-computer

This code defines components and scripts for physically representing and routing high-speed DDR memory signals, power lines, and ground planes on an 8-layer PCB with detailed pin assignments, copper pours, and precise via and trace layouts based on TI EVM reference data.

Version
1.0.16
License
unset
Stars
0

imports/SN74AXC1T45DBVR/SN74AXC1T45DBVR.tsx

import objPath from "./SN74AXC1T45DBVR.obj"
import type { ChipProps } from "@tscircuit/props"

const pinLabels = {
  pin1: ["VCCA"],
  pin2: ["GND"],
  pin3: ["A"],
  pin4: ["B"],
  pin5: ["DIR"],
  pin6: ["VCCB"]
} as const

export const SN74AXC1T45DBVR = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C2677376"
  ]
}}
      manufacturerPartNumber="SN74AXC1T45DBVR"
      footprint={<footprint>
        <smtpad portHints={["pin6"]} pcbX="-0.94996mm" pcbY="1.1999976mm" width="0.5500116mm" height="1.1999976mm" shape="rect" />
<smtpad portHints={["pin4"]} pcbX="0.94996mm" pcbY="1.1999976mm" width="0.5500116mm" height="1.1999976mm" shape="rect" />
<smtpad portHints={["pin3"]} pcbX="0.94996mm" pcbY="-1.1999976mm" width="0.5500116mm" height="1.1999976mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="0mm" pcbY="-1.1999976mm" width="0.5500116mm" height="1.1999976mm" shape="rect" />
<smtpad portHints={["pin1"]} pcbX="-0.94996mm" pcbY="-1.1999976mm" width="0.5500116mm" height="1.1999976mm" shape="rect" />
<smtpad portHints={["pin5"]} pcbX="0mm" pcbY="1.1999976mm" width="0.5500116mm" height="1.1999976mm" shape="rect" />
<silkscreenpath route={[{"x":-1.4999969999999934,"y":-0.7999984000000069},{"x":-1.4999969999999934,"y":0.7999984000000069}]} />
<silkscreenpath route={[{"x":1.4999970000000076,"y":0.7999984000000069},{"x":1.4999970000000076,"y":-0.7999984000000069}]} />
<silkscreenpath route={[{"x":-0.8481060000000014,"y":-2.1249639999999914},{"x":-0.8524334200612742,"y":-2.1578340187280105},{"x":-0.8651207737193829,"y":-2.188463999999996},{"x":-0.8853034387893075,"y":-2.2147665612106806},{"x":-0.9116059999999919,"y":-2.2349492262806194},{"x":-0.9422359812719776,"y":-2.2476365799386997},{"x":-0.9751059999999825,"y":-2.2519639999999868},{"x":-1.0079760187280158,"y":-2.2476365799386997},{"x":-1.0386060000000015,"y":-2.2349492262806194},{"x":-1.0649085612107,"y":-2.2147665612106806},{"x":-1.0850912262806105,"y":-2.188463999999996},{"x":-1.0977785799387192,"y":-2.1578340187280105},{"x":-1.102105999999992,"y":-2.1249639999999914},{"x":-1.0977785799387192,"y":-2.092093981271958},{"x":-1.0850912262806105,"y":-2.0614639999999866},{"x":-1.0649085612107,"y":-2.0351614387893022},{"x":-1.0386060000000015,"y":-2.0149787737193634},{"x":-1.0079760187280158,"y":-2.002291420061283},{"x":-0.9751059999999825,"y":-1.997963999999996},{"x":-0.9422359812719776,"y":-2.002291420061283},{"x":-0.9116059999999919,"y":-2.0149787737193634},{"x":-0.8853034387893075,"y":-2.0351614387893022},{"x":-0.8651207737193829,"y":-2.0614639999999866},{"x":-0.8524334200612742,"y":-2.092093981271958},{"x":-0.8481060000000014,"y":-2.1249639999999914}]} />
<silkscreentext text="{NAME}" pcbX="0mm" pcbY="2.8034mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.7485999999999962,"y":2.0534000000000106},{"x":1.7486000000000104,"y":2.0534000000000106},{"x":1.7486000000000104,"y":-2.5105999999999824},{"x":-1.7485999999999962,"y":-2.5105999999999824},{"x":-1.7485999999999962,"y":2.0534000000000106}]} />
      </footprint>}
      cadModel={{
        objUrl: objPath,
        pcbRotationOffset: 90,
        modelOriginPosition: { x: 0, y: 0.000012700000013410317, z: 0.050795 },
      }}
      {...props}
    />
  )
}