From a2f998ed80e623641b77932b90169fddf7dabd89 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Mon, 23 Nov 2020 23:31:44 +0100 Subject: [PATCH] msp432p401lp-cc256x: use 3mbps as main baudrate, comment hci dump --- port/msp432p401lp-cc256x/main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/port/msp432p401lp-cc256x/main.c b/port/msp432p401lp-cc256x/main.c index b34b6bf0e..4e3b75407 100755 --- a/port/msp432p401lp-cc256x/main.c +++ b/port/msp432p401lp-cc256x/main.c @@ -32,7 +32,7 @@ static void delay_ms(uint32_t ms); static hci_transport_config_uart_t config = { HCI_TRANSPORT_CONFIG_UART, 115200, - 460800, // main baudrate + 3000000, // main baudrate 1, // flow control NULL, }; @@ -611,7 +611,8 @@ int main(void) btstack_memory_init(); btstack_run_loop_init(btstack_run_loop_embedded_get_instance()); - hci_dump_open( NULL, HCI_DUMP_STDOUT ); + // uncomment to enable packet logger + // hci_dump_open( NULL, HCI_DUMP_STDOUT ); // init HCI hci_init(hci_transport_h4_instance(btstack_uart_block_embedded_instance()), (void*) &config);