Hi all,
Can CC3200 PIN29/30 be use for GPO purpose?
In datasheet have below description
8) This pin is reserved for WLAN antenna selection, controlling an external RF switch that multiplexes the RF pin of the CC3200 device between two antennas. These pins should not be
used for other functionalities in general.
But from SDK example for "antenna_selection" it just GPIO write for HI/LO
static void AntennaSelect(unsigned char ucAntNum)
{
if(ucAntNum == 1)
{
MAP_GPIOPinWrite(GPIOA3_BASE, 0xC, 0x8);
}
else if(ucAntNum == 2)
{
MAP_GPIOPinWrite(GPIOA3_BASE, 0xC, 0x4);
}
return;
}
If so, It it seems that can for GPO?
Can you help confirm it?
Ethan Chen