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/DFE201612PD_1R0M_P2/DFE201612PD_1R0M_P2.tsx
import objPath from "./DFE201612PD_1R0M_P2.obj"
import type { InductorProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["pin1"],
pin2: ["pin2"]
} as const
export const DFE201612PD_1R0M_P2 = (props: Omit<InductorProps, "inductance">) => {
return (
<inductor inductance="1uH"
symbol={false ? (
<symbol>
<port name="pin2" pinNumber={2} aliases={["2"]} direction="right" schX={5.08} schY={0} schStemLength={1.016} />
<port name="pin1" pinNumber={1} aliases={["1"]} direction="left" schX={-5.08} schY={0} schStemLength={1.016} />
<schematicpath svgPath="M -4.064 0.00508 A 1.016 1.016 0 1 0 -2.032 -0.00508" strokeWidth={0.254} strokeColor="#880000" />
<schematicpath svgPath="M -2.032 0.00508 A 1.016 1.016 0 1 0 0 -0.00508" strokeWidth={0.254} strokeColor="#880000" />
<schematicpath svgPath="M 2.032 0.00508 A 1.016 1.016 0 1 0 4.064 -0.00508" strokeWidth={0.254} strokeColor="#880000" />
<schematicpath svgPath="M 0 0.00508 A 1.016 1.016 0 1 0 2.032 -0.00508" strokeWidth={0.254} strokeColor="#880000" />
</symbol>
) : undefined}
supplierPartNumbers={{
"jlcpcb": [
"C2043195"
]
}}
manufacturerPartNumber="DFE201612PD_1R0M_P2"
footprint={<footprint>
<smtpad portHints={["pin2"]} pcbX="0.999998mm" pcbY="0mm" width="1.1999976mm" height="1.7999964mm" shape="rect" />
<smtpad portHints={["pin1"]} pcbX="-0.999998mm" pcbY="0mm" width="1.1999976mm" height="1.7999964mm" shape="rect" />
<silkscreenpath route={[{"x":-0.4999990000000025,"y":1.1999975999999606},{"x":-1.54998420000004,"y":1.1999975999999606}]} />
<silkscreenpath route={[{"x":-0.4999990000000025,"y":-1.1999976000000743},{"x":-1.54998420000004,"y":-1.1999976000000743}]} />
<silkscreenpath route={[{"x":0.49999899999988884,"y":1.1999975999999606},{"x":1.54998420000004,"y":1.1999975999999606}]} />
<silkscreenpath route={[{"x":0.49999899999988884,"y":-1.1999976000000743},{"x":1.54998420000004,"y":-1.1999976000000743}]} />
<silkscreenpath route={[{"x":-1.8999708000001192,"y":0.9999979999998914},{"x":-1.8999708000001192,"y":-0.9999979999998914}]} />
<silkscreenpath route={[{"x":1.8999708000000055,"y":0.9999979999998914},{"x":1.8999708000000055,"y":-0.9999979999998914}]} />
<silkscreenpath route={[{"x":-1.54998420000004,"y":1.1999975999999606},{"x":-1.6999712000001637,"y":1.1999975999999606},{"x":-1.8999708000001192,"y":0.9999979999998914}]} />
<silkscreenpath route={[{"x":-1.54998420000004,"y":-1.1999976000000743},{"x":-1.6999712000001637,"y":-1.1999976000000743},{"x":-1.8999708000001192,"y":-0.9999979999998914}]} />
<silkscreenpath route={[{"x":1.54998420000004,"y":1.1999975999999606},{"x":1.6999711999999363,"y":1.1999975999999606},{"x":1.8999708000000055,"y":0.9999979999998914}]} />
<silkscreenpath route={[{"x":1.54998420000004,"y":-1.1999976000000743},{"x":1.6999711999999363,"y":-1.1999976000000743},{"x":1.8999708000000055,"y":-0.9999979999998914}]} />
<silkscreentext text="{NAME}" pcbX="0.009398mm" pcbY="2.1938mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-2.1456020000000535,"y":1.4437999999998965},{"x":2.164397999999892,"y":1.4437999999998965},{"x":2.164397999999892,"y":-1.4438000000001239},{"x":-2.1456020000000535,"y":-1.4438000000001239},{"x":-2.1456020000000535,"y":1.4437999999998965}]} />
</footprint>}
cadModel={{
objUrl: objPath,
pcbRotationOffset: 0,
modelOriginPosition: { x: 0, y: 0, z: -0.475 },
}}
{...props}
/>
)
}