Above all, thanks to Bipom for a good job supporting us here!
Ok. Now I am trying to develop a simple monitor to read the
output in a serial port using LCD. I already have something. I have a MiniMax-51/C and LCD242. It works very well if I send manually data from Micro-IDE terminal or Hyperterminal....but, when I try to send data automatically..then..the most of the time,
it doesn\'t catch all the data. I mean, i.e. if I send printf("Connection Established"); my monitor only reads Coob.
If do it again, it reads the same thing.
I am using part of the Bipom LCD and serial code.
Here my Main:
main()
{
//serinit(SBR_9600);
serinit(28800);
InitLCD();
for(;
{
if (flag){
SetTopLine();
flag = 0;
} else {
SetBottomLine();
flag = 1;
}
for(i=1; i<25; i++){
a = getch();
putch( a );
WriteData(a);
}
}
}
Thanks!