I'm a newbie. I am trying to use a timer to toggle a gpio pin. I thought I read that PF4 can be used as an output GPIO pin. So, I added the following line to
MSP_EXP432401Y.c
GPIO_PinConfig gpioPinConfigs[] = {
...
GPIOMSP432E4_PF4 | GPIO_CFG_OUT_STD | GPIO_CFG_OUT_STR_HIGH | GPIO_CFG_OUT_HIGH,
...
};
and in MSP_EXP432401Y.c : typedef enum MSP_EXP432E401Y_GPIOName {
MSP_EXP432E401Y_GPIO_PP4,
Well, the timer is working but instread of pin PF4 toggling, the LED on the board is toggling.
Lastly, in a similar manner as indicated above, I tried another GPIO pin, PP4, and it does not seem to be toggling when view on an o scope.
Any help would be appreciated.