Skip to content

Commit 7c96743

Browse files
Thalleyjhedberg
authored andcommitted
Bluetooth: ISO: Upgrade from experimental to unstable
The ISO API and implementation have existed in Zephyr for several years, and while not fully qualified, stable or tested yet, it's not experimental anymore (and have not been for a long time). This commit removes any references to it being experimental and instead defines it as unstable by setting the version to > 0.1.0. 0.8.0 is being used as the initial version, as that is what other unstable modules was defined to have as their initial version if they were not stable (>= 1.0.0). Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
1 parent c476456 commit 7c96743

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

include/zephyr/bluetooth/iso.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
/**
1515
* @brief Isochronous channels (ISO)
1616
* @defgroup bt_iso Isochronous channels (ISO)
17+
*
18+
* @since 2.3
19+
* @version 0.8.0
20+
*
1721
* @ingroup bluetooth
1822
* @{
1923
*/

subsys/bluetooth/Kconfig.iso

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,19 @@ config BT_ISO_UNICAST
2525
Isochronous channels.
2626

2727
config BT_ISO_PERIPHERAL
28-
bool "Bluetooth Isochronous Channel Unicast Peripheral Support [EXPERIMENTAL]"
28+
bool "Bluetooth Isochronous Channel Unicast Peripheral Support"
2929
depends on !BT_CTLR || BT_CTLR_PERIPHERAL_ISO_SUPPORT
3030
select BT_PERIPHERAL
3131
select BT_ISO_UNICAST
32-
select EXPERIMENTAL
3332
help
3433
This option enables support for Bluetooth Unicast
3534
Isochronous channels for the peripheral role.
3635

3736
config BT_ISO_CENTRAL
38-
bool "Bluetooth Isochronous Channel Unicast Central Support [EXPERIMENTAL]"
37+
bool "Bluetooth Isochronous Channel Unicast Central Support"
3938
depends on !BT_CTLR || BT_CTLR_CENTRAL_ISO_SUPPORT
4039
select BT_CENTRAL
4140
select BT_ISO_UNICAST
42-
select EXPERIMENTAL
4341
help
4442
This option enables support for Bluetooth Broadcast
4543
Isochronous channels for the central role.
@@ -50,24 +48,22 @@ config BT_ISO_BROADCAST
5048
select BT_EXT_ADV
5149

5250
config BT_ISO_BROADCASTER
53-
bool "Bluetooth Isochronous Broadcaster Support [EXPERIMENTAL]"
51+
bool "Bluetooth Isochronous Broadcaster Support"
5452
depends on !BT_CTLR || BT_CTLR_ADV_ISO_SUPPORT
5553
select BT_ISO_BROADCAST
5654
select BT_ISO_TX
5755
select BT_BROADCASTER
5856
select BT_PER_ADV
59-
select EXPERIMENTAL
6057
help
6158
This option enables support for the Bluetooth Isochronous Broadcaster.
6259

6360
config BT_ISO_SYNC_RECEIVER
64-
bool "Bluetooth Isochronous Synchronized Receiver Support [EXPERIMENTAL]"
61+
bool "Bluetooth Isochronous Synchronized Receiver Support"
6562
depends on !BT_CTLR || BT_CTLR_SYNC_ISO_SUPPORT
6663
select BT_ISO_BROADCAST
6764
select BT_ISO_RX
6865
select BT_OBSERVER
6966
select BT_PER_ADV_SYNC
70-
select EXPERIMENTAL
7167
help
7268
This option enables support for the Bluetooth Isochronous
7369
Synchronized Receiver.

0 commit comments

Comments
 (0)