Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/releases/migration-guide-4.4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ Device Drivers and Devicetree
Bluetooth
*********

Bluetooth Host
==============

* :kconfig:option:`CONFIG_BT_SIGNING` has been deprecated.
* :c:macro:`BT_GATT_CHRC_AUTH` has been deprecated.

Networking
**********

Expand Down
4 changes: 3 additions & 1 deletion include/zephyr/bluetooth/gatt.h
Original file line number Diff line number Diff line change
Expand Up @@ -462,10 +462,12 @@
/**
* @brief Characteristic Authenticated Signed Writes property.
*
* @deprecated This API is deprecated.
*
* If set, permits signed writes to the Characteristic Value.
*/
#define BT_GATT_CHRC_AUTH 0x40
#define BT_GATT_CHRC_AUTH 0x40 __DEPRECATED_MACRO
/**

Check notice on line 470 in include/zephyr/bluetooth/gatt.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

include/zephyr/bluetooth/gatt.h:470 -#define BT_GATT_CHRC_AUTH 0x40 __DEPRECATED_MACRO +#define BT_GATT_CHRC_AUTH 0x40 __DEPRECATED_MACRO
* @brief Characteristic Extended Properties property.
*
* If set, additional characteristic properties are defined in the
Expand Down
1 change: 0 additions & 1 deletion samples/bluetooth/direct_adv/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
CONFIG_BT=y
CONFIG_LOG=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_DIS=y
CONFIG_BT_ATT_PREPARE_COUNT=1
Expand Down
23 changes: 11 additions & 12 deletions samples/bluetooth/direct_adv/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,26 +32,25 @@
static const struct bt_uuid_128 write_characteristic_uuid = BT_UUID_INIT_128(
BT_UUID_128_ENCODE(0x12345678, 0x1234, 0x5678, 0x1234, 0x56789abcdef2));

static int signed_value;
static int stored_value;
static struct bt_le_adv_param adv_param;
static bt_addr_le_t bond_addr;

static ssize_t read_signed(struct bt_conn *conn, const struct bt_gatt_attr *attr,
void *buf, uint16_t len, uint16_t offset)
static ssize_t read_cb(struct bt_conn *conn, const struct bt_gatt_attr *attr, void *buf,
uint16_t len, uint16_t offset)
{
int *value = &signed_value;
int *value = &stored_value;

return bt_gatt_attr_read(conn, attr, buf, len, offset, value,
sizeof(signed_value));
sizeof(stored_value));
}

Check notice on line 46 in samples/bluetooth/direct_adv/src/main.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

samples/bluetooth/direct_adv/src/main.c:46 - return bt_gatt_attr_read(conn, attr, buf, len, offset, value, - sizeof(stored_value)); + return bt_gatt_attr_read(conn, attr, buf, len, offset, value, sizeof(stored_value));

static ssize_t write_signed(struct bt_conn *conn, const struct bt_gatt_attr *attr,
const void *buf, uint16_t len, uint16_t offset,
uint8_t flags)
static ssize_t write_cb(struct bt_conn *conn, const struct bt_gatt_attr *attr, const void *buf,
uint16_t len, uint16_t offset, uint8_t flags)
{
int *value = &signed_value;
int *value = &stored_value;

if (offset + len > sizeof(signed_value)) {
if (offset + len > sizeof(stored_value)) {
return BT_GATT_ERR(BT_ATT_ERR_INVALID_OFFSET);
}

Expand All @@ -66,13 +65,13 @@
BT_GATT_CHARACTERISTIC(&read_characteristic_uuid.uuid,
BT_GATT_CHRC_READ,
BT_GATT_PERM_READ,
read_signed, NULL, NULL),
read_cb, NULL, NULL),
BT_GATT_CHARACTERISTIC(&write_characteristic_uuid.uuid,
BT_GATT_CHRC_WRITE,
BT_GATT_PERM_WRITE_ENCRYPT,
NULL, write_signed, NULL),
NULL, write_cb, NULL),
);

Check notice on line 74 in samples/bluetooth/direct_adv/src/main.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

samples/bluetooth/direct_adv/src/main.c:74 -BT_GATT_SERVICE_DEFINE(primary_service, - BT_GATT_PRIMARY_SERVICE(&primary_service_uuid), - BT_GATT_CHARACTERISTIC(&read_characteristic_uuid.uuid, - BT_GATT_CHRC_READ, - BT_GATT_PERM_READ, - read_cb, NULL, NULL), - BT_GATT_CHARACTERISTIC(&write_characteristic_uuid.uuid, - BT_GATT_CHRC_WRITE, - BT_GATT_PERM_WRITE_ENCRYPT, - NULL, write_cb, NULL), -); +BT_GATT_SERVICE_DEFINE(primary_service, BT_GATT_PRIMARY_SERVICE(&primary_service_uuid), + BT_GATT_CHARACTERISTIC(&read_characteristic_uuid.uuid, BT_GATT_CHRC_READ, + BT_GATT_PERM_READ, read_cb, NULL, NULL), + BT_GATT_CHARACTERISTIC(&write_characteristic_uuid.uuid, BT_GATT_CHRC_WRITE, + BT_GATT_PERM_WRITE_ENCRYPT, NULL, write_cb, NULL), );
static const struct bt_data ad[] = {
BT_DATA_BYTES(BT_DATA_FLAGS, (BT_LE_AD_GENERAL | BT_LE_AD_NO_BREDR)),
BT_DATA_BYTES(BT_DATA_UUID128_ALL, BT_UUID_CUSTOM_SERVICE_VAL),
Expand Down
1 change: 0 additions & 1 deletion samples/bluetooth/peripheral/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
CONFIG_BT=y
CONFIG_LOG=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_DIS=y
CONFIG_BT_ATT_PREPARE_COUNT=5
Expand Down
33 changes: 0 additions & 33 deletions samples/bluetooth/peripheral/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,35 +130,6 @@ static struct bt_gatt_cep vnd_long_cep = {
.properties = BT_GATT_CEP_RELIABLE_WRITE,
};

static int signed_value;

static ssize_t read_signed(struct bt_conn *conn, const struct bt_gatt_attr *attr,
void *buf, uint16_t len, uint16_t offset)
{
const char *value = attr->user_data;

return bt_gatt_attr_read(conn, attr, buf, len, offset, value,
sizeof(signed_value));
}

static ssize_t write_signed(struct bt_conn *conn, const struct bt_gatt_attr *attr,
const void *buf, uint16_t len, uint16_t offset,
uint8_t flags)
{
uint8_t *value = attr->user_data;

if (offset + len > sizeof(signed_value)) {
return BT_GATT_ERR(BT_ATT_ERR_INVALID_OFFSET);
}

memcpy(value + offset, buf, len);

return len;
}

static const struct bt_uuid_128 vnd_signed_uuid = BT_UUID_INIT_128(
BT_UUID_128_ENCODE(0x13345678, 0x1234, 0x5678, 0x1334, 0x56789abcdef3));

static const struct bt_uuid_128 vnd_write_cmd_uuid = BT_UUID_INIT_128(
BT_UUID_128_ENCODE(0x12345678, 0x1234, 0x5678, 0x1234, 0x56789abcdef4));

Expand Down Expand Up @@ -208,10 +179,6 @@ BT_GATT_SERVICE_DEFINE(vnd_svc,
BT_GATT_PERM_PREPARE_WRITE,
read_vnd, write_long_vnd, &vnd_long_value),
BT_GATT_CEP(&vnd_long_cep),
BT_GATT_CHARACTERISTIC(&vnd_signed_uuid.uuid, BT_GATT_CHRC_READ |
BT_GATT_CHRC_WRITE | BT_GATT_CHRC_AUTH,
BT_GATT_PERM_READ | BT_GATT_PERM_WRITE,
read_signed, write_signed, &signed_value),
BT_GATT_CHARACTERISTIC(&vnd_write_cmd_uuid.uuid,
BT_GATT_CHRC_WRITE_WITHOUT_RESP,
BT_GATT_PERM_WRITE, NULL,
Expand Down
1 change: 0 additions & 1 deletion samples/bluetooth/peripheral_accept_list/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
CONFIG_BT=y
CONFIG_LOG=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_DIS=y
CONFIG_BT_ATT_PREPARE_COUNT=1
Expand Down
18 changes: 9 additions & 9 deletions samples/bluetooth/peripheral_accept_list/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,26 @@
static const struct bt_uuid_128 write_characteristic_uuid = BT_UUID_INIT_128(
BT_UUID_128_ENCODE(0x12345678, 0x1234, 0x5678, 0x1234, 0x56789abcdef2));

static int signed_value;
static int stored_value;
static struct bt_le_adv_param adv_param;
static int bond_count;

static ssize_t read_signed(struct bt_conn *conn, const struct bt_gatt_attr *attr,
static ssize_t read_cb(struct bt_conn *conn, const struct bt_gatt_attr *attr,
void *buf, uint16_t len, uint16_t offset)
{
int *value = &signed_value;
int *value = &stored_value;

return bt_gatt_attr_read(conn, attr, buf, len, offset, value,
sizeof(signed_value));
sizeof(stored_value));
}

static ssize_t write_signed(struct bt_conn *conn, const struct bt_gatt_attr *attr,
static ssize_t write_cb(struct bt_conn *conn, const struct bt_gatt_attr *attr,
const void *buf, uint16_t len, uint16_t offset,
uint8_t flags)
{

Check notice on line 48 in samples/bluetooth/peripheral_accept_list/src/main.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

samples/bluetooth/peripheral_accept_list/src/main.c:48 -static ssize_t read_cb(struct bt_conn *conn, const struct bt_gatt_attr *attr, - void *buf, uint16_t len, uint16_t offset) +static ssize_t read_cb(struct bt_conn *conn, const struct bt_gatt_attr *attr, void *buf, + uint16_t len, uint16_t offset) { int *value = &stored_value; - return bt_gatt_attr_read(conn, attr, buf, len, offset, value, - sizeof(stored_value)); + return bt_gatt_attr_read(conn, attr, buf, len, offset, value, sizeof(stored_value)); } -static ssize_t write_cb(struct bt_conn *conn, const struct bt_gatt_attr *attr, - const void *buf, uint16_t len, uint16_t offset, - uint8_t flags) +static ssize_t write_cb(struct bt_conn *conn, const struct bt_gatt_attr *attr, const void *buf, + uint16_t len, uint16_t offset, uint8_t flags)
int *value = &signed_value;
int *value = &stored_value;

if (offset + len > sizeof(signed_value)) {
if (offset + len > sizeof(stored_value)) {
return BT_GATT_ERR(BT_ATT_ERR_INVALID_OFFSET);
}

Expand All @@ -63,13 +63,13 @@
BT_GATT_CHARACTERISTIC(&read_characteristic_uuid.uuid,
BT_GATT_CHRC_READ,
BT_GATT_PERM_READ,
read_signed, NULL, NULL),
read_cb, NULL, NULL),
BT_GATT_CHARACTERISTIC(&write_characteristic_uuid.uuid,
BT_GATT_CHRC_WRITE,
BT_GATT_PERM_WRITE_ENCRYPT,
NULL, write_signed, NULL),
NULL, write_cb, NULL),
);

Check notice on line 72 in samples/bluetooth/peripheral_accept_list/src/main.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

samples/bluetooth/peripheral_accept_list/src/main.c:72 -BT_GATT_SERVICE_DEFINE(primary_service, - BT_GATT_PRIMARY_SERVICE(&primary_service_uuid), - BT_GATT_CHARACTERISTIC(&read_characteristic_uuid.uuid, - BT_GATT_CHRC_READ, - BT_GATT_PERM_READ, - read_cb, NULL, NULL), - BT_GATT_CHARACTERISTIC(&write_characteristic_uuid.uuid, - BT_GATT_CHRC_WRITE, - BT_GATT_PERM_WRITE_ENCRYPT, - NULL, write_cb, NULL), -); +BT_GATT_SERVICE_DEFINE(primary_service, BT_GATT_PRIMARY_SERVICE(&primary_service_uuid), + BT_GATT_CHARACTERISTIC(&read_characteristic_uuid.uuid, BT_GATT_CHRC_READ, + BT_GATT_PERM_READ, read_cb, NULL, NULL), + BT_GATT_CHARACTERISTIC(&write_characteristic_uuid.uuid, BT_GATT_CHRC_WRITE, + BT_GATT_PERM_WRITE_ENCRYPT, NULL, write_cb, NULL), );
static const struct bt_data ad[] = {
BT_DATA_BYTES(BT_DATA_FLAGS, (BT_LE_AD_GENERAL | BT_LE_AD_NO_BREDR))
};
Expand Down
1 change: 1 addition & 0 deletions subsys/bluetooth/host/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,7 @@ config BT_RPA_SHARING

config BT_SIGNING
bool "Data signing support"
select DEPRECATED
help
This option enables data signing which is used for transferring
authenticated data in an unencrypted connection.
Expand Down
4 changes: 0 additions & 4 deletions subsys/bluetooth/host/shell/gatt.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,6 @@ static void print_chrc_props(uint8_t properties)
bt_shell_print("[indicate]");
}

if (properties & BT_GATT_CHRC_AUTH) {
bt_shell_print("[auth]");
}

if (properties & BT_GATT_CHRC_EXT_PROP) {
bt_shell_print("[ext prop]");
}
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_10.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ CONFIG_BT=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_USE_DEBUG_KEYS=y
CONFIG_ZTEST=y
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_11.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ CONFIG_BT=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_USE_DEBUG_KEYS=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_12.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
CONFIG_BT=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_USE_DEBUG_KEYS=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_13.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
CONFIG_BT=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_USE_DEBUG_KEYS=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
Expand Down
6 changes: 0 additions & 6 deletions tests/bluetooth/init/prj_14.conf

This file was deleted.

1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_17.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ CONFIG_BT=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_USE_DEBUG_KEYS=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_20.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ CONFIG_BT=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_USE_DEBUG_KEYS=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_21.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ CONFIG_BT=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_USE_DEBUG_KEYS=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
Expand Down
6 changes: 0 additions & 6 deletions tests/bluetooth/init/prj_7.conf

This file was deleted.

7 changes: 0 additions & 7 deletions tests/bluetooth/init/prj_8.conf

This file was deleted.

7 changes: 0 additions & 7 deletions tests/bluetooth/init/prj_9.conf

This file was deleted.

1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_ctlr.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ CONFIG_BT_HCI_ACL_FLOW_CONTROL=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
CONFIG_BT_GATT_CLIENT=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_ctlr_4_0.conf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ CONFIG_BT_HCI_VS=n
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
CONFIG_BT_GATT_CLIENT=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_ctlr_4_0_dbg.conf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ CONFIG_BT_CTLR_VS_SCAN_REQ_RX=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
CONFIG_BT_GATT_CLIENT=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_ctlr_5_x_dbg.conf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ CONFIG_BT_ISO_SYNC_RECEIVER=y
CONFIG_BT_ISO_CENTRAL=y
CONFIG_BT_ISO_PERIPHERAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_USE_DEBUG_KEYS=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_ctlr_dbg.conf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ CONFIG_BT_HCI_MESH_EXT=n
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_USE_DEBUG_KEYS=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_ctlr_ticker.conf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ CONFIG_BT_HCI_MESH_EXT=n
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_USE_DEBUG_KEYS=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_ctlr_tiny.conf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ CONFIG_BT_HCI_VS=n
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
CONFIG_BT_GATT_CLIENT=y
Expand Down
1 change: 0 additions & 1 deletion tests/bluetooth/init/prj_llcp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ CONFIG_BT_HCI_ACL_FLOW_CONTROL=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_SIGNING=y
CONFIG_BT_SMP_SC_ONLY=y
CONFIG_BT_L2CAP_DYNAMIC_CHANNEL=y
CONFIG_BT_GATT_CLIENT=y
Expand Down
12 changes: 0 additions & 12 deletions tests/bluetooth/init/testcase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ tests:
bluetooth.init.test_13:
extra_args: CONF_FILE=prj_13.conf
platform_allow: qemu_cortex_m3
bluetooth.init.test_14:
extra_args: CONF_FILE=prj_14.conf
platform_allow: qemu_cortex_m3
bluetooth.init.test_15:
extra_args: CONF_FILE=prj_15.conf
platform_allow: qemu_cortex_m3
Expand Down Expand Up @@ -64,15 +61,6 @@ tests:
bluetooth.init.test_6:
extra_args: CONF_FILE=prj_6.conf
platform_allow: qemu_cortex_m3
bluetooth.init.test_7:
extra_args: CONF_FILE=prj_7.conf
platform_allow: qemu_cortex_m3
bluetooth.init.test_8:
extra_args: CONF_FILE=prj_8.conf
platform_allow: qemu_cortex_m3
bluetooth.init.test_9:
extra_args: CONF_FILE=prj_9.conf
platform_allow: qemu_cortex_m3
bluetooth.init.test_ctlr:
extra_args:
- CONF_FILE=prj_ctlr.conf
Expand Down
Loading
Loading