This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC3200 PIN29/30 for ANTSEL1 and ANTSEL2 that Can be use for GPO?

Other Parts Discussed in Thread: CC3200

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