From dd0ac6d5efec0d0cf528e09c6b702694377c9f71 Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Sat, 22 Oct 2022 22:37:49 +1100 Subject: [PATCH] Update ble.c --- source/Core/BSP/Pinecilv2/ble.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/Core/BSP/Pinecilv2/ble.c b/source/Core/BSP/Pinecilv2/ble.c index ae32c231..833a6692 100644 --- a/source/Core/BSP/Pinecilv2/ble.c +++ b/source/Core/BSP/Pinecilv2/ble.c @@ -49,9 +49,14 @@ int ble_start_adv(void) void bt_enable_cb(int err) { + MSG("[OS] bt_enable_cb...\r\n"); + MSG("[OS] ble_tp_init...\r\n"); ble_tp_init(); + MSG("[OS] ble_tp_init...Done\r\n"); + MSG("[OS] ble_start_adv...\r\n"); ble_start_adv(); + MSG("[OS] ble_start_adv...Done\r\n"); }