From b97841fdae0a2114f814f177daf47d4db5ced036 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Sat, 28 Apr 2018 15:04:56 +0200 Subject: [PATCH] Delete I2C_WATCHDOG and always enable the watchdog. --- right/src/config.h | 2 -- right/src/init_peripherals.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/right/src/config.h b/right/src/config.h index 179a95d..063d374 100644 --- a/right/src/config.h +++ b/right/src/config.h @@ -3,6 +3,4 @@ // Macros: - #define I2C_WATCHDOG - #endif diff --git a/right/src/init_peripherals.c b/right/src/init_peripherals.c index 44136a3..ec01329 100644 --- a/right/src/init_peripherals.c +++ b/right/src/init_peripherals.c @@ -144,9 +144,7 @@ void InitPeripherals(void) initI2c(); InitTestLed(); LedPwm_Init(); -#ifdef I2C_WATCHDOG InitI2cWatchdog(); -#endif InitKeyDebouncer(); EEPROM_Init(); }