uart in mpc5604B

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

uart in mpc5604B

1,135件の閲覧回数
liweimin
Contributor II

This is my code , But it cannot enter UART mode,Could you please tell me Where is the problem? Thanks in advance for your kindly help!

LINFLEX_1.LINCR1.B.INIT = 1;    /* Put LINFlex hardware in init mode */

LINFLEX_1.UARTCR.B.UART = 1;    /* Select UART Mode */

LINFLEX_1.UARTCR.R = 0x23;      /* Receive Enable ,8-bit Data, Parity Disable*/

LINFLEX_1.LINIER.B.DRIE = 1;    /* Receive Interrupt Enable */

LINFLEX_1.LINIBRR.B.DIV_M= 0x1B4E; /* Mantissa baud rate divider component */

LINFLEX_1.LINFBRR.B.DIV_F = 0x8; /* Fraction baud rate divider comonent */

LINFLEX_1.LINCR1.R= 0x00000000; /* Configure module as LIN master & header */

タグ(1)
0 件の賞賛
返信
1 返信

954件の閲覧回数
martin_kovar
NXP Employee
NXP Employee

Hi Li weimin,

Before you are able to switch to UART mode, you have to switch LIN to initialization mode.

Add line LINFLEX_1.LINCR1.B.SLEEP = 0; under the line LINFLEX_1.LINCR1.B.INIT = 1; then it should run.

Do not forget to switch LIN back from initialization mode after you configure all functionality.

Regards,

Martin

0 件の賞賛
返信