0hmX/mt41k512m8da-107-it-p-fanout
This code defines the physical footprint, routing, and layout configuration for a DDR3 memory module using surface-mount pads, vias, and copper traces on a printed circuit board (PCB).
- Version
- 0.2.3
- License
- unset
- Stars
- 0
src/pin-map.ts
import pinMap from "./pin-map.json"
export const PIN_MAP = pinMap
export const ROUTED_PINS = PIN_MAP.filter(p => p.routed)
export const EXTERNAL_TERMINALS = ROUTED_PINS.map(p => p.terminal)
export const pinLabels = Object.fromEntries(PIN_MAP.map(p => [
`pin${p.pin}`, [`ball_${p.ball}`, `SIG_${p.terminal}`]
]))