ADC implementation with DMA in STM32G431 using LL_DMA API functions and Zephyr framework
Dear AllI am working on STM32G431 trying to implement ADC using DMA in Zephyr framework.Below is my code,#include <zephyr.h> #include <sys/printk.h> #include <drivers/adc.h> #include <stm32g4xx_ll_system.h> #include <stm32g4xx_ll_dma.h> #...