ADC Measurment: Introduce ADC_PT1000_WATCHDOG_SAMPLE_COUNT in order to filter out false Watchdog errors produces by EMI problems"
This commit is contained in:
parent
b9a38549dc
commit
ffe195d7b2
@ -322,6 +322,7 @@ static inline __attribute__((optimize("O3"))) float adc_pt1000_dma_avg_pre_filte
|
|||||||
void ADC_IRQHandler(void)
|
void ADC_IRQHandler(void)
|
||||||
{
|
{
|
||||||
uint32_t adc1_sr;
|
uint32_t adc1_sr;
|
||||||
|
static uint32_t watchdog_errors;
|
||||||
|
|
||||||
adc1_sr = ADC1->SR;
|
adc1_sr = ADC1->SR;
|
||||||
|
|
||||||
@ -330,10 +331,16 @@ void ADC_IRQHandler(void)
|
|||||||
pt1000_error |= ADC_PT1000_OVERFLOW;
|
pt1000_error |= ADC_PT1000_OVERFLOW;
|
||||||
/* Disable ADC in case of overrrun*/
|
/* Disable ADC in case of overrrun*/
|
||||||
adc_pt1000_disable();
|
adc_pt1000_disable();
|
||||||
|
|
||||||
|
if (!(adc1_sr & ADC_SR_AWD)) {
|
||||||
|
watchdog_errors = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (adc1_sr & ADC_SR_AWD) {
|
if (adc1_sr & ADC_SR_AWD) {
|
||||||
ADC1->SR &= ~ADC_SR_AWD;
|
ADC1->SR &= ~ADC_SR_AWD;
|
||||||
|
watchdog_errors++;
|
||||||
|
if (watchdog_errors >= ADC_PT1000_WATCHDOG_SAMPLE_COUNT)
|
||||||
pt1000_error |= ADC_PT1000_WATCHDOG_ERROR;
|
pt1000_error |= ADC_PT1000_WATCHDOG_ERROR;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -59,6 +59,12 @@
|
|||||||
*/
|
*/
|
||||||
#define ADC_PT1000_UPPER_WATCHDOG 4000U
|
#define ADC_PT1000_UPPER_WATCHDOG 4000U
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Number of ADC samples the value has to be outside the Watchdog limit (@ref ADC_PT1000_UPPER_WATCHDOG and @ref ADC_PT1000_LOWER_WATCHDOG)
|
||||||
|
* in order to produce a watchdog error
|
||||||
|
*/
|
||||||
|
#define ADC_PT1000_WATCHDOG_SAMPLE_COUNT 10U
|
||||||
|
|
||||||
enum adc_pt1000_error {ADC_PT1000_NO_ERR= 0, ADC_PT1000_WATCHDOG_ERROR=(1UL<<0), ADC_PT1000_OVERFLOW=(1UL<<1), ADC_PT1000_INACTIVE = (1UL<<2)};
|
enum adc_pt1000_error {ADC_PT1000_NO_ERR= 0, ADC_PT1000_WATCHDOG_ERROR=(1UL<<0), ADC_PT1000_OVERFLOW=(1UL<<1), ADC_PT1000_INACTIVE = (1UL<<2)};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user