Tool/software: Code Composer Studio
Hi,
I have an application that requires the GPIO pin of booster pack of EVM 430-FR6047 v1.0 to toggle.
I have chosen P7.5 and have adopted the following code(attached herewithin).
But unfortunately,the pin is not toggling instead its staying high.
Can i get some help?
#include <msp430.h>
#include <driverlib.h>
#include <stdint.h>
void SerialGPIOInit(void);
void main(void)
{
SerialGPIOInit();
}
void SerialGPIOInit(void)
{
GPIO_toggleOutputOnPin(GPIO_PORT_P7,GPIO_PIN5);
}
Best Regards,
Divya Harikumar