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.

CC1354P10: Confirmation on GPIO Config/Mux for CC1190

Part Number: CC1354P10
Other Parts Discussed in Thread: CC1190

Hi there,

   Could you please confirm, if below is correct or not for the PA muxiing? 

   (CC1354P10 with latest simplelink sdk, and with CC1190 as a PA).

   

void PAInit(void)
{
    // LNA Pin
    GPIO_setConfigAndMux(CONFIG_GPIO_BOLT_LNA,GPIO_CFG_OUT_STD | GPIO_CFG_OUT_HIGH,IOC_PORT_RFC_GPO0);
    // PA Enable
    GPIO_setConfigAndMux(CONFIG_GPIO_BOLT_PA,GPIO_CFG_OUT_STD | GPIO_CFG_OUT_HIGH,IOC_PORT_RFC_GPO1);
    // HGM
    GPIO_setConfig(CONFIG_GPIO_BOLT_HGM, GPIO_CFG_OUT_STD | GPIO_CFG_OUT_HIGH);
}