From d661330a4453e041887c8f292119a3bbcbd9a801 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Thu, 7 Jan 2021 03:44:35 +0100 Subject: [PATCH] Reduced timeout --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 4e4024c..34a2c08 100644 --- a/main.c +++ b/main.c @@ -22,7 +22,7 @@ #include #define VERSION_STRING "TWIBOOT v3.1 (M)" -#define EEPROM_SUPPORT 1 +#define EEPROM_SUPPORT 0 #define LED_SUPPORT 1 #ifndef USE_CLOCKSTRETCH @@ -40,7 +40,7 @@ #define F_CPU 16000000ULL #define TIMER_DIVISOR 2048 #define TIMER_IRQFREQ_MS 25 -#define TIMEOUT_MS 1000 +#define TIMEOUT_MS 100 #define TIMER_MSEC2TICKS(x) ((x * F_CPU) / (TIMER_DIVISOR * 1000ULL)) #define TIMER_MSEC2IRQCNT(x) (x / TIMER_IRQFREQ_MS)