Sets thread names and attempts to enable thread-aware info for gdb
This commit is contained in:
parent
59f9c69bb4
commit
c119aadf96
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue