Home
last modified time | relevance | path

Searched refs:uart_init_structure (Results 1 – 1 of 1) sorted by relevance

/btstack/platform/wiced/
H A Dbtstack_uart_block_wiced.c321 USART_InitTypeDef uart_init_structure; in btstack_uart_block_wiced_set_baudrate() local
322 uart_init_structure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; in btstack_uart_block_wiced_set_baudrate()
323 uart_init_structure.USART_BaudRate = baudrate; in btstack_uart_block_wiced_set_baudrate()
324 uart_init_structure.USART_WordLength = USART_WordLength_8b; in btstack_uart_block_wiced_set_baudrate()
325 uart_init_structure.USART_StopBits = USART_StopBits_1; in btstack_uart_block_wiced_set_baudrate()
326 uart_init_structure.USART_Parity = USART_Parity_No; in btstack_uart_block_wiced_set_baudrate()
329 uart_init_structure.USART_HardwareFlowControl = USART_HardwareFlowControl_RTS_CTS; in btstack_uart_block_wiced_set_baudrate()
331 uart_init_structure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; in btstack_uart_block_wiced_set_baudrate()
333 USART_Init(wiced_bt_uart_peripheral->port, &uart_init_structure); in btstack_uart_block_wiced_set_baudrate()