EVB9S12NE64 hyperterminal settings

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

EVB9S12NE64 hyperterminal settings

1,523件の閲覧回数
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.
ラベル(1)
0 件の賞賛
返信
1 返信

689件の閲覧回数
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 件の賞賛
返信