The API name space for Bluetooth is bt_* and BT_* so it makes sense to align the Kconfig name space with this. The additional benefit is that this also makes the names shorter. It is also in line with what Linux uses for Bluetooth Kconfig entries. Some Bluetooth-related Networking Kconfig defines are renamed as well in order to be consistent, such as NET_L2_BLUETOOTH. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
77 lines
1.4 KiB
C
77 lines
1.4 KiB
C
/* log.c - logging helpers */
|
|
|
|
/*
|
|
* Copyright (c) 2017 Nordic Semiconductor ASA
|
|
* Copyright (c) 2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* Helper for printk parameters to convert from binary to hex.
|
|
* We declare multiple buffers so the helper can be used multiple times
|
|
* in a single printk call.
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
#include <zephyr/types.h>
|
|
#include <zephyr.h>
|
|
#include <misc/util.h>
|
|
#include <bluetooth/bluetooth.h>
|
|
#include <bluetooth/hci.h>
|
|
|
|
const char *bt_hex(const void *buf, size_t len)
|
|
{
|
|
static const char hex[] = "0123456789abcdef";
|
|
static char hexbufs[4][129];
|
|
static u8_t curbuf;
|
|
const u8_t *b = buf;
|
|
unsigned int mask;
|
|
char *str;
|
|
int i;
|
|
|
|
mask = irq_lock();
|
|
str = hexbufs[curbuf++];
|
|
curbuf %= ARRAY_SIZE(hexbufs);
|
|
irq_unlock(mask);
|
|
|
|
len = min(len, (sizeof(hexbufs[0]) - 1) / 2);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
str[i * 2] = hex[b[i] >> 4];
|
|
str[i * 2 + 1] = hex[b[i] & 0xf];
|
|
}
|
|
|
|
str[i * 2] = '\0';
|
|
|
|
return str;
|
|
}
|
|
|
|
#if defined(CONFIG_BT_DEBUG)
|
|
const char *bt_addr_str(const bt_addr_t *addr)
|
|
{
|
|
static char bufs[2][18];
|
|
static u8_t cur;
|
|
char *str;
|
|
|
|
str = bufs[cur++];
|
|
cur %= ARRAY_SIZE(bufs);
|
|
bt_addr_to_str(addr, str, sizeof(bufs[cur]));
|
|
|
|
return str;
|
|
}
|
|
|
|
const char *bt_addr_le_str(const bt_addr_le_t *addr)
|
|
{
|
|
static char bufs[2][27];
|
|
static u8_t cur;
|
|
char *str;
|
|
|
|
str = bufs[cur++];
|
|
cur %= ARRAY_SIZE(bufs);
|
|
bt_addr_le_to_str(addr, str, sizeof(bufs[cur]));
|
|
|
|
return str;
|
|
}
|
|
#endif /* CONFIG_BT_DEBUG */
|
|
|