Hello Sir
I am getting error
compiling LCD interfacing in C.c...
LCD interfacing in C.c(9): warning C206: 'lcdcmd': missing
function-prototype
LCD interfacing in C.c(9): error C267: 'lcdcmd': requires ANSI-style
prototype
LCD interfacing in C.c - 1 Error(s), 1 Warning(s).
how to resolve the issue?
kindly anyone help...
my code is,
#include <reg51.h>
sfr ldata = 0x90;
sbit rs = P2^0;
sbit rw = P2^1;
sbit en = P2^2;
void main()
↧