/* enable ADC interrupts */
HAL_NVIC_SetPriority(ADC1_IRQn, 0x05, 0x00);
HAL_NVIC_EnableIRQ(ADC1_IRQn);I have an analog input connected to the ADC1 on the SensorTile evaluation board and would like to run the ADC in interrupt mode. I mostly follow th...