Underclock (zoli0726)

This commit is contained in:
Mauro Vietri 2023-05-29 08:22:37 -03:00
parent fe542ebfcb
commit cc75c6ef03
2 changed files with 6 additions and 6 deletions

View file

@ -21,8 +21,8 @@ echo on > /sys/devices/b0238000.mmc/mmc_host/mmc0/power/control
echo on > /sys/devices/b0230000.mmc/mmc_host/mmc1/power/control
export CPU_SPEED_MENU=504000 # 500 MHz
export CPU_SPEED_GAME=1008000 # 1.0 GHz
export CPU_SPEED_PERF=1296000 # 1.3 GHz
export CPU_SPEED_GAME=720000 # 720 MHz
export CPU_SPEED_PERF=1008000 # 1.0 GHz
echo userspace > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
# Enable all cores (0, 1, 2, 3)

View file

@ -120,7 +120,7 @@ int GFX_wrapText(TTF_Font* font, char* str, int max_width, int max_lines);
void GFX_blitAsset(int asset, SDL_Rect* src_rect, SDL_Surface* dst, SDL_Rect* dst_rect);
void GFX_blitPill(int asset, SDL_Surface* dst, SDL_Rect* dst_rect);
void GFX_blitRect(int asset, SDL_Surface* dst, SDL_Rect* dst_rect);
void GFX_blitBattery(SDL_Surface* dst, SDL_Rect* dst_rect);
void GFX_blitClockAndBattery(SDL_Surface* dst, SDL_Rect* dst_rect);
int GFX_getButtonWidth(char* hint, char* button);
void GFX_blitButton(char* hint, char*button, SDL_Surface* dst, SDL_Rect* dst_rect);
void GFX_blitMessage(TTF_Font* font, char* msg, SDL_Surface* dst, SDL_Rect* dst_rect);
@ -232,9 +232,9 @@ int POW_isCharging(void);
int POW_getBattery(void);
#define CPU_SPEED_MENU 504000 // 500 MHz
#define CPU_SPEED_POWERSAVE 720000 // 720 MHz
#define CPU_SPEED_NORMAL 1008000 // 1.0 GHz
#define CPU_SPEED_PERFORMANCE 1296000 // 1.3 GHz
#define CPU_SPEED_POWERSAVE 504000 // 500 MHz
#define CPU_SPEED_NORMAL 720000 // 720 MHz
#define CPU_SPEED_PERFORMANCE 1008000 // 1.0 GHz
// Reference overclock.c
void POW_setCPUSpeed(int speed);