I am having some issues reading ADCIN[31].
According to 6.5.13 and 6.5 PINMMR174[24] should be Temperature Sensor Power Down Enable.
pinMuxReg->PINMUX[174] |= (uint32)(~(0XFEFFFFFFU)); Specifies
However ADCIN[31] cannot read a value unless the Temperature Sensor is Powered up:
pinMuxReg->PINMUX[174] &= (uint32)(0XFEFFFFFFU);
I didnt find any documentation around having to clear PINMMR174[24] to read ADCIN[31].
Does the Temperature Sensor Power need to be enabled to (PINMMR174[24] set) to read ADCIN[31]?
Thanks