aboutsummaryrefslogtreecommitdiff
path: root/ble/ByteBuffer.cpp
Commit message (Collapse)AuthorAgeFilesLines
* o Working enabling of notifications.Trygve Laugstøl2018-11-221-39/+46
|
* ByteBuffer:Trygve Laugstøl2018-11-191-8/+9
| | | | | | 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.
* Major overhaul of BLE code:Trygve Laugstøl2018-09-051-68/+45
| | | | | | | 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.
* o Overhaul of the bluetooth code.Trygve Laugstøl2015-07-261-3/+108
| | | | | | - 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 Fixing compatability with libcxx.Trygve Laugstøl2015-07-211-1/+2
|
* o Trying to clean up includes a bit.Trygve Laugstøl2015-07-191-3/+2
|
* o Replacing boost::logging with log4cplus.Trygve Laugstøl2015-03-011-1/+0
|
* o Splitting out public header files into it's own directory.Trygve Laugstøl2015-02-221-1/+1
|
* o Support for reading and writing characteristics.Trygve Laugstøl2015-02-211-4/+33
|
* Reorganizing the source code:Trygve Laugstøl2015-02-201-0/+102
o Moving main to apps/ o Moving the library sources to ble/ o Creating cmake files for each piece.