Compare commits

8 Commits

Author SHA1 Message Date
5c93436c99 minor led changes 2025-11-01 10:51:37 +01:00
afdeaea931 Use Connector_Generic symbol
Signed-off-by: Matthias Blankertz <matthias@blankertz.org>
2025-10-08 22:26:50 +02:00
ed5f962f61 Cleanup labels and ERC
No netlist changes.

Signed-off-by: Matthias Blankertz <matthias@blankertz.org>
2025-10-08 10:46:40 +02:00
a4bceeca21 Use proper momentary button symbol
Signed-off-by: Matthias Blankertz <matthias@blankertz.org>
2025-10-08 10:46:27 +02:00
cfabf77ff8 Use hierarchical labes instead of plain net labels to make connections clearer
Signed-off-by: Matthias Blankertz <matthias@blankertz.org>
2025-10-06 20:13:51 +02:00
25ba8a6753 Fix H5VUT1B footprint swapped pads
The pads 3 and 4 of the H5VUT1B protection diode package were swapped.
Fix the footprint and adjust the layout accordingly.

Signed-off-by: Matthias Blankertz <matthias@blankertz.org>
2025-09-27 17:52:45 +02:00
8124fb0f61 Improve some capacitors; Add 3V3 indicator LED
Chose some more sensible caps for the higher-value decoupling ones to
actually reach the capacitance requested in the data sheet.

Signed-off-by: Matthias Blankertz <matthias@blankertz.org>
2025-09-25 22:02:42 +02:00
f3d06f50b5 Add design notes to schematic
Signed-off-by: Matthias Blankertz <matthias@blankertz.org>
2025-09-06 10:18:19 +02:00
5 changed files with 8247 additions and 4575 deletions

View File

@@ -71,7 +71,7 @@
# This rule handles diameter minimum and maximum for ALL holes. # This rule handles diameter minimum and maximum for ALL holes.
# Other specialized rules handle restrictions (e.g. Via, PTH, NPTH) # Other specialized rules handle restrictions (e.g. Via, PTH, NPTH)
(rule "Hole diameter" (rule "Hole diameter"
(constraint hole_size (min 0.2mm) (max 6.3mm)) (constraint hole_size (min 0.3mm) (max 6.3mm))
) )
(rule "Hole (NPTH) diameter" (rule "Hole (NPTH) diameter"
@@ -101,10 +101,10 @@
(constraint hole_to_hole (min 0.5mm)) (constraint hole_to_hole (min 0.5mm))
) )
(rule "Clearance: via to via (perimeter), different nets" (rule "Clearance: via to via (perimeter), different nets"
(layer outer) (layer outer)
(condition "A.Net != B.Net && A.Type == 'Via' && B.Type == 'Via'") (condition "A.Net != B.Net && A.Type == 'Via' && B.Type == 'Via'")
(constraint hole_to_hole (min 0.2mm)) (constraint hole_to_hole (min 0.2mm))
) )
(rule "Clearance: hole to hole (perimeter), same net" (rule "Clearance: hole to hole (perimeter), same net"

File diff suppressed because it is too large Load Diff

View File

@@ -1,8 +1,8 @@
{ {
"board": { "board": {
"active_layer": 5, "active_layer": 0,
"active_layer_preset": "", "active_layer_preset": "",
"auto_track_width": true, "auto_track_width": false,
"hidden_netclasses": [], "hidden_netclasses": [],
"hidden_nets": [ "hidden_nets": [
"GND" "GND"
@@ -18,12 +18,12 @@
"zones": 0.6 "zones": 0.6
}, },
"selection_filter": { "selection_filter": {
"dimensions": false, "dimensions": true,
"footprints": true, "footprints": true,
"graphics": false, "graphics": true,
"keepouts": false, "keepouts": true,
"lockedItems": false, "lockedItems": false,
"otherItems": false, "otherItems": true,
"pads": true, "pads": true,
"text": true, "text": true,
"tracks": true, "tracks": true,
@@ -52,7 +52,7 @@
"conflict_shadows", "conflict_shadows",
"shapes" "shapes"
], ],
"visible_layers": "ffffffff_ffffffff_ffffffff_ffffffff", "visible_layers": "ffffffff_ffffffff_fffffff7_ffffffff",
"zone_display_mode": 0 "zone_display_mode": 0
}, },
"git": { "git": {

View File

@@ -38,8 +38,8 @@
"other_text_upright": false, "other_text_upright": false,
"pads": { "pads": {
"drill": 0.0, "drill": 0.0,
"height": 0.84, "height": 0.62,
"width": 1.19 "width": 0.56
}, },
"silk_line_width": 0.1, "silk_line_width": 0.1,
"silk_text_italic": false, "silk_text_italic": false,
@@ -450,14 +450,14 @@
"no_connect_dangling": "warning", "no_connect_dangling": "warning",
"pin_not_connected": "error", "pin_not_connected": "error",
"pin_not_driven": "error", "pin_not_driven": "error",
"pin_to_pin": "warning", "pin_to_pin": "error",
"power_pin_not_driven": "error", "power_pin_not_driven": "error",
"same_local_global_label": "warning", "same_local_global_label": "warning",
"similar_label_and_power": "warning", "similar_label_and_power": "warning",
"similar_labels": "warning", "similar_labels": "warning",
"similar_power": "warning", "similar_power": "warning",
"simulation_model_issue": "ignore", "simulation_model_issue": "ignore",
"single_global_label": "ignore", "single_global_label": "warning",
"unannotated": "error", "unannotated": "error",
"unconnected_wire_endpoint": "warning", "unconnected_wire_endpoint": "warning",
"undefined_netclass": "error", "undefined_netclass": "error",

File diff suppressed because it is too large Load Diff