| Commit message (Expand) | Author | Age | Files | Lines |
* | DBTDevice.java: Add missing semicolon (oops) | Sven Gothel | 2020-06-09 | 1 | -1/+1 |
* | DBT Adapter/Device (java): Use AtomicBoolean for states and only handle resul... | Sven Gothel | 2020-06-09 | 2 | -153/+139 |
* | DBTAdapter.java: startDiscovery() -> keepAlive=true default | Sven Gothel | 2020-06-09 | 1 | -2/+2 |
* | [DBT]Adapter (Java/C++) startDiscovery(bool keepAlive) policy change: keepAli... | Sven Gothel | 2020-06-09 | 1 | -1/+4 |
* | Expose 'org.tinyb.verbose' and 'org.tinyb.debug' via BluetoothFactory VERBOSE... | Sven Gothel | 2020-06-09 | 1 | -1/+2 |
* | DBTDevice Java/JNI: Implement missing methods and cleanup | Sven Gothel | 2020-06-08 | 1 | -67/+189 |
* | Rename HCIErrorCode -> HCIStatusCode for clarity and pleasing the eyes | Sven Gothel | 2020-06-04 | 2 | -4/+4 |
* | Clarify le_scan and conn[ection] arguments for whitelist and connect methods ... | Sven Gothel | 2020-06-01 | 2 | -12/+12 |
* | AdapterStatusListener(C++/Java): Expose 'HCIErrorCode reason' on disconnect (... | Sven Gothel | 2020-05-31 | 2 | -9/+35 |
* | Aligned Java scanner 10 w/ native example (working error recovery); Tolerant ... | Sven Gothel | 2020-05-30 | 1 | -1/+1 |
* | Java DBTDevice: Drop getGATTService() from connect* as it should be done afte... | Sven Gothel | 2020-05-28 | 1 | -4/+12 |
* | DBTDevice: Avoid NPE: Check user callback reference before using | Sven Gothel | 2020-05-28 | 1 | -6/+18 |
* | DBTGattCharacteristic: Added commented out code to detect notify/indicate pro... | Sven Gothel | 2020-05-28 | 1 | -0/+18 |
* | BluetoothGattCharacteristic::getFlags() Move flags == properties API doc to top | Sven Gothel | 2020-05-28 | 1 | -12/+0 |
* | DBTNativeDownlink* and derivations: Avoid double-close by query isValid() | Sven Gothel | 2020-05-28 | 5 | -19/+27 |
* | DBTDevice/BluetoothDevice: Expose getCreationTimestamp() and add BluetoothAdd... | Sven Gothel | 2020-05-28 | 1 | -1/+12 |
* | BluetoothDevice: Add connect(..) w/ LE connection parameter | Sven Gothel | 2020-05-25 | 1 | -2/+23 |
* | Expose Whitelist (auto-)connect management to BluetoothAdapter.java, impl in ... | Sven Gothel | 2020-05-25 | 1 | -0/+30 |
* | AdapterStatusListener (C++/Java): Add discoveringChanged(..), converge device... | Sven Gothel | 2020-05-24 | 2 | -35/+39 |
* | Add Whitelist to DBTManager/DBTAdapter and test (Result: No auto-connection) | Sven Gothel | 2020-05-24 | 1 | -2/+5 |
* | C++ multithreading fixes and example | Sven Gothel | 2020-05-24 | 1 | -9/+0 |
* | Expose UUID strings in TinyB compatible fashion (unified uuid128_t) as an opt... | Sven Gothel | 2020-05-18 | 1 | -2/+23 |
* | Working GATT Java Side; GATT Types made fully functional for user to avoid 't... | Sven Gothel | 2020-05-17 | 7 | -139/+402 |
* | GATT Service and Characteristic Java <-> JNI binding (incomplete, TODO Descri... | Sven Gothel | 2020-05-14 | 3 | -17/+74 |
* | DBTManager(java/jni): get/setDefaultAdapter(..) java side implementation, rem... | Sven Gothel | 2020-05-14 | 1 | -7/+11 |
* | Fixing multiple Java/C++ Lifecycle Issues (DBTDevice, add ShutdownHook, ..) | Sven Gothel | 2020-05-12 | 3 | -3/+103 |
* | Revert "Adapter::startDiscovery(): removeDevices() will not work as previousl... | Sven Gothel | 2020-05-11 | 1 | -0/+1 |
* | Adapter::startDiscovery(): removeDevices() will not work as previously scanne... | Sven Gothel | 2020-05-11 | 1 | -1/+0 |
* | Move general types out of MgmtTypes; Extract DBTDevice + DBTAdapter into thei... | Sven Gothel | 2020-05-11 | 1 | -1/+2 |
* | Converging Java/JNI and C++ API to match tinyb interface requirements (step-2) | Sven Gothel | 2020-05-10 | 2 | -115/+171 |
* | [Bluetooth]AdapterStatusListener: Renamed; Using a list instead of one-shot c... | Sven Gothel | 2020-05-10 | 2 | -27/+95 |
* | Extend BluetoothDeviceStatusListener -> BluetoothAdapterStatusListener; Enum ... | Sven Gothel | 2020-05-04 | 1 | -61/+71 |
* | DBTAdapter Java/JNI: Add enable/disable Powered|Discovering Notifications | Sven Gothel | 2020-05-03 | 1 | -31/+44 |
* | DBTAdapter: Cleanup and sort fields, isOpen:=false on close. | Sven Gothel | 2020-05-03 | 1 | -16/+21 |
* | Java: Utilize new EIRDataType in BluetoothDeviceStatusListener; ... | Sven Gothel | 2020-05-03 | 2 | -6/+11 |
* | DBTManager Java: Add getAdapterListImpl() | Sven Gothel | 2020-05-02 | 2 | -23/+29 |
* | DBTManager / DBTDeviceStatusListener: Refine events; java: Keep alive discove... | Sven Gothel | 2020-04-26 | 1 | -156/+82 |
* | Refine: DBT API, HCISession/DBTAdapter lifecycle, API doc and C++ and C++/JNI... | Sven Gothel | 2020-04-21 | 1 | -11/+43 |
* | HCIComm thread safety, resolve deadlock; Renaming: MgmtHandler -> DBTManager,... | Sven Gothel | 2020-04-20 | 1 | -3/+5 |
* | Direct-BT: Fix BluetoothFactory; Renaming using 'DBT' prefix | Sven Gothel | 2020-04-20 | 8 | -48/+42 |
* | Initial working Java binding for the direct_bt C++ module | Sven Gothel | 2020-04-20 | 9 | -0/+1356 |