summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWootak Jung <wootak.jung@samsung.com>2023-10-05 16:41:57 +0900
committerWootak Jung <wootak.jung@samsung.com>2023-10-05 16:41:57 +0900
commite4269dd7c1cd8c52d0ee481beae9ed47b9db6872 (patch)
treee545eb4100e4791d9404dab84d92cadbdd037c4b
parent5890cebf97ad2e0a09598aa698683a0afc5de0b6 (diff)
downloadbluetooth-accepted/tizen_6.0_unified.tar.gz
bluetooth-accepted/tizen_6.0_unified.tar.bz2
bluetooth-accepted/tizen_6.0_unified.zip
Change-Id: I8ce6d29409a4b38d744cd8dfc8e4fb7d432caf40 Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
-rw-r--r--doc/bluetooth_doc.h84
1 files changed, 0 insertions, 84 deletions
diff --git a/doc/bluetooth_doc.h b/doc/bluetooth_doc.h
index 30d039c..3d333c3 100644
--- a/doc/bluetooth_doc.h
+++ b/doc/bluetooth_doc.h
@@ -392,90 +392,6 @@
*/
/**
- * @defgroup CAPI_NETWORK_BLUETOOTH_L2CAP_SOCKET_MODULE Bluetooth L2CAP Socket
- * @brief Bluetooth L2CAP Socket API provides functions for managing connections to other devices and exchanging data.
- * @ingroup CAPI_NETWORK_BLUETOOTH_MODULE
- *
- * @section CAPI_NETWORK_BLUETOOTH_L2CAP_SOCKET_MODULE_HEADER Required Header
- * \#include <bluetooth.h>
- *
- * @section CAPI_NETWORK_BLUETOOTH_L2CAP_SOCKET_MODULE_OVERVIEW Overview
- * This set of functions is used for exchanging data between two bluetooth
- * devices, our device can have both roles as server (service provider) and client
- * (service user).
- * Depending on the role, there is difference in creating a connection.
- * After that, processes of exchanging data and disconnection are same.
- *
- * To start communication, you should first register for #bt_socket_set_l2cap_channel_connection_state_changed_cb()
- * and #bt_socket_set_data_received_cb().
- * Next step depends on the role of your application.\n
- * If you want to be \b server \b role, application should create socket
- * (#bt_socket_create_l2cap_channel()), and start listening and accepting incoming connections
- * (#bt_socket_listen_and_accept_l2cap_channel()).
- * If you want to connect to specific device and use it's services (\a client \a role),
- * you have to start connection with #bt_socket_connect_l2cap_channel() and wait for connection.\n
- * After connection has been established (information is passed to your program with
- * #bt_socket_l2cap_channel_connection_state_changed_cb() function call), you can exchange data by
- * calling #bt_socket_send_data_l2cap_channel(). \n
- * If you receive data from remote device, #bt_socket_data_received_cb() functions will be called.
- * When you finish exchanging data, you should disconnect connection
- * with #bt_socket_disconnect_l2cap_channel() and unregister callback functions (with using
- * #bt_socket_unset_data_received_cb(), #bt_socket_unset_l2cap_channel_connection_state_changed_cb()).
- *
- * @section CAPI_NETWORK_BLUETOOTH_L2CAP_SOCKET_MODULE_FEATURE Related Features
- * This API is related with the following features:\n
- * - %http://tizen.org/feature/network.bluetooth.le.coc\n
- *
- * It is recommended to design feature related codes in your application for reliability.\n
- *
- * You can check if a device supports the related features for this API by using @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE,thereby controlling the procedure of your application.\n
- *
- * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.\n
- *
- * More details on featuring your application can be found from <a href="https://docs.tizen.org/application/tizen-studio/native-tools/manifest-text-editor#feature-element"><b>Feature Element</b>.</a>
- *
- * @section CAPI_NETWORK_BLUETOOTH_L2CAP_SOCKET_MODULE_ASYNCHRONOUS_OPERATIONS Asynchronous Operations
- * <div><table class="doxtable" >
- * <tr>
- * <th><b>FUNCTION</b></th>
- * <th><b>CALLBACK</b></th>
- * <th><b>DESCRIPTION</b></th>
- * </tr>
- * <tr>
- * <td>bt_socket_listen_and_accept_l2cap_channel()<br>
- * bt_socket_connect_l2cap_channel()</td>
- * <td>bt_socket_l2cap_channel_connection_state_changed_cb()</td>
- * <td>Used to connect a device. </td>
- * </tr>
- *</table></div>
- *
- * @section CAPI_NETWORK_BLUETOOTH_L2CAP_SOCKET_MODULE_CALLBACK_OPERATIONS Callback(Event) Operations
- * <div><table class="doxtable" >
- * <tr>
- * <th><b>REGISTER</b></th>
- * <th><b>UNREGISTER</b></th>
- * <th><b>CALLBACK</b></th>
- * <th><b>DESCRIPTION</b></th>
- * </tr>
- * <tr>
- * <td>bt_socket_set_data_received_cb()</td>
- * <td>bt_socket_unset_data_received_cb()</td>
- * <td>bt_socket_data_received_cb()</td>
- * <td>Used to be notified of received data. </td>
- * </tr>
- * <tr>
- * <td>bt_socket_set_l2cap_channel_connection_state_changed_cb()</td>
- * <td>bt_socket_unset_l2cap_channel_connection_state_changed_cb()</td>
- * <td>bt_socket_l2cap_channel_connection_state_changed_cb()</td>
- * <td>Used to be notified when the state of connection changes. </td>
- * </tr>
- *</table></div>
- *
- *<BR>
- * Please refer Bluetooth Tutorial if you want to get more detailed usages and information of this api.
- */
-
-/**
* @defgroup CAPI_NETWORK_BLUETOOTH_OPP_MODULE Bluetooth OPP
* @brief Bluetooth OPP(Object Push Profile) API provides functions for exchanging objects such as pictures.
* @ingroup CAPI_NETWORK_BLUETOOTH_MODULE