MDF Output Incorrect
Hi,
I am programming my STM32U5 that using MDF to filter the ADC value and transfer to memory with GPDMA.
My problem is the output of the MDF is very different from the ADC output, and the MDF output keep fluctuating, but my adc value should be stable. Is it anything wrong with my ADC/MDF setting?
My code:
HAL_ADC_Start(&hadc1);
MdfDMAConfig.Address = data;
MdfDMAConfig.DataLength = 6;
MdfDMAConfig.MsbOnly = DISABLE;
HAL_MDF_AcqStart_DMA(&MdfHandle0, &MdfFilterConfig0, &MdfDMAConfig);
My ADC Setting:



My MDF Setting:

My GPDMA Setting:


My ADC Reading:

My MDF Reading:

Thank you so much!!!!
