I am trying to get the ADC Channel 0 to work on the LaunchPad, I have used Pinmux and am not using UART anywhere.
But it still seems to think it is set to UART, as when I remove the UART Jumpers it effects ADC readings.
Here is PinMux
void PinMuxConfig(void) { // // Enable Peripheral Clocks // PRCMPeripheralClkEnable(PRCM_ADC, PRCM_RUN_MODE_CLK); // // Configure PIN_57 for ADC0 ADC_CH0 // PinTypeADC(PIN_57, PIN_MODE_255); // // Configure PIN_58 for ADC0 ADC_CH1 // PinTypeADC(PIN_58, PIN_MODE_255); // // Configure PIN_59 for ADC0 ADC_CH2 // PinTypeADC(PIN_59, PIN_MODE_255); // // Configure PIN_60 for ADC0 ADC_CH3 // PinTypeADC(PIN_60, PIN_MODE_255); }
What do I need to do to use ADC Channel 0 on the CC3200 LaunchPad?
Glenn.