Lines Matching refs:uart_initstruct
33 .uart_initstruct.Baudrate = 115200, \
34 .uart_initstruct.DataBits = UART_DATA_8BIT, \
35 .uart_initstruct.Parity = UART_PARITY_NONE, \
36 .uart_initstruct.StopBits = UART_STOP_1BIT, \
37 .uart_initstruct.RXThreshold = 0, \
38 .uart_initstruct.RXThresholdIEn = 1, \
39 .uart_initstruct.TXThresholdIEn = 0, \
40 .uart_initstruct.TimeoutTime = 10, \
41 .uart_initstruct.TimeoutIEn = 1, \
53 .uart_initstruct.Baudrate = 115200, \
54 .uart_initstruct.DataBits = UART_DATA_8BIT, \
55 .uart_initstruct.Parity = UART_PARITY_NONE, \
56 .uart_initstruct.StopBits = UART_STOP_1BIT, \
57 .uart_initstruct.RXThreshold = 0, \
58 .uart_initstruct.RXThresholdIEn = 1, \
59 .uart_initstruct.TXThresholdIEn = 0, \
60 .uart_initstruct.TimeoutTime = 10, \
61 .uart_initstruct.TimeoutIEn = 1, \
73 .uart_initstruct.Baudrate = 115200, \
74 .uart_initstruct.DataBits = UART_DATA_8BIT, \
75 .uart_initstruct.Parity = UART_PARITY_NONE, \
76 .uart_initstruct.StopBits = UART_STOP_1BIT, \
77 .uart_initstruct.RXThreshold = 0, \
78 .uart_initstruct.RXThresholdIEn = 1, \
79 .uart_initstruct.TXThresholdIEn = 0, \
80 .uart_initstruct.TimeoutTime = 10, \
81 .uart_initstruct.TimeoutIEn = 1, \
93 .uart_initstruct.Baudrate = 115200, \
94 .uart_initstruct.DataBits = UART_DATA_8BIT, \
95 .uart_initstruct.Parity = UART_PARITY_NONE, \
96 .uart_initstruct.StopBits = UART_STOP_1BIT, \
97 .uart_initstruct.RXThreshold = 0, \
98 .uart_initstruct.RXThresholdIEn = 1, \
99 .uart_initstruct.TXThresholdIEn = 0, \
100 .uart_initstruct.TimeoutTime = 10, \
101 .uart_initstruct.TimeoutIEn = 1, \
112 UART_InitStructure uart_initstruct; member
163 uart_cfg->uart_initstruct.Baudrate = configure->baud_rate; in swm_uart_configure()
167 uart_cfg->uart_initstruct.DataBits = UART_DATA_8BIT; in swm_uart_configure()
170 uart_cfg->uart_initstruct.DataBits = UART_DATA_9BIT; in swm_uart_configure()
173 uart_cfg->uart_initstruct.DataBits = UART_DATA_8BIT; in swm_uart_configure()
179 uart_cfg->uart_initstruct.StopBits = UART_STOP_1BIT; in swm_uart_configure()
182 uart_cfg->uart_initstruct.StopBits = UART_STOP_2BIT; in swm_uart_configure()
185 uart_cfg->uart_initstruct.StopBits = UART_STOP_1BIT; in swm_uart_configure()
191 uart_cfg->uart_initstruct.Parity = UART_PARITY_NONE; in swm_uart_configure()
194 uart_cfg->uart_initstruct.Parity = UART_PARITY_ODD; in swm_uart_configure()
197 uart_cfg->uart_initstruct.Parity = UART_PARITY_EVEN; in swm_uart_configure()
200 uart_cfg->uart_initstruct.Parity = UART_PARITY_NONE; in swm_uart_configure()
204 UART_Init(uart_cfg->UARTx, &(uart_cfg->uart_initstruct)); in swm_uart_configure()