Bluetooth: OTC - mark as Experimental

Mark the OTC implementation as experimental

Signed-off-by: Asbjørn Sæbø <asbjorn.sabo@nordicsemi.no>
This commit is contained in:
Asbjørn Sæbø 2022-01-25 09:28:04 +01:00 committed by Carles Cufí
parent 69b731d824
commit b33625fcd2
2 changed files with 16 additions and 1 deletions

View File

@ -10,6 +10,16 @@
#ifndef ZEPHYR_INCLUDE_BLUETOOTH_SERVICES_OTC_H_
#define ZEPHYR_INCLUDE_BLUETOOTH_SERVICES_OTC_H_
/**
* @brief Object Transfer Service Client (OTC)
* @defgroup bt_otc Object Transfer Service Client (OTC)
* @ingroup bluetooth
* @{
*
* [Experimental] Users should note that the APIs can change
* as a part of ongoing development.
*/
#include <stdbool.h>
#include <zephyr/types.h>
#include <bluetooth/gatt.h>
@ -325,4 +335,8 @@ void bt_otc_metadata_display(struct bt_otc_obj_metadata *metadata,
}
#endif
/**
* @}
*/
#endif /* ZEPHYR_INCLUDE_BLUETOOTH_SERVICES_OTC_H_ */

View File

@ -9,10 +9,11 @@
#### Object Transfer Service Client ################################
config BT_OTC
bool "Object Transfer Service Client Support"
bool "Object Transfer Service Client Support (OTC) [Experimental]"
select BT_L2CAP_DYNAMIC_CHANNEL
select BT_GATT_CLIENT
select BT_GATT_AUTO_DISCOVER_CCC
select EXPERIMENTAL
default n
help
This option enables support for the Object Transfer Service Client.