Commit 301fe805 authored by Damien George's avatar Damien George

stm32/mpbtstackport: Allow chipset and secondary baudrate to be set.

Signed-off-by: default avatarDamien George <damien@micropython.org>
parent 89cb2c6b
......@@ -185,6 +185,7 @@ extern struct _spi_bdev_t spi_bdev2;
// Bluetooth config
#define MICROPY_HW_BLE_UART_ID (PYB_UART_6)
#define MICROPY_HW_BLE_UART_BAUDRATE (115200)
#define MICROPY_HW_BLE_UART_BAUDRATE_SECONDARY (3000000)
/******************************************************************************/
// Bootloader configuration
......
......@@ -58,7 +58,7 @@ uint32_t hal_time_ms(void) {
STATIC const hci_transport_config_uart_t hci_transport_config_uart = {
HCI_TRANSPORT_CONFIG_UART,
MICROPY_HW_BLE_UART_BAUDRATE,
3000000,
MICROPY_HW_BLE_UART_BAUDRATE_SECONDARY,
0,
NULL,
};
......@@ -90,9 +90,9 @@ void mp_bluetooth_btstack_port_init(void) {
const hci_transport_t *transport = hci_transport_h4_instance(&mp_bluetooth_btstack_hci_uart_block);
hci_init(transport, &hci_transport_config_uart);
// TODO: Probably not necessary for BCM (we have our own firmware loader in the cyw43 driver),
// but might be worth investigating for other controllers in the future.
// hci_set_chipset(btstack_chipset_bcm_instance());
#ifdef MICROPY_HW_BLE_BTSTACK_CHIPSET_INSTANCE
hci_set_chipset(MICROPY_HW_BLE_BTSTACK_CHIPSET_INSTANCE);
#endif
}
void mp_bluetooth_btstack_port_deinit(void) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment