Unable to init PA1 with ADC1 with no HAL or LL STM32F103C6T8 bluepill
I am writing a bare-metal ADC driver from scratch and the issue that I am getting is on reading the value from PA1.Here is my adc.c lib that I wrote.#include "adc.h" void ADC1_ADC_Init(void) { RCC->APB2ENR |= (1U << 2U); // IOPAEN I/O port A c...