I want to interface LCD in 8 bit mode but it can not initializes. bellow is my initialization function please help me to solve this problem.
void Lcd_Init() { Lcd_command (0x30); MSdelay(50); Lcd_command (0x30); MSdelay(50); Lcd_command (0x30); MSdelay(50); Lcd_command (0x38); MSdelay(10); Lcd_command (0x0e); MSdelay(10); Lcd_command (0x01); MSdelay(10); Lcd_command (0x06); MSdelay(10); Lcd_command(0x80); MSdelay(10);
}