hello,
iam trying to communicate on hyperterminal from aduc7026 board but iam receiving some bad character on hyper terminal.SO PLEASE help me to come out of problem.program is shown below
#include<aduc7026.h>
void init_uart(void);
int main()
{
static int i;
unsigned char c[]="HELLO";
init_uart();
for(i=0;i<5;i++)
{
while((COMSTA & TEMT)==0)
COMTX=c;
}