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/TPS62A02DRLR/TPS62A02DRLR.tsx
import objPath from "./TPS62A02DRLR.obj"
import type { ChipProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["GND"],
pin2: ["SW"],
pin3: ["VIN"],
pin4: ["EN"],
pin5: ["FB"],
pin6: ["PG"]
} as const
export const TPS62A02DRLR = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C5350187"
]
}}
manufacturerPartNumber="TPS62A02DRLR"
footprint={<footprint>
<smtpad portHints={["pin5"]} pcbX="0.799973mm" pcbY="0mm" width="0.499999mm" height="0.2999994mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="-0.799973mm" pcbY="0mm" width="0.499999mm" height="0.2999994mm" shape="rect" />
<smtpad portHints={["pin3"]} pcbX="-0.799973mm" pcbY="-0.499999mm" width="0.499999mm" height="0.2999994mm" shape="rect" />
<smtpad portHints={["pin1"]} pcbX="-0.799973mm" pcbY="0.499999mm" width="0.499999mm" height="0.2999994mm" shape="rect" />
<smtpad portHints={["pin4"]} pcbX="0.799973mm" pcbY="-0.499999mm" width="0.499999mm" height="0.2999994mm" shape="rect" />
<smtpad portHints={["pin6"]} pcbX="0.799973mm" pcbY="0.499999mm" width="0.499999mm" height="0.2999994mm" shape="rect" />
<silkscreenpath route={[{"x":0.47505619999998316,"y":0.788339800000017},{"x":-0.47490379999999277,"y":0.788339800000017}]} />
<silkscreenpath route={[{"x":0.47505619999998316,"y":-0.7864602000000076},{"x":-0.47490379999999277,"y":-0.7864602000000076}]} />
<silkscreenpath route={[{"x":-0.780161000000021,"y":0.9308845999999988},{"x":-0.7822035422689453,"y":0.9153699511603861},{"x":-0.788191973195552,"y":0.9009126000000123},{"x":-0.797718191108558,"y":0.8884977911085485},{"x":-0.8101330000000075,"y":0.8789715731955425},{"x":-0.8245903511603956,"y":0.8729831422689358},{"x":-0.8401050000000083,"y":0.8709406000000115},{"x":-0.855619648839621,"y":0.8729831422689358},{"x":-0.8700769999999949,"y":0.8789715731955425},{"x":-0.8824918088914586,"y":0.8884977911085485},{"x":-0.8920180268044646,"y":0.9009126000000123},{"x":-0.8980064577310714,"y":0.9153699511603861},{"x":-0.9000490000000099,"y":0.9308845999999988},{"x":-0.8980064577310714,"y":0.9463992488396258},{"x":-0.8920180268044646,"y":0.9608565999999996},{"x":-0.8824918088914586,"y":0.9732714088914491},{"x":-0.8700769999999949,"y":0.9827976268044551},{"x":-0.855619648839621,"y":0.9887860577310619},{"x":-0.8401050000000083,"y":0.9908286000000004},{"x":-0.8245903511603956,"y":0.9887860577310619},{"x":-0.8101330000000075,"y":0.9827976268044551},{"x":-0.797718191108558,"y":0.9732714088914491},{"x":-0.788191973195552,"y":0.9608565999999996},{"x":-0.7822035422689453,"y":0.9463992488396258},{"x":-0.780161000000021,"y":0.9308845999999988}]} />
<silkscreentext text="{NAME}" pcbX="-0.059817mm" pcbY="1.9954006mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.414716999999996,"y":1.2454006000000106},{"x":1.2950830000000053,"y":1.2454006000000106},{"x":1.2950830000000053,"y":-1.0833993999999905},{"x":-1.414716999999996,"y":-1.0833993999999905},{"x":-1.414716999999996,"y":1.2454006000000106}]} />
</footprint>}
cadModel={{
objUrl: objPath,
pcbRotationOffset: 0,
modelOriginPosition: { x: 0.00005079999999679785, y: 0.02905759999998736, z: 0 },
}}
{...props}
/>
)
}