diff --git a/TinyAPRS/TinyAPRS/cfg/cfg_wdt.h b/TinyAPRS/TinyAPRS/cfg/cfg_wdt.h new file mode 100644 index 0000000..13df380 --- /dev/null +++ b/TinyAPRS/TinyAPRS/cfg/cfg_wdt.h @@ -0,0 +1,47 @@ +/** + * \file + * + * + * \brief Configuration file for watchdog module. + * + * + * \author Daniele Basile + */ + +#ifndef CFG_WDT_H +#define CFG_WDT_H + +/// Enable watchdog timer. $WIZ$ type = "autoenabled" +#define CONFIG_WATCHDOG 1 + +#endif /* CFG_WDT_H */ + + diff --git a/TinyAPRS/TinyAPRS/console.c b/TinyAPRS/TinyAPRS/console.c index cc6e577..224d4d2 100644 --- a/TinyAPRS/TinyAPRS/console.c +++ b/TinyAPRS/TinyAPRS/console.c @@ -162,7 +162,7 @@ void console_parse_command(char* command, size_t commandLen){ // Command Handlers //////////////////////////////////////////////////////////////////////////////////// -static const PROGMEM char BANNER[] = "\r\nTinyAPRS Firmware 1.1.0 (f%da%d-%d) BG5HHP\r\n"; +static const PROGMEM char BANNER[] = "\r\nTinyAPRS Firmware 1.1.1 (f%da%d-%d) BG5HHP\r\n"; static const PROGMEM char RESTRICTIONS[] = "Non-Commercial Use Only, All Rights Reserved.\r\n"; static const PROGMEM char COPYRIGHTS[] = "Copyright 2015-2017, BG5HHP(shawn.chain@gmail.com)\r\n"; static bool cmd_info(Serial* pSer, char* value, size_t len){