EVB9S12NE64 hyperterminal settings

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

EVB9S12NE64 hyperterminal settings

1,122 Views
Ed22
Contributor I
Hi,

I've got an Axiom EVB9S12NE64, and I wish to communicate with the serial monitor, using HyperTerminal. What are the correct settings for baud rate, parity, data bits, stop bits and flow control? I can't find the information anywhere on the included documentation. Thank you.
Labels (1)
0 Kudos
1 Reply

288 Views
UK_CF_FAE
NXP Employee
NXP Employee
Hi Ed22,
 
It has been a real long time since I used the NE64, but going back to a project that I had:
 
ne64debug.c:
 
//===================================================
void InitDebug(void)
{
#define BAUD_RATE    115200
 
#define BAUD_DIV     ECLK/16/BAUD_RATE
 
  SCIBD= BAUD_DIV;
  SCICR1= 0;
  SCICR2= SCI1CR2_TE_MASK | SCI1CR2_RE_MASK | SCI1CR2_RWU_MASK ;
}
 
I'd go for 115200 8N1 No flow control. Sometimes, though, you just have to make a few guesses.
 
No doubt, you will let us all know how you get on.
 
 
Mark
0 Kudos