summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2022-01-02 10:40:11 +0100
committerSven Gothel <[email protected]>2022-01-02 10:40:11 +0100
commit4dcfab02f67f97de111f8817086431d083fe45a7 (patch)
tree26ea6d35347bf1328823c37d464e254c84bbd181 /api
parent1c62f06184813d344c132b0221ed31c9abc0a0bd (diff)
DiscoverPolicy: Fix AdapterstatusListener API doc: Add 'remote' notion and fix deviceReady() re GATT services etc
Fixes commit e5ac5a6eb4693bae13df3455c2878e2a1f3abf03, see fix commit 1c62f06184813d344c132b0221ed31c9abc0a0bd.
Diffstat (limited to 'api')
-rw-r--r--api/direct_bt/BTAdapter.hpp29
1 files changed, 15 insertions, 14 deletions
diff --git a/api/direct_bt/BTAdapter.hpp b/api/direct_bt/BTAdapter.hpp
index 6c5d3a90..f2629855 100644
--- a/api/direct_bt/BTAdapter.hpp
+++ b/api/direct_bt/BTAdapter.hpp
@@ -101,7 +101,7 @@ namespace direct_bt {
std::string to_string(const DiscoveryPolicy v) noexcept;
/**
- * {@link BTAdapter} status listener for {@link BTDevice} discovery events: Added, updated and removed;
+ * {@link BTAdapter} status listener for remote {@link BTDevice} discovery events: Added, updated and removed;
* as well as for certain {@link BTAdapter} events.
* <p>
* User implementations shall return as early as possible to avoid blocking the event-handler thread,
@@ -172,7 +172,7 @@ namespace direct_bt {
}
/**
- * A BTDevice has been newly discovered.
+ * A remote BTDevice has been newly discovered.
* <p>
* The boolean return value informs the adapter whether the device shall be made persistent for connection `true`,
* or that it can be discarded `false`.<br>
@@ -184,7 +184,7 @@ namespace direct_bt {
*
* BTDevice::unpair() has been called already.
*
- * @param device the found device
+ * @param device the found remote device
* @param timestamp the time in monotonic milliseconds when this event occurred. See BasicTypes::getCurrentMilliseconds().
* @return true if the device shall be made persistent and BTDevice::remove() issued later. Otherwise false to remove device right away.
* @see BTDevice::unpair()
@@ -196,8 +196,8 @@ namespace direct_bt {
}
/**
- * An already discovered BTDevice has been updated.
- * @param device the updated device
+ * An already discovered remote BTDevice has been updated.
+ * @param device the updated remote device
* @param updateMask the update mask of changed data
* @param timestamp the time in monotonic milliseconds when this event occurred. See BasicTypes::getCurrentMilliseconds().
*/
@@ -208,11 +208,11 @@ namespace direct_bt {
}
/**
- * BTDevice got connected
+ * Remote BTDevice got connected
*
* If a BTRole::Master BTDevice gets connected, BTDevice::unpair() has been called already.
*
- * @param device the device which has been connected, holding the new connection handle.
+ * @param device the remote device which has been connected, holding the new connection handle.
* @param handle the new connection handle, which has been assigned to the device already
* @param timestamp the time in monotonic milliseconds when this event occurred. See BasicTypes::getCurrentMilliseconds().
* @see BTDevice::unpair()
@@ -224,8 +224,8 @@ namespace direct_bt {
}
/**
- * An already connected BTDevice's ::SMPPairingState has changed.
- * @param device the device which PairingMode has been changed.
+ * An already connected remote BTDevice's ::SMPPairingState has changed.
+ * @param device the remote device which PairingMode has been changed.
* @param state the current ::SMPPairingState of the connected device, see BTDevice::getCurrentPairingState()
* @param mode the current ::PairingMode of the connected device, see BTDevice::getCurrentPairingMode()
* @param timestamp the time in monotonic milliseconds when this event occurred. See BasicTypes::getCurrentMilliseconds().
@@ -240,12 +240,13 @@ namespace direct_bt {
}
/**
- * BTDevice is ready for user (GATT) processing, i.e. already connected, optionally (SMP) paired.
- * In case of a LE connection, GATT MTU size is negotiated and GATT services discovered.
+ * Remote BTDevice is ready for user (GATT) processing, i.e. already connected, optionally (SMP) paired.
+ *
+ * In case of a LE connection to a remote BTDevice in BTRole::Slave, a GATT server (GATTRole::Server), GATT MTU size is negotiated and GATT services discovered.
* <p>
* Method is being called from a dedicated native thread, hence restrictions on method duration and complex mutable operations don't apply here.
* </p>
- * @param device the device ready to use
+ * @param device the remote device ready to use
* @param timestamp the time in monotonic milliseconds when this event occurred. See BasicTypes::getCurrentMilliseconds().
* @see ::SMPPairingState::COMPLETED
*/
@@ -255,11 +256,11 @@ namespace direct_bt {
}
/**
- * BTDevice got disconnected
+ * Remote BTDevice got disconnected
*
* BTDevice::unpair() has been called already.
*
- * @param device the device which has been disconnected with zeroed connection handle.
+ * @param device the remote device which has been disconnected with zeroed connection handle.
* @param reason the HCIStatusCode reason for disconnection
* @param handle the disconnected connection handle, which has been unassigned from the device already
* @param timestamp the time in monotonic milliseconds when this event occurred. See BasicTypes::getCurrentMilliseconds().