diff --git a/mcuboot-application-nrf52_sparkfun.conf b/mcuboot-application-nrf52_sparkfun.conf index 9e5d2b4..3c5fc8e 100644 --- a/mcuboot-application-nrf52_sparkfun.conf +++ b/mcuboot-application-nrf52_sparkfun.conf @@ -12,6 +12,8 @@ CONFIG_BT_TINYCRYPT_ECC=n CONFIG_BT_CTLR_DTM_HCI=y CONFIG_BT_CTLR_ASSERT_HANDLER=y +CONFIG_GDB_INFO=y + # Bootloader stuff CONFIG_BOOTLOADER_MCUBOOT=y CONFIG_REBOOT=y diff --git a/src/main.c b/src/main.c index 60f0397..8c5ba98 100644 --- a/src/main.c +++ b/src/main.c @@ -519,6 +519,7 @@ void bt_uart_isr(struct device *unused) static void unproc_thread(void) { struct net_buf *buf; + k_thread_name_set(NULL, "unproc_thread"); while (true) { buf = net_buf_get(&h5.unprocessed_queue, K_FOREVER); @@ -615,7 +616,7 @@ static void h5_send_config(void); static void tx_thread(void) { - LOG_DBG("TX Thread is alive."); + k_thread_name_set(NULL, "tx_thread"); while (true) { struct net_buf *buf;