From a8bf90b904c03847eb81baae30dbeed6c6863b00 Mon Sep 17 00:00:00 2001 From: Souldbminer <162390887+souldbminerr@users.noreply.github.com> Date: Mon, 30 Mar 2026 18:08:42 -0400 Subject: [PATCH] Update voltage setting for system initialization Changed voltage setting to 1.15V for improved stability at higher clock speeds. --- main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index c38718c..4086e37 100644 --- a/main.c +++ b/main.c @@ -21,9 +21,9 @@ bool write_payload(); -// optimized: increased voltage for better stability at higher clock +// RP2040 rating is 200MHz at 1.15v void init_system() { - vreg_set_voltage(VREG_VOLTAGE_1_30); + vreg_set_voltage(VREG_VOLTAGE_1_15); set_sys_clock_khz(200000, true); } @@ -200,4 +200,4 @@ int main() // attempts limit halt_with_error(7, 3); -} \ No newline at end of file +}