1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-16 20:13:24 +01:00

Merge branch 'suchmememanyskill:Lockpick-1.19.10-bdk-upgrade' into Lockpick-1.19.10-bdk-upgrade

This commit is contained in:
Jeff 2024-07-02 13:22:28 +02:00 committed by GitHub
commit f504c09441
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,9 +26,9 @@ border = {
setpixels(1260,20,1279,699,border_color) setpixels(1260,20,1279,699,border_color)
} }
i = 20 i = 10
x_pos = 10 x_pos = 10
y_pos = 8 y_pos = 12
["WARNING!!!", ["WARNING!!!",
"", "",
@ -37,27 +37,34 @@ y_pos = 8
"- Your Save Data", "- Your Save Data",
"- Your Game Data", "- Your Game Data",
"- Your User Data", "- Your User Data",
"- (Some) System Calibration Data"
"",
"This script includes wiping some calibration data.",
"Among other uses, this data is used for battery calibration.",
"This is especially problematic for lite systems,",
" as it makes the system initialize with unsafe",
" battery calibration values!",
"", "",
"Restoring an emmc backup is always preferable over wiping.", "Restoring an emmc backup is always preferable over wiping.",
"Please only use this as a last resort.", "Please only use this as a last resort.",
"This script is intended to be used in aid of unbricking.", "This script is intended to be used in aid of unbricking."
"", ].foreach("line")
"Pull requests to fix the calibration issue are welcome",
"https://github.com/suchmememanyskill/TegraExplorer"].foreach("line")
{ {
printpos(x_pos, y_pos) printpos(x_pos, y_pos)
y_pos = y_pos + 1 y_pos = y_pos + 1
print(line) print(line)
} }
time = 10000 if (!fsexists("bis:/save/"+is[1]))
{
[
"",
"DeviceSettings save (8000000000000053) is missing!!!",
"This script cannot recover lost battery calibration data.",
"The system will initialize with default values.",
"These values are unsafe for lite systems!"
].foreach("line")
{
printpos(x_pos, y_pos)
y_pos = y_pos + 1
print(line)
}
}
time = 5000
y_pos = y_pos + 4 y_pos = y_pos + 4
while (i > 0) while (i > 0)