mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 05:01:46 +00:00
Merge branch 'suchmememanyskill:Lockpick-1.19.10-bdk-upgrade' into Lockpick-1.19.10-bdk-upgrade
This commit is contained in:
commit
f504c09441
1 changed files with 21 additions and 14 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue