From b9f99029db2d0e2e9b646a36e06ae6d62500b441 Mon Sep 17 00:00:00 2001 From: DigitalConfections Date: Fri, 29 May 2020 20:59:55 -0400 Subject: [PATCH] Fixes an Oops in Version 0,4 o Didn't update version number for version 0.4. This corrects that. o Also increments the EEPROM flag. --- Arduino-microfox/defs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Arduino-microfox/defs.h b/Arduino-microfox/defs.h index 63b2022..92ec048 100644 --- a/Arduino-microfox/defs.h +++ b/Arduino-microfox/defs.h @@ -57,7 +57,7 @@ /****************************************************** * Set the text that gets displayed to the user */ -#define SW_REVISION "0.3" +#define SW_REVISION "0.4" //#define TRANQUILIZE_WATCHDOG @@ -113,7 +113,7 @@ INVALID_FOX /****************************************************** * EEPROM definitions */ -#define EEPROM_INITIALIZED_FLAG 0xAE +#define EEPROM_INITIALIZED_FLAG 0xAF #define EEPROM_UNINITIALIZED 0x00 #define EEPROM_STATION_ID_DEFAULT "FOXBOX"