aboutsummaryrefslogtreecommitdiffstats
path: root/api/direct_bt/HCIHandler.hpp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2021-09-18 16:57:08 +0200
committerSven Gothel <[email protected]>2021-09-18 16:57:08 +0200
commit162e04122b733e9860ad8d9d6e8772de9e63cd01 (patch)
tree13edadf41331328fdc4ccb93fa649a2f94bc84b8 /api/direct_bt/HCIHandler.hpp
parent7406c239f55b8e820be3a5cae88b7ecd53de76c7 (diff)
Moved EUI48, EUI48Sub (C++/Java) and uuid_t, *Octets (C++) to jaulib for general use.
Notable, the java classes EUI48, EUI48Sub and BasicTypes are included in direct_bt's jar file to avoid any inconvenience. Hence BTUtils's byte[s]HexString(..) simply uses jaulib's BasicTypes s' implementation.
Diffstat (limited to 'api/direct_bt/HCIHandler.hpp')
-rw-r--r--api/direct_bt/HCIHandler.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/direct_bt/HCIHandler.hpp b/api/direct_bt/HCIHandler.hpp
index d1b5138c..5d435f88 100644
--- a/api/direct_bt/HCIHandler.hpp
+++ b/api/direct_bt/HCIHandler.hpp
@@ -38,10 +38,10 @@
#include <jau/environment.hpp>
#include <jau/ringbuffer.hpp>
#include <jau/java_uplink.hpp>
+#include <jau/octets.hpp>
#include "BTTypes0.hpp"
#include "BTIoctl.hpp"
-#include "OctetTypes.hpp"
#include "HCIComm.hpp"
#include "HCITypes.hpp"
#include "MgmtTypes.hpp"
@@ -225,7 +225,7 @@ namespace direct_bt {
static MgmtEvent::Opcode translate(HCIEventType evt, HCIMetaEventType met) noexcept;
const uint16_t dev_id;
- POctets rbuffer;
+ jau::POctets rbuffer;
HCIComm comm;
hci_ufilter filter_mask;
std::atomic<uint32_t> metaev_filter_mask;