I'm trying to initialize the LCD but I'm in trouble, he gets the first line all connected and not write anything. My LCD is MGD1602-FL and this is my code
//
// MSP430 LCD Code
//
#include "msp430.h"
#define LCM_DIR P1DIR
#define LCM_OUT P1OUT
//
// Define symbolic LCM - MCU pin mappings
// We've set DATA PIN TO 4,5,6,7 for easy translation
//
#define LCM_PIN_RS BIT4 // P1.0
#define LCM_PIN_EN BIT5 // P1.1
#define LCM_PIN_D7 BIT0 // P1.7
#define LCM_PIN_D6 BIT1