hoc: make hiopt default yet again

This commit is contained in:
souldbminersmwc
2026-05-30 17:51:22 -04:00
parent 8504bd786e
commit 53bf78181c
3 changed files with 5 additions and 5 deletions

View File

@@ -113,7 +113,7 @@ volatile CustomizeTable C = {
.eristaGpuUV = 0,
.eristaGpuVmin = 810,
.marikoGpuUV = 0,
.marikoGpuUV = 2,
/* Vmin past 795mV won't work due boot voltage being 800mV (can be adjusted though). */
.marikoGpuVmin = 610,
.marikoGpuBootVolt = 800, /* Used during boot and when temp is <20°C */

View File

@@ -467,9 +467,9 @@ std::vector<std::string> ConfigInfoStrings(HocClkConfigValue val, bool isMariko,
return {
"GPU undervolt level",
"Options:",
" - No Undervolt: No Undervolt...",
" - No Undervolt: No Undervolt, HOS default",
" - SLT Table: NVIDIA custom SLT Table",
" - HiOPT: L4T Custom HiOPT table",
" - HiOPT: L4T Custom HiOPT table, HOC Default",
" - HiOPT - 15mV: L4T Custom HiOPT table with a 15mV offset",
" - High UV: The highest undervolt table",
"Default: No Undervolt"

View File

@@ -2247,9 +2247,9 @@ protected:
this->listElement->addItem(new CompactCategoryHeader("GPU Settings"));
std::vector<NamedValue> gpuUvConfM = {
NamedValue("No Undervolt", 0),
NamedValue("No Undervolt", 0, "HOS Default"),
NamedValue("SLT Table", 1),
NamedValue("HiOPT Table", 2),
NamedValue("HiOPT Table", 2, "HOC Default"),
NamedValue("HiOPT - 15mV", 3),
NamedValue("High UV Table", 4),
};