From 77bf845768a9c39a5561c69033c0112e62f08947 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 14 Dec 2023 16:34:57 +0100 Subject: [PATCH] posix/btstack_uart_posix: log tty --- platform/posix/btstack_uart_posix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/posix/btstack_uart_posix.c b/platform/posix/btstack_uart_posix.c index 55f20aac2..20fda3ded 100644 --- a/platform/posix/btstack_uart_posix.c +++ b/platform/posix/btstack_uart_posix.c @@ -357,6 +357,7 @@ static int btstack_uart_posix_open(void){ // wait a bit - at least cheap FTDI232 clones might send the first byte out incorrectly usleep(100000); + log_info("Open tty %s", device_name); return 0; }