mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 21:21:50 +00:00
0129039d76
On mariko, rebooting normally will bypass fuses
15 lines
No EOL
361 B
C
15 lines
No EOL
361 B
C
#pragma once
|
|
#include <utils/types.h>
|
|
|
|
char *CpyStr(const char* in);
|
|
void MaskIn(char *mod, u32 bitstream, char mask);
|
|
bool StrEndsWith(char *begin, char *end);
|
|
void WaitFor(u32 ms);
|
|
void RebootToPayloadOrRcm();
|
|
|
|
#define FREE(x) free(x); x = NULL;
|
|
char *ShowKeyboard(const char *toEdit, u8 alwaysRet);
|
|
|
|
void power_off();
|
|
void reboot_rcm();
|
|
void reboot_normal(); |