.. not currently compatible with PSRAM (sadly), even though I tried doing the right things with PSRAM clocking.
11 lines
208 B
C
11 lines
208 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
enum clk_sys_speed {
|
|
CLK_SYS_264MHZ = 2,
|
|
CLK_SYS_176MHZ = 3,
|
|
CLK_SYS_132MHZ = 4,
|
|
};
|
|
|
|
extern void overclock(enum clk_sys_speed clk_sys_div, uint32_t bit_clk_hz);
|