I have a B-L475E-IOT01A. I am having issues reading value into the ADC. My values change but only slightly. I am testing it a POT from 0 to 3.3V as verfied by an volt meter.
I seem to have things configured correctly. This is the bulk of my code: while (1) { /* USER CODE END WHILE */ /* USER CODE BEGIN 3 */ HAL_ADC_Start(&hadc1); while (HAL_ADC_PollForConversion(&hadc1, HAL_MAX_DELAY) != HAL_OK); ad...