Fix wiring between overclock profiles, UI controls, and hardware fan actuation

This commit is contained in:
drjones
2026-08-23 09:05:20 -07:00
parent 02c85d778f
commit a0075d23a7
3 changed files with 26 additions and 5 deletions

View File

@@ -40,6 +40,8 @@ DEFAULT_PROFILES: Dict[str, Dict[str, Any]] = {
"lock_core_min": 0,
"lock_core_max": 0,
"lock_mem_mhz": 11501,
"fan_mode": "manual",
"fan_speed_pct": 60,
},
"comfy": {
"label": "ComfyUI — diffusion (core-compute bound)",
@@ -49,6 +51,8 @@ DEFAULT_PROFILES: Dict[str, Dict[str, Any]] = {
"lock_core_min": 2900,
"lock_core_max": 3105,
"lock_mem_mhz": 0,
"fan_mode": "manual",
"fan_speed_pct": 75,
},
"balanced": {
"label": "Balanced — stock boost, power unlocked",
@@ -58,6 +62,8 @@ DEFAULT_PROFILES: Dict[str, Dict[str, Any]] = {
"lock_core_min": 0,
"lock_core_max": 0,
"lock_mem_mhz": 0,
"fan_mode": "auto",
"fan_speed_pct": 0,
},
}