diff options
author | Sven Gothel <[email protected]> | 2022-01-18 01:32:30 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-01-18 01:32:30 +0100 |
commit | 49100b47fa7d95e63446de52ce34549ef220155e (patch) | |
tree | fd2e7525627b3a1f40cdde60b4f7a03372e3bc9e /api/direct_bt/BTAdapter.hpp | |
parent | e68702ae586d3eedc337103a31c9c8ccba8bc6da (diff) |
BTDevice: Expose aggregated scanned EIR
Diffstat (limited to 'api/direct_bt/BTAdapter.hpp')
-rw-r--r-- | api/direct_bt/BTAdapter.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/api/direct_bt/BTAdapter.hpp b/api/direct_bt/BTAdapter.hpp index 40e6b9cb..e860c250 100644 --- a/api/direct_bt/BTAdapter.hpp +++ b/api/direct_bt/BTAdapter.hpp @@ -188,6 +188,7 @@ namespace direct_bt { * @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() + * @see BTDevice::getEIR() */ virtual bool deviceFound(BTDeviceRef device, const uint64_t timestamp) { (void)device; @@ -200,6 +201,8 @@ namespace direct_bt { * @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(). + * + * @see BTDevice::getEIR() */ virtual void deviceUpdated(BTDeviceRef device, const EIRDataType updateMask, const uint64_t timestamp) { (void)device; |