diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-08-25 12:14:30 -0600 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-08-25 12:14:30 -0600 |
commit | c35e8e2b07e971c587bda9a4c28a5916312fd4cd (patch) | |
tree | 04107545dd0ac04be7b36e19c7a7bb181d9dcc05 /watch-library/config | |
parent | df94a83bf5d4a72519849660a1a58b850ab9823c (diff) | |
download | Sensor-Watch-c35e8e2b07e971c587bda9a4c28a5916312fd4cd.tar.gz Sensor-Watch-c35e8e2b07e971c587bda9a4c28a5916312fd4cd.tar.bz2 Sensor-Watch-c35e8e2b07e971c587bda9a4c28a5916312fd4cd.zip |
disable all external interrupts by default
Diffstat (limited to 'watch-library/config')
-rw-r--r-- | watch-library/config/hpl_eic_config.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/watch-library/config/hpl_eic_config.h b/watch-library/config/hpl_eic_config.h index ca3ff672..46aba150 100644 --- a/watch-library/config/hpl_eic_config.h +++ b/watch-library/config/hpl_eic_config.h @@ -138,7 +138,7 @@ // <e> Interrupt 2 Settings // <id> eic_arch_enable_irq_setting2 #ifndef CONF_EIC_ENABLE_IRQ_SETTING2 -#define CONF_EIC_ENABLE_IRQ_SETTING2 1 +#define CONF_EIC_ENABLE_IRQ_SETTING2 0 #endif // <q> External Interrupt 2 Filter Enable @@ -165,7 +165,7 @@ // <i> This defines input sense trigger // <id> eic_arch_sense2 #ifndef CONF_EIC_SENSE2 -#define CONF_EIC_SENSE2 EIC_NMICTRL_NMISENSE_RISE_Val +#define CONF_EIC_SENSE2 EIC_NMICTRL_NMISENSE_NONE_Val #endif // <q> External Interrupt 2 Asynchronous Edge Detection Mode @@ -306,7 +306,7 @@ // <e> Interrupt 6 Settings // <id> eic_arch_enable_irq_setting6 #ifndef CONF_EIC_ENABLE_IRQ_SETTING6 -#define CONF_EIC_ENABLE_IRQ_SETTING6 1 +#define CONF_EIC_ENABLE_IRQ_SETTING6 0 #endif // <q> External Interrupt 6 Filter Enable @@ -333,7 +333,7 @@ // <i> This defines input sense trigger // <id> eic_arch_sense6 #ifndef CONF_EIC_SENSE6 -#define CONF_EIC_SENSE6 EIC_NMICTRL_NMISENSE_RISE_Val +#define CONF_EIC_SENSE6 EIC_NMICTRL_NMISENSE_NONE_Val #endif // <q> External Interrupt 6 Asynchronous Edge Detection Mode @@ -348,7 +348,7 @@ // <e> Interrupt 7 Settings // <id> eic_arch_enable_irq_setting7 #ifndef CONF_EIC_ENABLE_IRQ_SETTING7 -#define CONF_EIC_ENABLE_IRQ_SETTING7 1 +#define CONF_EIC_ENABLE_IRQ_SETTING7 0 #endif // <q> External Interrupt 7 Filter Enable @@ -375,7 +375,7 @@ // <i> This defines input sense trigger // <id> eic_arch_sense7 #ifndef CONF_EIC_SENSE7 -#define CONF_EIC_SENSE7 EIC_NMICTRL_NMISENSE_RISE_Val +#define CONF_EIC_SENSE7 EIC_NMICTRL_NMISENSE_NONE_Val #endif // <q> External Interrupt 7 Asynchronous Edge Detection Mode |