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/TFM201208BLE_R47MTCF.tsx
import type { InductorProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["pin1"],
pin2: ["pin2"]
} as const
export const TFM201208BLE_R47MTCF = (props: Omit<InductorProps, "inductance">) => {
return (
<inductor inductance="470nH"
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": [
"C6284725"
]
}}
manufacturerPartNumber="TFM201208BLE_R47MTCF"
footprint={<footprint>
<smtpad portHints={["pin1"]} pcbX="-0.999998mm" pcbY="0mm" width="0.999998mm" height="1.2999974mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="0.999998mm" pcbY="0mm" width="0.999998mm" height="1.2999974mm" shape="rect" />
<silkscreenpath route={[{"x":-0.999998000000005,"y":-0.88900000000001},{"x":0.9999979999998914,"y":-0.88900000000001}]} />
<silkscreenpath route={[{"x":-0.999998000000005,"y":0.8890000000001237},{"x":0.9999979999998914,"y":0.8890000000001237}]} />
<silkscreentext text="{NAME}" pcbX="0mm" pcbY="1.889mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.748600000000124,"y":1.1390000000001237},{"x":1.7486000000000104,"y":1.1390000000001237},{"x":1.7486000000000104,"y":-1.13900000000001},{"x":-1.748600000000124,"y":-1.13900000000001},{"x":-1.748600000000124,"y":1.1390000000001237}]} />
</footprint>}
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C6284725.obj?uuid=5a84a84263d446838271f66cdb04aaac",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C6284725.step?uuid=5a84a84263d446838271f66cdb04aaac",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0, y: 0, z: 0 },
}}
{...props}
/>
)
}