We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5d32b5d + 0fc2211 commit e6b5feaCopy full SHA for e6b5fea
bsp/ls2kdev/drivers/drv_uart.c
@@ -22,16 +22,15 @@
22
23
#define TRUE 1
24
#define FALSE 0
25
-const struct serial_configure config_uart0 =
26
-{
27
- BAUD_RATE_115200, /* 921600 bits/s */
28
- DATA_BITS_8, /* 8 databits */
29
- STOP_BITS_1, /* 1 stopbit */
30
- PARITY_NONE, /* No parity */
31
- BIT_ORDER_LSB, /* LSB first sent */
32
- NRZ_NORMAL, /* Normal mode */
33
- RT_SERIAL_RB_BUFSZ, /* Buffer size */
34
- 0
+const struct serial_configure config_uart0 = {
+ BAUD_RATE_115200, /* 921600 bits/s */
+ DATA_BITS_8, /* 8 databits */
+ STOP_BITS_1, /* 1 stopbit */
+ PARITY_NONE, /* No parity */
+ BIT_ORDER_LSB, /* LSB first sent */
+ NRZ_NORMAL, /* Normal mode */
+ RT_SERIAL_RB_BUFSZ, /* Buffer size */
+ 0
35
};
36
struct rt_uart_ls2k
37
{
0 commit comments