Hi,I would like to use ADC1_IN5, ADC1_IN6 and ADC1_IN7 on my STM32U575. To init ADC1 I have:hadc1.Instance = ADC1;
hadc1.Init.ClockPrescaler = ADC_CLOCK_ASYNC_DIV1;
hadc1.Init.Resolution = ADC_RESOLUTION_8B;
hadc1.Init.ScanConvMode = ADC_SCAN_E...
I need to use FDCAN to send CAN messages. Since I want to receive each message (without filters) I do this :sFilterConfig.IdType = FDCAN_STANDARD_ID;
sFilterConfig.FilterIndex = 0;
sFilterConfig.FilterType = FDCAN_FILTER_DUAL;
sFilterConfig.FilterCon...
Hello,Thank you for your answer. I don't use DMA, and I have already tested to increase the SamplingTime and the timeout parameter.You can reproduce my problem with the example "ADC_DifferentielMode", puting a breakpoint on the call of Error_Handler(...
Hi,Have you seen examples on STM32CubeIDE ? In your workspace: New->STM32Projet. In the new windows clic on example selector, you can chose your device and you have a lot of examples.Good luck :)