/** * Board Intelligence Type Contracts * * Provides: * - BoardPinProfile: Risk-classified GPIO metadata for a board family. * - BoardProfile: Unified board profile metadata for agent workflows. */ /** * Pin safety profile for a board family. */ export interface BoardPinProfile { dangerousPins: number[]; inputOnlyPins: number[]; flashSpiPins: number[]; saferAlternatives: number[]; } /** * Board profile resolved by board/platform metadata. */ export interface BoardProfile { key: string; title: string; defaultMonitorBaudRate: number; pinProfile: BoardPinProfile; boardIdPattern: RegExp; platformPattern: RegExp; mcuPattern: RegExp; } //# sourceMappingURL=types.d.ts.map