The max supported UART baud rate of KW41Z

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

The max supported UART baud rate of KW41Z

645 Views
seanwu
Contributor IV

Dear Sir,

What is the max UART baud rage that KW41z could support? I tried 230400, and it works, and if KW41Z could support the baud rate exceed 230400?

Thanks.

BR,

Sean Wu.

Weikeng.

Labels (3)
Tags (1)
0 Kudos
1 Reply

564 Views
mario_castaneda
NXP TechSupport
NXP TechSupport

Hi, 

Please see the structure below.

/* Supported baudrates for UART */
typedef enum{
    gUARTBaudRate1200_c   =   1200UL,
    gUARTBaudRate2400_c   =   2400UL,
    gUARTBaudRate4800_c   =   4800UL,
    gUARTBaudRate9600_c   =   9600UL,
    gUARTBaudRate19200_c  =  19200UL,
    gUARTBaudRate38400_c  =  38400UL,
    gUARTBaudRate57600_c  =  57600UL,
    gUARTBaudRate115200_c = 115200UL,
    gUARTBaudRate230400_c = 230400UL
}serialUartBaudRate_t;

Hope it helps,

Regards,

Mario

0 Kudos