aboutsummaryrefslogtreecommitdiff
path: root/ble/misc.cpp
Commit message (Collapse)AuthorAgeFilesLines
* ByteBuffer:Trygve Laugstøl2018-11-191-1/+1
| | | | | | o Reducing silliness, no allocations by ByteBuffer. o Create StaticByteBuffer as a nice one-liner to create a buffer. LinuxBluetooth: methods that want a buffer needs to pass it in, ByteBuffer is not allocating anymore.
* apps/ble-bts:Trygve Laugstøl2018-11-171-5/+64
| | | | | | | | | | o Adding start of health termometer service tool. apps/ble-read-characteristic: o Sart of new tool. apps/ble-inspect-device o Make adapter configurable. other: o UUID fixes and tests.
* o Actually formatting UUIDs as UUIDs.Trygve Laugstøl2018-09-061-19/+8
|
* Major overhaul of BLE code:Trygve Laugstøl2018-09-051-0/+44
o Starting to remove shared_ptr. The code shouldn't be shared between threads, any thread safety will have to be built on the outside. o Better service discovery, don't fail when there are multiple requests that have to be done. o AttributeData was buggy, now it is just less than ideal. o Much better ByteBuffer. Now it is a simple view + cursor.