Commit Graph

405 Commits (master)

Author SHA1 Message Date
Olivier Martin 392d9d5eb3 gattlib.h: Add Eddystone constants 2020-04-07 12:29:19 +02:00
Chris Thornton 1779c75062 Pass the pointer value as a long int to python
The pointer could be truncated which results in an invalid memory
address when trying to get at the array.
2020-04-07 11:48:54 +02:00
Chris Thornton efc656ca52 Use c_ubyte for byte array casts
This prevents having to do the explicit & 0xff, and avoids generating an
error when calling .read() (which didn't have the bitmask)
2020-04-07 11:48:54 +02:00
Chris Thornton 80d26d702d Add types to gattlib_(dis)connect in gattlib-py
The return type defaults to int for connect, causing the pointer to get
corrupted. Similarly, the disconnect call needs to avoid truncating the
handle.
2020-04-06 23:16:42 +02:00
Olivier Martin cfc47a0c0d Fix Python3.8 support
Fix: #146
2020-04-04 10:31:32 +02:00
Olivier Martin 9663984e9d CMakeLists.txt: Fix build 2020-04-04 00:41:09 +02:00
Olivier Martin 26d288613d doc: Check if Doxygen is installed before generating the doc 2020-04-04 00:06:43 +02:00
Olivier Martin 6a4d00b43c doc: Only build Python documention when Sphinx is installed 2020-04-03 23:59:27 +02:00
Vanshil Shah 08ce1b3303 Make indications work properly 2020-03-29 12:12:48 +02:00
Khem Raj 3d656b1e19 cmake: Use GNUInstallDirs
Helps install cmakefiles in right libdir

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-17 20:39:39 +01:00
Jon 5c7ee43bd7 fixed 'apt-install' to 'apt install'
i want my first commit
2019-11-19 08:17:53 +01:00
Daniels Umanovskis c6a3325222 dbus: Add support for reading manufacturer data from advertisement packets 2019-11-05 23:31:59 +01:00
Daniels Umanovskis d300b66ebd Make building docs optional - defaults to on 2019-10-29 15:44:25 +01:00
Johannes Bauer 1f6c89f0bf Fixed error message in notification example app
Fixed a small typo in which the newline was printed one character early
in an error message.
2019-09-28 15:00:47 +02:00
Olivier Martin 55d875438b CMakeLists.txt: Fixed build 2019-08-07 13:41:02 +02:00
Olivier Martin a5a45a9fad CMakeLists.txt: Fix implicitly converting 'BOOLEAN' to 'STRING' type. 2019-08-07 13:26:36 +02:00
Olivier Martin 42c9f2667d CMakeLists.txt: Fix version number 2019-08-05 14:42:07 +02:00
Olivier Martin 6a770e4349 gattlib-py: Introduce 'setup.py' 2019-08-05 13:33:11 +02:00
Olivier Martin 6ace06d3c5 dbus: Do not free value that has been freed by gdbus API 2019-08-05 09:16:41 +02:00
Olivier Martin 3b495609ed dbus: Remove non-necessary g_variant_builder_unref() as g_variant_builder_end() free it 2019-08-05 09:16:41 +02:00
Olivier Martin 53bb794a7d examples/read_write_memory: Added read/write for demonstrating memory management 2019-07-21 20:35:57 +02:00
Olivier Martin 967b46bb99 dbus: Remove more memory leak 2019-07-21 20:35:57 +02:00
Olivier Martin 51c6cbeee2 dbus: Reduce memory leak 2019-07-18 20:58:26 +02:00
Olivier Martin 3d433e3551 Initial generated documentation support 2019-07-15 23:33:13 +02:00
Olivier Martin e342e292fd gattlib.h: Make sure everything is converted 2019-07-15 23:33:13 +02:00
Olivier Martin 3dd0ab40b4 include/gattlib.h: Added documentation for Stream API 2019-07-15 18:04:11 +02:00
Olivier Martin 193c86590e gattlib: Introduce helper function to select Eddystone devices 2019-07-15 18:04:11 +02:00
Olivier Martin 50129fe753 bluez: Returns GATTLIB_ errors 2019-07-15 18:04:11 +02:00
Olivier Martin 69fb243fe7 gattlib: Implement `gattlib_get_advertisement_data()` 2019-07-15 18:04:11 +02:00
Olivier Martin bcf0596abe README.md: Fixed BLUEZ_VERSION 2019-07-14 22:53:24 +02:00
Olivier Martin c956a5b151 .gitignore: Added '__pycache__' to ignore list 2019-07-14 22:47:06 +02:00
Olivier Martin fef6659af0 gattlib-py: Exposed 'Write-without-response' 2019-07-14 22:47:06 +02:00
Olivier Martin 3f829b806c gattlib-py: Check type of data for write() operation 2019-07-14 22:47:06 +02:00
Olivier Martin 2e6cc4c381 dbus/gattlib.c: Return NOT_FOUND when trying to stop notification not started 2019-07-14 22:47:06 +02:00
Olivier Martin e9b98f6dd7 gattlib-py: Disable gattlib_get_rssi() (see #75) 2019-07-14 22:47:06 +02:00
Olivier Martin 4e9b1094d4 gattlib-py/examples/nordic_thingy: Add example for sound support 2019-07-14 22:47:06 +02:00
Olivier Martin e5daed3484 CMakeLists.txt: Add support to specifying Bluez version at build time 2019-07-14 22:47:06 +02:00
Olivier Martin 4f8625cedf gattlib: Add stream API 2019-07-14 22:47:06 +02:00
Olivier Martin 2831cdf765 dbus: Added Bluez v5.48 DBUS API 2019-07-14 22:47:06 +02:00
Olivier Martin ca92375558 dbus: Move GATT characteristic code into 'gattlib_char.c' 2019-07-14 22:47:06 +02:00
Michael Rolland 4b9252bad1 gattlib: Fix disconnection handler type check 2019-07-11 17:54:56 +02:00
Olivier Martin 0142c33dd8 gattlib: Disable gattlib_get_rssi() for now
This API has been disabled until this issue is clarified: https://github.com/labapart/gattlib/issues/75
RSSI can be accessed through `gattlib_get_rssi_from_mac()` before the
connection is established.
2019-07-09 20:04:35 +02:00
Olivier Martin ebf3cc80fb gattlib-py/examples/nordic_thingy: Explicitely call 'discover()' 2019-07-09 20:04:35 +02:00
Olivier Martin d7a323ccd7 gattlib-py/gattlib/device.py: Fixed returned RSSI value 2019-07-09 20:04:35 +02:00
Olivier Martin a42f76aa7d gattlib: Added 'adapter' and 'user_data' parameter to 'gattlib_discovered_device_t' callback 2019-07-09 20:04:35 +02:00
Olivier Martin a52f66834a gattlib: Introduce 'gattlib_get_rssi_from_mac()' 2019-07-09 20:04:35 +02:00
Olivier Martin a9cd2d3c1a dbus: Refactor Adapter code 2019-07-09 20:04:35 +02:00
Olivier Martin d55898276d gattlib-py/examples: Added new Python sample 'find_eddystone' 2019-07-09 20:04:35 +02:00
Olivier Martin bca923366e gattlib-py: Added BLE Scan sample 2019-07-09 20:04:35 +02:00
Olivier Martin 40eec80170 include/gattlib.h: Added some function documentation 2019-07-09 20:04:35 +02:00