From 9f331bb242b797f419f84099aa607373662b7a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomislav=20Kopi=C4=87?= Date: Wed, 12 Jun 2024 12:16:37 +0000 Subject: [PATCH] Update CubeGotchi.ino --- CubeGotchi.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CubeGotchi.ino b/CubeGotchi.ino index 4722453..e3f6ceb 100644 --- a/CubeGotchi.ino +++ b/CubeGotchi.ino @@ -17,7 +17,7 @@ //#define ENABLE_TAMA_SOUND #define ENABLE_REAL_TIME #define ENABLE_SAVE_STATUS -#define AUTO_SAVE_MINUTES 5 // Auto save for every hour (to preserve EEPROM lifespan) +#define AUTO_SAVE_MINUTES 10 // Auto save for every 10 minutes #define ENABLE_LOAD_STATE_FROM_EEPROM //#define ENABLE_DUMP_STATE_TO_SERIAL_WHEN_START // #define ENABLE_SERIAL_DUMP @@ -72,7 +72,7 @@ static void hal_sleep_until(timestamp_t ts) { if (remaining > 0) { delayMicroseconds(remaining); } - delayMicroseconds(18); // fixed delay to compensate for emulator time drifting + delayMicroseconds(20); // fixed delay to compensate for emulator time drifting #endif }