diff --git a/nyx/nyx_gui/frontend/gui.c b/nyx/nyx_gui/frontend/gui.c index bb722c6f..c0163067 100644 --- a/nyx/nyx_gui/frontend/gui.c +++ b/nyx/nyx_gui/frontend/gui.c @@ -2492,7 +2492,7 @@ void nyx_load_and_run() } else { - // Alternate DRAM frequencies. Saves 280 mW. + // Alternate DRAM frequencies. Total stall < 1ms. Saves 300+ mW. while (true) { minerva_change_freq(FREQ_1600); // Takes 295 us. @@ -2500,6 +2500,7 @@ void nyx_load_and_run() lv_task_handler(); minerva_change_freq(FREQ_800); // Takes 80 us. + usleep(125); // Min 20us. } } }