Commit f34e5872 authored by Christos Gentsos's avatar Christos Gentsos

Main: enable INT 1, disable INT 10 (fixes issue with FAN1 RPM)

parent 21c51224
Pipeline #2980 failed with stage
in 0 seconds
...@@ -204,8 +204,8 @@ drivers: ...@@ -204,8 +204,8 @@ drivers:
api: HAL:Driver:Ext_IRQ api: HAL:Driver:Ext_IRQ
configuration: configuration:
eic_arch_enable_irq_setting0: true eic_arch_enable_irq_setting0: true
eic_arch_enable_irq_setting1: false eic_arch_enable_irq_setting1: true
eic_arch_enable_irq_setting10: true eic_arch_enable_irq_setting10: false
eic_arch_enable_irq_setting11: false eic_arch_enable_irq_setting11: false
eic_arch_enable_irq_setting12: false eic_arch_enable_irq_setting12: false
eic_arch_enable_irq_setting13: true eic_arch_enable_irq_setting13: true
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
// <e> Interrupt 1 Settings // <e> Interrupt 1 Settings
// <id> eic_arch_enable_irq_setting1 // <id> eic_arch_enable_irq_setting1
#ifndef CONF_EIC_ENABLE_IRQ_SETTING1 #ifndef CONF_EIC_ENABLE_IRQ_SETTING1
#define CONF_EIC_ENABLE_IRQ_SETTING1 0 #define CONF_EIC_ENABLE_IRQ_SETTING1 1
#endif #endif
// <q> External Interrupt 1 Event Output Enable // <q> External Interrupt 1 Event Output Enable
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
// <i> Indicates whether the external interrupt 1 wake-up is enabled or not // <i> Indicates whether the external interrupt 1 wake-up is enabled or not
// <id> eic_arch_wakeupen1 // <id> eic_arch_wakeupen1
#ifndef CONF_EIC_WAKEUPEN1 #ifndef CONF_EIC_WAKEUPEN1
#define CONF_EIC_WAKEUPEN1 0 #define CONF_EIC_WAKEUPEN1 1
#endif #endif
// <q> External Interrupt 1 Filter Enable // <q> External Interrupt 1 Filter Enable
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
// <i> This defines input sense trigger // <i> This defines input sense trigger
// <id> eic_arch_sense1 // <id> eic_arch_sense1
#ifndef CONF_EIC_SENSE1 #ifndef CONF_EIC_SENSE1
#define CONF_EIC_SENSE1 EIC_NMICTRL_NMISENSE_NONE_Val #define CONF_EIC_SENSE1 EIC_NMICTRL_NMISENSE_FALL_Val
#endif #endif
// </e> // </e>
...@@ -439,7 +439,7 @@ ...@@ -439,7 +439,7 @@
// <e> Interrupt 10 Settings // <e> Interrupt 10 Settings
// <id> eic_arch_enable_irq_setting10 // <id> eic_arch_enable_irq_setting10
#ifndef CONF_EIC_ENABLE_IRQ_SETTING10 #ifndef CONF_EIC_ENABLE_IRQ_SETTING10
#define CONF_EIC_ENABLE_IRQ_SETTING10 1 #define CONF_EIC_ENABLE_IRQ_SETTING10 0
#endif #endif
// <q> External Interrupt 10 Event Output Enable // <q> External Interrupt 10 Event Output Enable
...@@ -453,7 +453,7 @@ ...@@ -453,7 +453,7 @@
// <i> Indicates whether the external interrupt 10 wake-up is enabled or not // <i> Indicates whether the external interrupt 10 wake-up is enabled or not
// <id> eic_arch_wakeupen10 // <id> eic_arch_wakeupen10
#ifndef CONF_EIC_WAKEUPEN10 #ifndef CONF_EIC_WAKEUPEN10
#define CONF_EIC_WAKEUPEN10 1 #define CONF_EIC_WAKEUPEN10 0
#endif #endif
// <q> External Interrupt 10 Filter Enable // <q> External Interrupt 10 Filter Enable
...@@ -473,7 +473,7 @@ ...@@ -473,7 +473,7 @@
// <i> This defines input sense trigger // <i> This defines input sense trigger
// <id> eic_arch_sense10 // <id> eic_arch_sense10
#ifndef CONF_EIC_SENSE10 #ifndef CONF_EIC_SENSE10
#define CONF_EIC_SENSE10 EIC_NMICTRL_NMISENSE_FALL_Val #define CONF_EIC_SENSE10 EIC_NMICTRL_NMISENSE_NONE_Val
#endif #endif
// </e> // </e>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment