#define cmd GPIO_PORTN_BASE
#define data GPIO_PORTF_DATA_R
#define rs GPIO_PIN_0
#define rw GPIO_PIN_1
GPIOPinWrite(cmd, rs,1);
SysCtlDelay(4000000);
GPIOPinWrite(cmd, rs,0);
SysCtlDelay(4000000);
Is it valid operation for blinking of PORTF.0 and PORTF.1 LED. as Led is connected with PORTF led.
if not then any suggestion to do the same.
Thanks