diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-08-25 12:08:33 -0600 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-08-25 12:08:33 -0600 |
commit | 9a5f6c0de0920390d34dae6aeff5a5c1dbd1e3cd (patch) | |
tree | 40193c4e218ac8c35f703d992002adc603be1ab6 /watch-library | |
parent | d7544276df64e7b2648989d0b0c91471f96f87dd (diff) | |
download | Sensor-Watch-9a5f6c0de0920390d34dae6aeff5a5c1dbd1e3cd.tar.gz Sensor-Watch-9a5f6c0de0920390d34dae6aeff5a5c1dbd1e3cd.tar.bz2 Sensor-Watch-9a5f6c0de0920390d34dae6aeff5a5c1dbd1e3cd.zip |
disable all RTC tamper interrupts by default
Diffstat (limited to 'watch-library')
-rw-r--r-- | watch-library/config/hpl_rtc_config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/watch-library/config/hpl_rtc_config.h b/watch-library/config/hpl_rtc_config.h index 582a1c23..9085ca37 100644 --- a/watch-library/config/hpl_rtc_config.h +++ b/watch-library/config/hpl_rtc_config.h @@ -114,14 +114,14 @@ // <e> RTC Tamper Input 2 settings // <id> tamper_input_2_settings #ifndef CONF_TAMPER_INPUT_2_SETTINGS -#define CONF_TAMPER_INPUT_2_SETTINGS 1 +#define CONF_TAMPER_INPUT_2_SETTINGS 0 #endif // <q> Tamper Level Settings // <i> Indicates Tamper input 2 level // <id> tamper_level_2 #ifndef CONF_RTC_TAMP_LVL_2 -#define CONF_RTC_TAMP_LVL_2 1 +#define CONF_RTC_TAMP_LVL_2 0 #endif // <o> RTC Tamper Input Action @@ -132,7 +132,7 @@ // <i> These bits define the RTC Tamper Input Action to be performed // <id> rtc_tamper_input_action_2 #ifndef CONF_RTC_TAMPER_INACT_2 -#define CONF_RTC_TAMPER_INACT_2 1 +#define CONF_RTC_TAMPER_INACT_2 0 #endif // <q> Debounce Enable for Tamper Input |