Hello, I created a simple ADC project for the STM32F302R8, for polling operation it works, when I add an interrupt, the value is not read. I attach the code and ask for any suggestions.
#include <stdint.h>#include <stdio.h>#include "stm32f302x8.h"void delay1(void);volatile uint32_t value;int main(void){ RCC->AHBENR = 1U<<28; RCC->AHBENR |= 1U<<17; GPIOA->MODER |= (1U<<8); //ADC1_IN5 GPIOA->MODER |= (1U<<9); ADC1_COMMON->CC...