aboutsummaryrefslogtreecommitdiffstats
path: root/api
Commit message (Expand)AuthorAgeFilesLines
...
* DBTAdapter:: removeDiscoveredDevice(..) after mgmtEvDeviceDisconnectedCB proc...v2.1.6Sven Gothel2020-06-241-0/+1
* DBTDevice: *connect* + disconnect: Lock via mutex *absent of proper atomic* a...Sven Gothel2020-06-241-1/+2
* L2CAP/GATT: Replace State with dedicated atomic<bool> isConnected and hasIOEr...Sven Gothel2020-06-242-18/+18
* *Ringbuffer: Add 'drop(int count)' method, dropping max count oldest elementsSven Gothel2020-06-242-0/+33
* GATTHandler::disconnect(..): Expose full parametrized variant only, adding 'b...Sven Gothel2020-06-241-5/+9
* L2CAPComm: Always use blocking mode, remove State::ConnectingSven Gothel2020-06-241-6/+4
* Remove dead code: 'DBTAdapter::performDeviceConnected(..)'v2.1.5Sven Gothel2020-06-241-1/+0
* HCIHandler: Use async event mechanism for delayed replies, commands shall ret...Sven Gothel2020-06-242-19/+39
* HCIHandler: Use async event mechanism for delayed replies, commands shall ret...Sven Gothel2020-06-242-22/+107
* Add MgmEvent::Opcode::INVALID to have a defined invalid value like HCIEventTy...Sven Gothel2020-06-241-0/+1
* BTAddress: Add 'BDAddressType getBDAddressType(const HCIAddressType hciAddrTy...Sven Gothel2020-06-241-0/+1
* Direct-BT: API doc and clarify interface JavaAnonObj, JavaUplink and JavaAnon...Sven Gothel2020-06-181-1/+13
* Threading and transmission robustness: DBTManager, HCIHandler: Synchronize se...Sven Gothel2020-06-102-0/+2
* HCIHandler: Remove unused method sendWithReply(..)Sven Gothel2020-06-101-1/+0
* Default Timeout, Ringbuffersize: DBTManager, HCIHandler: Same 3s command-repl...Sven Gothel2020-06-103-6/+9
* Threading robustness: DBTManager: Add singleton-get mutex, ensuring C++11 6.7...Sven Gothel2020-06-101-0/+3
* Threading robustness: DBTManager, GATTHandler, HCIHandler: Reader thread star...Sven Gothel2020-06-103-0/+6
* DBTManager: Merge private declaration blocksSven Gothel2020-06-101-9/+8
* DBTAdapter (Java/C++): Explicit synchronization on start/stop discovery, avoi...Sven Gothel2020-06-101-0/+1
* DBTDevice (C++/Java): Expose getLastDiscoveryTimestamp() and rename lastUpdat...Sven Gothel2020-06-091-6/+22
* C++: Utilize 'currentScanType' for start/stop discovery same as for Java code...Sven Gothel2020-06-091-2/+16
* [DBT]Adapter (Java/C++) startDiscovery(bool keepAlive) policy change: keepAli...Sven Gothel2020-06-091-4/+13
* L2CAPComm::connect: Retry connect on ETIMEDOUT up to 3, working around rare s...Sven Gothel2020-06-091-0/+5
* L2CAPComm/GATTHandler: User 'enum class' constants for type safety; Drop GATT...Sven Gothel2020-06-093-28/+15
* HCIHandler: Add 'pass_replies_only_filter' mode (in use now)v2.1.3Sven Gothel2020-06-092-6/+9
* HCIHandler/Types: template process*Cmd: Pass pre-allocated template command, ...Sven Gothel2020-06-092-16/+72
* DBTManager/MgmtTypes: Expose MgmtEvtDeviceBlocked, MgmtEvtDeviceUnblocked, Mg...Sven Gothel2020-06-082-22/+51
* DBTDevice: make 'getSharedInstance()' publicSven Gothel2020-06-081-3/+3
* BasicTypes: Rename getUTF8String(..) -> decodeUTF8String(..): Adding API doc ...v2.1.2Sven Gothel2020-06-041-1/+5
* Rename HCIErrorCode -> HCIStatusCode for clarity and pleasing the eyesSven Gothel2020-06-046-45/+45
* Introduce HCITypes + HCIHandler: Providing C++ basics for full HCI support; M...Sven Gothel2020-06-0412-231/+1108
* Specify le_create_connection arguments (API doc) and set default le_scan_* to...Sven Gothel2020-06-012-7/+19
* DisconnectedEvent: Show both reasons, hci and mgmtSven Gothel2020-06-011-2/+4
* DBTAdapter::performDeviceConnected(..) leaving (currently dead) code path for...Sven Gothel2020-06-011-1/+1
* Clarify le_scan and conn[ection] arguments for whitelist and connect methods ...Sven Gothel2020-06-014-10/+38
* Complete using definite tyep HCIErrorCode for disconnect reason; Add Mgmt Dis...Sven Gothel2020-06-015-13/+52
* Use a lower le_connect (supervisor) timeout: 10s instead of 32s.Sven Gothel2020-05-314-9/+11
* AdapterStatusListener(C++/Java): Expose 'HCIErrorCode reason' on disconnect (...Sven Gothel2020-05-312-9/+17
* MgmtTypes: Rename non-class enums to be usage specific: Add MGMT_ prefix.Sven Gothel2020-05-311-15/+15
* Differentiate disconnect w/ IO-Error, i.e. DBTDevice shall not issue HCI nor ...Sven Gothel2020-05-315-9/+25
* DBTDevice::disconnect: After skipping the hci_disconnect, the manager::discon...Sven Gothel2020-05-301-1/+1
* GATTHandler robustness: Fail hard on 'send' and 'sendWithReply': disconnect G...Sven Gothel2020-05-301-3/+3
* GATTHandler DBG_PRINT: Use prefetch device address instead of full device->to...Sven Gothel2020-05-301-0/+1
* DBTManager robusteness: Non-matching replies shall wait for more packets; dis...Sven Gothel2020-05-301-7/+6
* Ensure any L2CAP/GATT disconnect leads to disconnect the owning Device itself...Sven Gothel2020-05-291-1/+4
* DBTAdapter::disconnectAllDevices: User proper HCI disconnect reason REMOTE_US...Sven Gothel2020-05-291-1/+1
* DBTDevice.hpp: More API docSven Gothel2020-05-281-1/+10
* Use atomic as a memory barrier (data race), volatile is not suitable for mult...Sven Gothel2020-05-283-9/+9
* AdapterStatusListener (C++): Add toString() for error handling purposes; DBTD...Sven Gothel2020-05-282-1/+5
* HCIComm::disconnect: default reason shall 0x13 HCIErrorCode::REMOTE_USER_TERM...Sven Gothel2020-05-282-2/+2