Add power-margin, PG-to-EN sequencing, and DNP enable checks.

Compare only specified IQ plus I_load to Iout_max and series-R drop, flag sequencing only when power_sequence is in specs, and treat DNP as a fitted-variant graph so a missing enable pull is ERROR only when the BOM actually marks DNP.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-09-10 22:34:06 +02:00
co-authored by Cursor
parent a45a06e761
commit 78013bd404
13 changed files with 800 additions and 8 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ export interface Net {
export interface DesignGraph {
components: Record<string, Component>;
nets: Record<string, Net>;
bom_fields?: Record<string, { mpn?: string | null; value?: string }>;
bom_fields?: Record<string, { mpn?: string | null; value?: string; dnp?: boolean; variant?: string | null }>;
schematic_fields?: Record<string, { mpn?: string | null; value?: string }>;
}