wiced: add more STM32F4 versions to set baudrate function. Enables BCM94343WWCD1/2 platforms. Thanks to Venkat

This commit is contained in:
Matthias Ringwald 2018-06-10 20:02:05 +02:00
parent bce48a2655
commit 7e4bff8292

View File

@ -291,7 +291,7 @@ static void btstack_uart_block_wiced_set_block_sent( void (*block_handler)(void)
static int btstack_uart_block_wiced_set_baudrate(uint32_t baudrate){
#if defined(_STM32F205RGT6_) || defined(STM32F40_41xxx)
#if defined(_STM32F205RGT6_) || defined(STM32F40_41xxx) || defined(STM32F411xE) || (STM32F412xG)
// directly use STM peripheral functions to change baud rate dynamically
@ -382,4 +382,4 @@ static const btstack_uart_block_t btstack_uart_block_wiced = {
const btstack_uart_block_t * btstack_uart_block_wiced_instance(void){
return &btstack_uart_block_wiced;
}
}