aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/build-x86_64.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2020-02-15 11:19:27 +0100
committerSven Gothel <[email protected]>2020-02-15 11:19:27 +0100
commitcdaf51206a95494d8de43fd5461313efff6badd7 (patch)
treee9996bd1de60a844cf800fb15e7c82728acf1386 /scripts/build-x86_64.sh
parent3fed423e2c81232bef6a3916b924996df1ff046e (diff)
C++ tinyb_hci: Working HCIScanner showing AD packets, demonstrating new HCI classes
See scripts/build-x86_64.sh and README.md for build instructions. See scripts/run-hci_scanner.sh to start new HCI scanner (C++). New HCI C++ implementation redised in libtinyb_hci.so w/o GLIB/DBus dependencies, but 'libbluetooth.so' dependency. Following Class datastructures are complete: - HCIUtil: Exception types, uint128_t and endian conversions - General UUID interface and its efficient UUID16, UUID32 + UUID128 implementation. Conversion 'toString', respecting endianess, and UUID* -> UUID128 conversion. Requird member comparison operations due to using interface - HCIAdapter with its opened HCISession, as well as its discovered HCIDevices - HCIAdapter discover includes multiple advertising AD records, up to 25 according to the spec. - HCIAdapter parses full AD segment. TODO: Handle few more AD types API/Impl Details: - Datastructures utilize 'vector<shares_ptr<T>>' collections. - Most attributes are specified 'const' -> immutable for efficancy - Convenient collection access member operations - etc .. RESULTS: - Fast AD scanning of multiple devices w/ UUID and RSSI - Proper integration into tinyb project TODO: - Handle few more AD types - Test multiple parallel HCISession from HCIAdapter - HCIAdapter.connect() - Represent GATT Service, Characteristics and Description - Catch up with the Java binding step by step
Diffstat (limited to 'scripts/build-x86_64.sh')
-rwxr-xr-xscripts/build-x86_64.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/build-x86_64.sh b/scripts/build-x86_64.sh
new file mode 100755
index 00000000..e181b87a
--- /dev/null
+++ b/scripts/build-x86_64.sh
@@ -0,0 +1,22 @@
+#! /bin/sh
+
+sdir=`dirname $(readlink -f $0)`
+rootdir=`dirname $sdir`
+echo rootdir $rootdir
+
+#
+# export JAVA_HOME=/opt-linux-x86_64/jdk1.8.0_121
+#
+
+cd $rootdir
+rm -rf dist-x86_64
+mkdir -p dist-x86_64/bin
+# rm -rf build-x86_64
+mkdir build-x86_64
+cd build-x86_64
+cmake -DCMAKE_INSTALL_PREFIX=$rootdir/dist-x86_64 -DBUILDJAVA=ON -DBUILDEXAMPLES=ON ..
+make
+make install
+cp -a examples/* $rootdir/dist-x86_64/bin
+
+cd $rootdir