diff --git a/main.c b/main.c index 7660dd7..2b1405e 100644 --- a/main.c +++ b/main.c @@ -49,9 +49,9 @@ void ADC0_Init(void) { SYSCTL_RCGCGPIO_R |= 0x10; // Enable clock for Port E // while ((SYSCTL_PRGPIO_R & (1U << 4)) == 0); // Wait for Port E to be ready - GPIO_PORTE_AFSEL_R |= (1U << 3); // Enable alternate function on PE3 - GPIO_PORTE_DEN_R &= ~(1U << 3); // Disable digital I/O on PE3 - GPIO_PORTE_AMSEL_R |= (1U << 3); // Enable analog function on PE3 + GPIO_PORTE_AFSEL_R |= 0x08; // Enable alternate function on PE3 + GPIO_PORTE_DEN_R &= ~(1U << 3); // Disable digital I/O on PE3 // GPIO_PORTE_DEN_R &= ~(0x08); + GPIO_PORTE_AMSEL_R |= 0x08; // Enable analog function on PE3 ADC0_ACTSS_R &= ~8; // Disable sample sequencer 3 ADC0_EMUX_R = (ADC0_EMUX_R & 0xFFFF0FFF); // Software trigger for SS3