Skip to content

Commit

Permalink
Fix bug with 0 values
Browse files Browse the repository at this point in the history
  • Loading branch information
CatcherITGF committed Jan 14, 2024
1 parent c07c0ff commit d1b2024
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 9 deletions.
Binary file modified Sources/NXVenom/atmosphere/kips/loader.kip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,23 @@ back
catch_errors
json_mark_cur_kip '/switch/.packages/OC-Suite Wizard/Configure/CPU/json/marikoCpuMinVolt.json' name 24
hex-by-cust-offset-dec /atmosphere/kips/loader.kip 24 {json_mark_cur_kip(*,dec)}
{json_mark_cur_kip(*,comm)} /atmosphere/kips/loader.kip 24 {json_mark_cur_kip(*,hex)}
back

[*Min Volt]
; Erista
catch_errors
json_mark_cur_kip '/switch/.packages/OC-Suite Wizard/Configure/CPU/json/eristaCpuMinVolt.json' name 16
hex-by-cust-offset-dec /atmosphere/kips/loader.kip 16 {json_mark_cur_kip(*,dec)}
{json_mark_cur_kip(*,comm)} /atmosphere/kips/loader.kip 16 {json_mark_cur_kip(*,hex)}
back

[*High Min Volt]
; Mariko
catch_errors
json_mark_cur_kip '/switch/.packages/OC-Suite Wizard/Configure/CPU/json/marikoCpuHighMinVolt.json' name 28
hex-by-cust-offset-dec /atmosphere/kips/loader.kip 28 {json_mark_cur_kip(*,dec)}
{json_mark_cur_kip(*,comm)} /atmosphere/kips/loader.kip 28 {json_mark_cur_kip(*,hex)}
back

[*Max Volt]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[
{
"name": "Don't adjust",
"dec": "0"
"dec": "0",
"comm": "hex-by-cust-offset",
"hex": "000000"
},
{
"name": "610 mV",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[
{
"name": "Don't adjust",
"dec": "0"
"dec": "0",
"comm": "hex-by-cust-offset",
"hex": "000000"
},
{
"name": "700 mV",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"name": "1120 mV - Default",
"name": "1120 mV - System Default",
"dec": "1120"
},
{
Expand Down Expand Up @@ -92,7 +92,7 @@
"dec": "1230"
},
{
"name": "1235 mV",
"name": "1235 mV - Default",
"dec": "1235"
},
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[
{
"name": "Don't adjust",
"dec": "0"
"dec": "0",
"comm": "hex-by-cust-offset",
"hex": "000000"
},
{
"name": "500 mV",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ back
catch_errors
json_mark_cur_kip '/switch/.packages/OC-Suite Wizard/Configure/GPU/json/marikoGpuVmin.json' name 48
hex-by-cust-offset-dec /atmosphere/kips/loader.kip 48 {json_mark_cur_kip(*,dec)}
{json_mark_cur_kip(*,comm)} /atmosphere/kips/loader.kip 48 {json_mark_cur_kip(*,hex)}
back

[*Min Volt]
; Erista
catch_errors
json_mark_cur_kip '/switch/.packages/OC-Suite Wizard/Configure/GPU/json/eristaGpuVmin.json' name 44
hex-by-cust-offset-dec /atmosphere/kips/loader.kip 44 {json_mark_cur_kip(*,dec)}
{json_mark_cur_kip(*,comm)} /atmosphere/kips/loader.kip 44 {json_mark_cur_kip(*,hex)}
back

[*Max Volt]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[
{
"name": "Don't adjust",
"dec": "0"
"dec": "0",
"comm": "hex-by-cust-offset",
"hex": "000000"
},
{
"name": "720 mV",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
[
{
"name": "Don't adjust",
"dec": "0",
"comm": "hex-by-cust-offset",
"hex": "000000"
},
{
"name": "550 mV",
"dec": "550"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,23 @@ back
catch_errors
json_mark_cur_kip '/switch/.packages/OC-Suite Wizard/Configure/RAM/json/marikoEmcMemVolt.json' name 60
hex-by-cust-offset-dec /atmosphere/kips/loader.kip 60 {json_mark_cur_kip(*,dec)}
{json_mark_cur_kip(*,comm)} /atmosphere/kips/loader.kip 60 {json_mark_cur_kip(*,hex)}
back

[*EMC Vdd2]
; Erista
catch_errors
json_mark_cur_kip '/switch/.packages/OC-Suite Wizard/Configure/RAM/json/eristaEmcMemVolt.json' name 60
hex-by-cust-offset-dec /atmosphere/kips/loader.kip 60 {json_mark_cur_kip(*,dec)}
{json_mark_cur_kip(*,comm)} /atmosphere/kips/loader.kip 60 {json_mark_cur_kip(*,hex)}
back

[*EMC Vddq]
; Mariko
catch_errors
json_mark_cur_kip '/switch/.packages/OC-Suite Wizard/Configure/RAM/json/marikoEmcVddqVolt.json' name 64
hex-by-cust-offset-dec /atmosphere/kips/loader.kip 64 {json_mark_cur_kip(*,dec)}
{json_mark_cur_kip(*,comm)} /atmosphere/kips/loader.kip 64 {json_mark_cur_kip(*,hex)}
back

[*EMC DVB Shift]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[
{
"name": "Don't adjust",
"dec": "0"
"dec": "0",
"comm": "hex-by-cust-offset",
"hex": "000000"
},
{
"name": "1050 mV",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[
{
"name": "Don't adjust",
"dec": "0"
"dec": "0",
"comm": "hex-by-cust-offset",
"hex": "000000"
},
{
"name": "1050 uV",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[
{
"name": "Don't adjust",
"dec": "0"
"dec": "0",
"comm": "hex-by-cust-offset",
"hex": "000000"
},
{
"name": "550 mV",
Expand Down

0 comments on commit d1b2024

Please sign in to comment.