astra-abse/t113-s3
Allwinner T113-S3 / JLCPCB C5197687: native saved fanout, LCD top, storage right, 127 perimeter exits, 30 decoupling capacitors, connected GND planes; clean DRC and shorts, all 29 vias connected.
- Version
- 1.2.0
- License
- MIT
- Stars
- 0
src/routing-profile.ts
import { pins } from "./pins";
export type RoutingProfile = "lcd_top_storage_right";
export const CHIP_ROTATION = 90;
export const FANOUT_SIZE = 36;
export const TRACE_WIDTH = 0.1;
export const LCD_PINS = pins.filter((p) =>
/^PD(?:[0-9]|1[0-9]|2[01])$/.test(p.label),
);
export const STORAGE_PINS = pins.filter((p) =>
/^PC[2-7]$|^PF[0-5]$/.test(p.label),
);