aboutsummaryrefslogtreecommitdiffstats
path: root/examples
Commit message (Expand)AuthorAgeFilesLines
...
* dbt_scanner10(C++/Java): Rename arg '-silent_gatt' -> '-quiet', and add silen...Sven Gothel2020-09-252-54/+45
* dbt_scanner10/ScannerTinyB10: Fix '!KEEP_CONNECT' case, i.e. remove device an...Sven Gothel2020-09-242-0/+20
* GATTNumbers: Concluding review: API doc, better naming, have optional data an...Sven Gothel2020-09-243-9/+9
* dbt_scanner10 + ScannerTinyB10: Make gatt-ping optional and always cleanup on...Sven Gothel2020-09-242-24/+70
* Merge Secure Pairing API changele_secure_connectionsSven Gothel2020-09-231-2/+3
|\
| * BluetoothDevice.get[Supported|Required]PairingModes(): Return List<PairingMod...Sven Gothel2020-09-221-2/+2
* | GATT/L2CAP Robustness: Have L2CAPHandler its own DBTEnvrionment (local L2CAP_...Sven Gothel2020-09-232-11/+43
|/
* Fix Java_direct_1bt_tinyb_DBTGattDescriptor_toStringImpl(..): Wrong arg list,...v2.1.27Sven Gothel2020-09-222-2/+19
* LE Secure Connections: Initial API to support secure pairing with varying Pai...Sven Gothel2020-09-222-0/+60
* GATT*::toString(): Encapsulate resulting string with '[]'; Examples: Use clea...Sven Gothel2020-09-202-8/+8
* Examples dbt_scanner10, ScannerTinyB10: Realign arguments in help dumpSven Gothel2020-09-202-4/+5
* dbt_scanner10.cpp: Add cmdline args '-dbt_verbose, -dbt_debug, -dbt_mgmt, -db...Sven Gothel2020-09-202-17/+33
* Fix GATT* Object relationship incl weak back-reference (GATTHandler was skipp...Sven Gothel2020-09-191-1/+1
* DBTDevice: Resolve disconnect/remove resource race condition @ rapid connect ...v2.1.22Sven Gothel2020-09-182-14/+7
* dbt_scanner10: Also silence printSharedPtrListOfDevices if SILENT_GATTSven Gothel2020-09-181-2/+6
* HCIComm, L2CAPComm, GATTHandler: Better var- and accessor-naming, init fd in ...Sven Gothel2020-09-183-5/+5
* Open [& Connect] @ ctor (RAII): HCIComm, L2CAPComm, GATTHandler, simplifying ...Sven Gothel2020-09-183-6/+5
* ScannerTinyB10, dbt_scanner10: Add '-silent_gatt' options: Don't print detail...v2.1.21Sven Gothel2020-09-162-28/+56
* ScannerTinyB10: Fix found/connected filter; dbt_scanner10: Add parallel multi...Sven Gothel2020-09-162-34/+51
* CMake: Support full parallel build by adding target dependenciesSven Gothel2020-09-152-17/+27
* CMake Build: Use C++17 (C++20 not yet supported on all target platforms, i.e....Sven Gothel2020-09-121-3/+6
* Fixing Example crossreference and Menu itemSven Gothel2020-09-036-6/+6
* README: More detailed Direct-BT description (event driven, build depenencies,...Sven Gothel2020-09-036-11/+45
* DBTAdapter: Utilize POWERED in AdapterSettings to determine if powered and (c...Sven Gothel2020-09-031-0/+8
* Complete mapping of BTMode (C++, Java) and have Adapter recognize actual BTMo...Sven Gothel2020-09-032-1/+16
* DBTEnv/direct_bt.debug: Aligning DBTManager alias to 'mgmt': 'direct_bt.debug...Sven Gothel2020-08-281-1/+1
* DBTEnv: Generalize 'exploding properties' and add optional '=value' support. ...Sven Gothel2020-08-281-0/+9
* BluetoothGattCharacteristic: API Change: 'writeValue(byte[] value)' -> 'write...Sven Gothel2020-08-263-4/+4
* dbt_Scanner01.cpp: Fix renamed defaults - Just use default argumentSven Gothel2020-08-261-1/+1
* cmake: Fix set_target_properties(..) use proper target name and add declarati...Sven Gothel2020-08-253-3/+7
* cmake: Add variable/define 'SKIP_TINYB': Allow to not build the tinyb native ...Sven Gothel2020-08-251-42/+47
* DBTEnv: Use plain 'foo.bar' names, not 'foo_bar'; Add 'exploding' name values...Sven Gothel2020-08-241-5/+8
* BluetoothFactory/DBTEnv: Pass JVM properties to environment, access DEBUG, VE...Sven Gothel2020-08-241-1/+8
* ScannerTinyB10: Expose start/stop discovery result / dbt_scanner10: Align dis...Sven Gothel2020-08-232-7/+16
* ScannerTinyB10: Simplify 'Processing Device' tail @ pre pingGATT: startDiscov...Sven Gothel2020-08-231-5/+7
* DBTAdapter: Have non-enabled adapter to be valid, use lazy HCI initialization...Sven Gothel2020-08-227-3/+45
* Expose hciConnectionHandle: AdapterStatusListener connect/disconnect (C++/Jav...Sven Gothel2020-07-286-21/+24
* C++/Java *Device::connect*(..), disconnect(): Return HCIStatusCode instead of...Sven Gothel2020-07-2710-22/+35
* ScannerTinyB10: Wrap whole services/characteristic walk through block in a tr...Sven Gothel2020-07-271-15/+15
* BluetoothUtil: Add getElapsedMillisecond(); ScannerTinyB10 shows elapsed mill...Sven Gothel2020-07-271-62/+76
* ScannerTinyB10: Add shutdown test issued from notify/indicate callback, testi...v2.1.16Sven Gothel2020-07-261-1/+43
* dbt_scanner0[01]: Fix conversion from getDevice() -> getDeviceChecked()Sven Gothel2020-07-262-4/+4
* Robustness: Distinguish between get<Type>Checked() and get<Type>Unchecked(): ...Sven Gothel2020-07-261-2/+2
* GATTCharacteristic: Add enableNotificationOrIndication(..)..; DIRECTBT_CHARAC...v2.1.15Sven Gothel2020-07-251-0/+3
* Reworking GATTCharacteristicListener (C++ and Java)Sven Gothel2020-07-246-75/+62
* ScannerTinyB10: Fix verbose and debug setting: Set properties _before_ access...Sven Gothel2020-07-241-2/+7
* ScannerTinyB10 @ pingGATT: Only initiate discovery temporary w/o need to disa...v2.1.13Sven Gothel2020-07-221-2/+1
* DBTAdapter: startDiscovery(..) also might need to change 'keepDiscoveringAliv...Sven Gothel2020-07-221-0/+2
* DBTAdapter: Make HCIHandler instance aggregated (lifecycle over full adapter ...Sven Gothel2020-07-211-9/+0
* Direct-BT Java: Implement find(..) in manager, adapter, device, service and c...Sven Gothel2020-07-172-44/+105