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.

GPIO_PinConfig, GPIO_setConfig and MSP432 launchpad

I am having trouble finding an example on how to use the new GPIO_setConfig in TI-RTOS 2.12 using the MSP432 launchpad and CCS.

I have read the migration guide on the wiki but the example is not for ARM.

Say I wanted just to set an outputpin high (say P1.6). How would I do that?

I suspect something like the following, but the function would like a pin-number but then what about the port?

GPIO_PinConfig gpioOUT = GPIO_CFG_OUT_STD | GPIO_CFG_OUT_STR_HIGH | GPIO_CFG_OUT_HIGH;
GPIO_setConfig(???, gpioOUT);

On ARM we need to specify both port and pin.

Kind regards

Anders