aboutsummaryrefslogtreecommitdiff
path: root/apps/ble-inspect-device.cpp
Commit message (Collapse)AuthorAgeFilesLines
* o Trying to improve compatibility with some feature checks.Trygve Laugstøl2018-11-231-2/+1
| | | | o Misc nits.
* o Compiling everything again.Trygve Laugstøl2018-11-221-1/+1
|
* 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-3/+7
| | | | | | | | | | 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.
* Major overhaul of BLE code:Trygve Laugstøl2018-09-051-0/+1
| | | | | | | 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.
* Fixing lots of small nits:Trygve Laugstøl2018-08-301-1/+1
| | | | | o boost::uuid didn't give much, use our own and add new short uuid type. o Fixing nits from clang-tidy.
* Soil Moisture: Adding support for controlling lights.Trygve Laugstøl2016-04-121-4/+4
| | | | | Bluetooth: refectorying, trying to be more c++ idiomatic and modern. SM/Diller: adding bluetooth to Diller bridge.
* o Overhaul of the bluetooth code.Trygve Laugstøl2015-07-261-5/+5
| | | | | | - Adding support for reading FLOAT (specified in IEEE 11073-20601) values from a bluetooth device. - More shared pointers to help keep track of the object's lifecycle. Makes sure that the connections are released back to Linux, Linux is way to sensitive with crashing applications. o Adding support for reading the temperature sensors from the SoilMoisture device.
* o Trying to clean up includes a bit.Trygve Laugstøl2015-07-191-1/+1
|
* o Going back to a bunch of cpp files instead of launcher+bunch of header ↵Trygve Laugstøl2015-07-191-0/+79
| | | | files. This ends up with an easier build file and faster builds with CMake's "OBJECT" library type.
* o Going all header file based and single-executable to launch all apps.Trygve Laugstøl2015-06-211-58/+0
| | | | o Ading CMake magic to generate the launcher
* o Formatting.Trygve Laugstøl2015-03-081-2/+2
|
* o Splitting out public header files into it's own directory.Trygve Laugstøl2015-02-221-4/+3
|
* o Support for reading and writing characteristics.Trygve Laugstøl2015-02-211-0/+1
|
* o Creating a class to access GATT.Trygve Laugstøl2015-02-211-35/+21
|
* Reorganizing the source code:Trygve Laugstøl2015-02-201-0/+72
o Moving main to apps/ o Moving the library sources to ble/ o Creating cmake files for each piece.