Commits

Commit Message Author Age Changes
da5211fd monitor: Use hcidump fallback only if monitor channel is not present Marcel Holtmann 13 years ago 2 files, +13, -7
2c71c128 monitor: Decode L2CAP features and fixed channels list Marcel Holtmann 13 years ago 1 file, +71, -2
366c5ac8 monitor: Add some missing LE command decodings Marcel Holtmann 13 years ago 2 files, +45, -3
07fea7fc Add João Paulo to the AUTHORS file Gustavo Padovan 13 years ago 1 file, +1, -0
ac4a9226 monitor: Fix uint64_t format specifier To be compilable both on 32 and 64 bit architectures the PRIu64 macro needs to be used as format specifier for uint64_t. Otherwise we'll get the following type of error either on 32 bit (for %lx) or 64 bit (for %llx) : monitor/l2cap.c: In function 'sig_info_rsp': monitor/l2cap.c:351:3: error: format '%lx' expects argument of type 'long unsigned int', but argument 8 has type 'uint64_t' [-Werror=format] Johan Hedberg 13 years ago 1 file, +3, -1
bfc07e50 test: Update get-managed-objects to support Python 3 Johan Hedberg 13 years ago 1 file, +5, -3
bc75f38c monitor: Fix color printing of hexdump Marcel Holtmann 13 years ago 3 files, +17, -14
5784a830 monitor: Use more advanced indent printing Marcel Holtmann 13 years ago 3 files, +26, -25
5b7dc670 monitor: Add decoding of L2CAP signal channel Marcel Holtmann 13 years ago 4 files, +499, -53
a2cca1ad monitor: Allow printing with different indents Marcel Holtmann 13 years ago 1 file, +5, -4
4ca6da89 monitor: Fix printing of LMP features Marcel Holtmann 13 years ago 1 file, +1, -1
a4ac3388 monitor: Use more explicit L2CAP header parsing Marcel Holtmann 13 years ago 1 file, +22, -12
9bd562ad monitor: Move L2CAP header definition into global include Marcel Holtmann 13 years ago 3 files, +6, -5
1f50e7b3 monitor: Use global helper for error color handling Marcel Holtmann 13 years ago 3 files, +24, -22
f7965078 monitor: Provice ACL handle to L2CAP packets Marcel Holtmann 13 years ago 3 files, +3, -3
38496c02 core: Use /org/bluez as base path Marcel Holtmann 13 years ago 1 file, +1, -3
9f115b33 core: Remove GATT enable option Marcel Holtmann 13 years ago 4 files, +8, -25
8efc4e22 plugins: Remove GATT enable option Marcel Holtmann 13 years ago 1 file, +0, -8
91b4b363 profiles: Remove GATT enable option Marcel Holtmann 13 years ago 9 files, +0, -60
c4858bbf build: Always enable GATT support Marcel Holtmann 13 years ago 3 files, +1, -10
fe6a6115 test: Add test script for getting managed objects Marcel Holtmann 13 years ago 1 file, +27, -0
50380dcc TODO: Remove entry for Profile Manager interface change Marcel Holtmann 13 years ago 1 file, +0, -2
0e163a65 test: Update changes for new Profile Manager interface Marcel Holtmann 13 years ago 1 file, +5, -4
465e5fa6 core: Move profile registration to Profile Manager interface Marcel Holtmann 13 years ago 4 files, +32, -19
437959a0 doc: Create separate Profile Manager interface Marcel Holtmann 13 years ago 2 files, +85, -79
33176c12 input: Remove unused sixpair.c source file Marcel Holtmann 13 years ago 1 file, +0, -298
d2830a2f TODO: Update BlueZ 5 section to match current status Johan Hedberg 13 years ago 1 file, +38, -24
ab2297f2 core: Add support for custom Profile.NewConnection properties Johan Hedberg 13 years ago 2 files, +89, -1
b27b7757 mgmt: Remove peripheral setting It's still not decided how this will be exposed in the end but most likely it wont be through mgmt (e.g. socket-based enabling is a probable choice). Johan Hedberg 13 years ago 5 files, +7, -50
c4b6d037 core: Add fd_properties parameter to Profile.NewConnection Johan Hedberg 13 years ago 3 files, +14, -6
2a7af79b build: Remove unused ppporc utility Marcel Holtmann 13 years ago 3 files, +1, -276
aabb7b93 build: Remove unused dfubabel utility Marcel Holtmann 13 years ago 4 files, +0, -259
4db071a1 build: Remove unused avctrl utility Marcel Holtmann 13 years ago 4 files, +2, -292
c52ae81e build: Remove SBC source files Marcel Holtmann 13 years ago 21 files, +1, -6099
8d439d85 build: Remove option to build SBC support Marcel Holtmann 13 years ago 3 files, +0, -39
27f3623c audio: Remove GStreamer plugin Marcel Holtmann 13 years ago 16 files, +0, -4466
15df7842 build: Remove option to build GStreamer plugin Marcel Holtmann 13 years ago 3 files, +2, -40
4e957cf7 monitor: Move color text helpers to common location Marcel Holtmann 13 years ago 2 files, +27, -22
50a36562 emulator: Add sniffer channel to b1ee utility Marcel Holtmann 13 years ago 1 file, +52, -14
db493ac0 monitor: Add decoding for command to set advertising Marcel Holtmann 13 years ago 2 files, +28, -1
e3df56ff monitor: Make field printing a global helper Marcel Holtmann 13 years ago 3 files, +3, -4
127a07fd btmgmt: Fix rm-uuid command Johan Hedberg 13 years ago 1 file, +1, -1
bd611d83 AVRCP: Add support for GetCapabilities PDU when acting as controller This adds GetCapabilities PDU id to controller handlers vtable so it is able to respond it properly. Luiz Augusto von Dentz 13 years ago 1 file, +2, -0
394cd732 AVRCP: Add supported events field to session structure This simplify detecting which events are available depending on the role and version of the session. Luiz Augusto von Dentz 13 years ago 1 file, +12, -6
74c14eca monitor: Add comment for the ACL packet flags Marcel Holtmann 13 years ago 1 file, +2, -2
f2ddf390 tools: Add simple btattach utility Marcel Holtmann 13 years ago 3 files, +140, -1
ce084da2 btsnoop: Fix signedness compilation errors This patch fixes the following signedness comparison errors: tools/btsnoop.c: In function 'command_merge': tools/btsnoop.c:221:21: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] tools/btsnoop.c:263:14: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] Johan Hedberg 13 years ago 1 file, +2, -2
0c1145e4 monitor: Simplify advertising report parsing to single-reports Johan Hedberg 13 years ago 2 files, +35, -52
843447dc monitor: Use uint8_t instead of size_t Johan Hedberg 13 years ago 1 file, +12, -11
f5d7418a monitor: Fix minor whitespace issue Johan Hedberg 13 years ago 1 file, +1, -1
Previous Next