From d80991e63446b8afa4af3798cf1e73a1aed70039 Mon Sep 17 00:00:00 2001 From: akhilles Date: Mon, 20 Oct 2025 14:07:11 -0400 Subject: [PATCH] Made default 1oz track width 0.16mm This is consistent with the 2oz minimum. Also, add it to pre-defined track width list. --- board_config.zen | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/board_config.zen b/board_config.zen index cb70371..bfcd0f3 100644 --- a/board_config.zen +++ b/board_config.zen @@ -406,8 +406,8 @@ def Board( # Default netclass for general-purpose PCB manufacturing DEFAULT_NETCLASS = NetClass( name="Default", - clearance=0.15, # Conservative clearance (different nets) - track_width=0.15, # Safe track width for most manufacturers + clearance=0.16, + track_width=0.16, # Matches 2oz netclass via_diameter=0.5, # Standard via size (5.3:1 aspect ratio on 1.6mm board) via_drill=0.3, # Standard drill size diff_pair_width=0.2, # Reasonable diff pair width @@ -809,6 +809,7 @@ BASE_CONSTRAINTS_2OZ = Constraints( BASE_PREDEFINED_SIZES = PredefinedSizes( track_widths=[ 0.127, + 0.16, 0.2, 0.4, 0.8,