tscircuit/ti
ti tscircuit library
- Version
- 1.0.192
- License
- unset
- Stars
- 0
lib/subcircuits/CommunicationInterface_LIN_TLIN1028.circuit.tsx
import type { SubcircuitProps } from "@tscircuit/props";
import "tscircuit";
import { TLIN10283DDARQ1 } from "../chips/TLIN10283DDARQ1.circuit.tsx";
/**
* LIN communication and system-supply block extracted from the "Power & LIN"
* section of TI TIDA-020027.
*
* Source coordinates are normalized without re-layout using:
* schX = (sourceX - 390) * 0.0254
* schY = (sourceY - 380) * 0.0254
* C29, C31, and C31's GND label receive a -0.127 mm Y correction for the
* native capacitor pin-lead geometry, preserving the source's straight bus
* with a downward shunt branch instead of forcing an autorouter dogleg.
*
* The source's "3.3V" rail is represented by the repository-safe V3_3 net
* name because a period is not legal in a tscircuit net selector.
*
* Reference: https://www.ti.com/tool/TIDA-020027
*/
export const CommunicationInterface_LIN_TLIN1028 = (props: SubcircuitProps) => (
<subcircuit
schMaxTraceDistance="12mm"
autorouterEffortLevel="10x"
// This source extraction is schematic-only. PCB autorouting is intentionally
// disabled while the native schematic autorouter remains active.
routingDisabled
{...props}
>
<net name="GND" isGroundNet />
<net name="V3_3" isPowerNet />
<net name="Vsup" isPowerNet />
<net name="EN_1028" />
<net name="RXD" />
<net name="TXD" />
<net name="nRST" />
<net name="LIN" />
<schematictext
schX={-1.016}
schY={4.826}
text="Power & LIN"
fontSize={0.3}
/>
<TLIN10283DDARQ1 name="U4" schX={0} schY={0} />
{/* VCC output filtering and RXD pull-up. */}
<capacitor
name="C23"
capacitance="10uF"
maxVoltageRating="10V"
schShowRatings
footprint="0603"
schX={-5.08}
schY={2.667}
schRotation={270}
/>
<capacitor
name="C24"
capacitance="0.1uF"
maxVoltageRating="16V"
schShowRatings
footprint="0603"
schX={-3.81}
schY={2.667}
schRotation={270}
/>
<resistor
name="R19"
resistance="10kohm"
tolerance="5%"
footprint="0402"
schX={-5.588}
schY={0.508}
schRotation={270}
/>
{/* VSUP input bypassing. */}
<capacitor
name="C25"
capacitance="0.1uF"
maxVoltageRating="50V"
schShowRatings
footprint="0603"
schX={3.302}
schY={2.413}
schRotation={270}
/>
<capacitor
name="C26"
capacitance="10uF"
maxVoltageRating="50V"
schShowRatings
footprint="1206"
schX={4.826}
schY={2.413}
schOrientation="vertical"
/>
{/* LIN-bus and TXD filtering. TLIN1028-Q1 supplies the source design's
automotive LIN ESD and bus-fault protection internally. */}
<capacitor
name="C29"
capacitance="220pF"
maxVoltageRating="50V"
schShowRatings
footprint="0603"
schX={4.064}
schY={0}
schOrientation="vertical"
/>
<resistor
name="R20"
resistance="1kohm"
tolerance="1%"
footprint="0603"
schX={-5.588}
schY={-0.508}
/>
<capacitor
name="C31"
capacitance="100pF"
maxVoltageRating="25V"
schShowRatings
footprint="0603"
schX={-5.08}
schY={-1.016}
schRotation={270}
/>
{/* 3.3 V rail: U4 VCC, C23/C24, and the RXD pull-up. */}
<trace
from="U4.VCC"
to="C24.pin1"
schematicRouteHints={[
{ x: -2.794, y: 1.016 },
{ x: -2.794, y: 3.048 },
{ x: -3.81, y: 3.048 },
]}
/>
<trace from="C24.pin1" to="C23.pin1" />
<trace from="C23.pin1" to="net.V3_3" />
<trace from="R19.pin1" to="net.V3_3" />
<trace from="C23.pin2" to="C24.pin2" />
<trace
name="GND_C24_pin2"
from="C24.pin2"
to="net.GND"
schDisplayLabel="GND"
/>
{/* Logic-side signal boundaries. */}
<trace from="U4.RXD" to="R19.pin2" />
<trace from="R19.pin2" to="net.RXD" />
<trace from="R20.pin1" to="net.TXD" />
<trace from="R20.pin2" to="U4.TXD" />
<trace from="C31.pin1" to="R20.pin2" />
<trace
name="GND_C31_pin2"
from="C31.pin2"
to="net.GND"
schDisplayLabel="GND"
/>
<trace from="U4.EN" to="net.EN_1028" />
<trace from="U4.nRST" to="net.nRST" />
{/* VSUP rail and its two source-local bypass capacitors. */}
<trace
from="U4.VSUP"
to="C25.pin1"
schematicRouteHints={[
{ x: 2.286, y: 1.524 },
{ x: 2.286, y: 2.794 },
{ x: 3.302, y: 2.794 },
]}
/>
<trace from="C25.pin1" to="C26.pin1" />
<trace from="C26.pin1" to="net.Vsup" />
<trace
name="GND_C25_pin2"
from="C25.pin2"
to="net.GND"
schDisplayLabel="GND"
/>
<trace
name="GND_C26_pin2"
from="C26.pin2"
to="net.GND"
schDisplayLabel="GND"
/>
{/* LIN bus shunt capacitor and external LIN boundary. */}
<trace from="U4.LIN" to="C29.pin1" />
<trace from="C29.pin1" to="net.LIN" />
<trace
name="GND_C29_pin2"
from="C29.pin2"
to="net.GND"
schDisplayLabel="GND"
/>
{/* The DDA exposed pad and pin 3 are both grounded in the TI source. */}
<trace from="U4.GND" to="U4.PAD" />
<trace from="U4.PAD" to="net.GND" />
</subcircuit>
);
export default CommunicationInterface_LIN_TLIN1028;