Lines Matching refs:uart_initstruct

35         .uart_initstruct.Baudrate = 115200,         \
36 .uart_initstruct.DataBits = UART_DATA_8BIT, \
37 .uart_initstruct.Parity = UART_PARITY_NONE, \
38 .uart_initstruct.StopBits = UART_STOP_1BIT, \
39 .uart_initstruct.RXThreshold = 0, \
40 .uart_initstruct.RXThresholdIEn = 1, \
41 .uart_initstruct.TXThresholdIEn = 0, \
42 .uart_initstruct.TimeoutTime = 10, \
43 .uart_initstruct.TimeoutIEn = 1, \
55 .uart_initstruct.Baudrate = 115200, \
56 .uart_initstruct.DataBits = UART_DATA_8BIT, \
57 .uart_initstruct.Parity = UART_PARITY_NONE, \
58 .uart_initstruct.StopBits = UART_STOP_1BIT, \
59 .uart_initstruct.RXThreshold = 0, \
60 .uart_initstruct.RXThresholdIEn = 1, \
61 .uart_initstruct.TXThresholdIEn = 0, \
62 .uart_initstruct.TimeoutTime = 10, \
63 .uart_initstruct.TimeoutIEn = 1, \
75 .uart_initstruct.Baudrate = 115200, \
76 .uart_initstruct.DataBits = UART_DATA_8BIT, \
77 .uart_initstruct.Parity = UART_PARITY_NONE, \
78 .uart_initstruct.StopBits = UART_STOP_1BIT, \
79 .uart_initstruct.RXThreshold = 0, \
80 .uart_initstruct.RXThresholdIEn = 1, \
81 .uart_initstruct.TXThresholdIEn = 0, \
82 .uart_initstruct.TimeoutTime = 10, \
83 .uart_initstruct.TimeoutIEn = 1, \
95 .uart_initstruct.Baudrate = 115200, \
96 .uart_initstruct.DataBits = UART_DATA_8BIT, \
97 .uart_initstruct.Parity = UART_PARITY_NONE, \
98 .uart_initstruct.StopBits = UART_STOP_1BIT, \
99 .uart_initstruct.RXThreshold = 0, \
100 .uart_initstruct.RXThresholdIEn = 1, \
101 .uart_initstruct.TXThresholdIEn = 0, \
102 .uart_initstruct.TimeoutTime = 10, \
103 .uart_initstruct.TimeoutIEn = 1, \
114 UART_InitStructure uart_initstruct; member
165 uart_cfg->uart_initstruct.Baudrate = configure->baud_rate; in swm_uart_configure()
169 uart_cfg->uart_initstruct.DataBits = UART_DATA_8BIT; in swm_uart_configure()
172 uart_cfg->uart_initstruct.DataBits = UART_DATA_9BIT; in swm_uart_configure()
175 uart_cfg->uart_initstruct.DataBits = UART_DATA_8BIT; in swm_uart_configure()
181 uart_cfg->uart_initstruct.StopBits = UART_STOP_1BIT; in swm_uart_configure()
184 uart_cfg->uart_initstruct.StopBits = UART_STOP_2BIT; in swm_uart_configure()
187 uart_cfg->uart_initstruct.StopBits = UART_STOP_1BIT; in swm_uart_configure()
193 uart_cfg->uart_initstruct.Parity = UART_PARITY_NONE; in swm_uart_configure()
196 uart_cfg->uart_initstruct.Parity = UART_PARITY_ODD; in swm_uart_configure()
199 uart_cfg->uart_initstruct.Parity = UART_PARITY_EVEN; in swm_uart_configure()
202 uart_cfg->uart_initstruct.Parity = UART_PARITY_NONE; in swm_uart_configure()
206 UART_Init(uart_cfg->UARTx, &(uart_cfg->uart_initstruct)); in swm_uart_configure()