Hi Champs,
I like to know if AIOs can be input of the Input X-BAR. It's noted in TRM that Input X-BAR has access to every GPIO. AIOs are assigned to digital input #2xx which is GPIO_H, So i thought AIO can be the input of Input X-BAR. However, over the digital input #168 can NOT be selected as XBAR input in driverlib's XBAR_setInputPin() in xbar.h as following.
XBAR_setInputPin(XBAR_InputNum input, uint16_t pin)
{
//
// Check the argument.
//
ASSERT(pin <= 168U);
//
// Write the requested pin to the appropriate input select register.
//
EALLOW;
HWREGH(XBAR_INPUT_BASE + (uint16_t)input) = pin;
EDIS;
}
I couldn't find any clear document about it yet. Could anyone look into this, pls?
Thanks,
Steve