Browse Source

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

Signed-off-by: Damien George <damien@micropython.org>
pull/6917/head
Damien George 4 years ago
parent
commit
301fe805ca
  1. 1
      ports/stm32/boards/PYBD_SF2/mpconfigboard.h
  2. 8
      ports/stm32/mpbtstackport.c

1
ports/stm32/boards/PYBD_SF2/mpconfigboard.h

@ -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

8
ports/stm32/mpbtstackport.c

@ -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) {

Loading…
Cancel
Save