| ab77c4b6 |
monitor: Add AVRCP InformDisplayableCharacterSet support
Support for decoding AVRCP InformDisplayableCharacterSet added in
Bluetooth monitor. |
Vikrampal Yadav |
11 years ago |
1 file, +27, -0 |
| 58918f0e |
monitor: Add AVRCP GetPlayerApplicationSettingValueText support
Support for decoding AVRCP GetPlayerApplicationSettingValueText
added in Bluetooth monitor. |
Vikrampal Yadav |
11 years ago |
1 file, +76, -0 |
| 5a52a580 |
monitor: Add AVRCP GetPlayerApplicationSettingAttributeText support
Support for decoding AVRCP GetPlayerApplicationSettingAttributeText
added in Bluetooth monitor. |
Vikrampal Yadav |
11 years ago |
1 file, +98, -0 |
| 3e45317f |
monitor: Add AVRCP SetPlayerApplicationSettingValue support
Support for decoding AVRCP SetPlayerApplicationSettingValue
added in Bluetooth monitor. |
Vikrampal Yadav |
11 years ago |
1 file, +33, -0 |
| 40d016c1 |
monitor: Add AVRCP GetCurrentPlayerApplicationSettingValue support
Support for decoding AVRCP GetCurrentPlayerApplicationSettingValue
added in Bluetooth monitor. |
Vikrampal Yadav |
11 years ago |
1 file, +49, -0 |
| 0fad328c |
android/tester: Use default ssp handler in A2dp - Suspend test case
Because ssp_handler was incorrectly overriden with default_ssp_req_cb
in previous test case, this test case used it also. Now it is needed
to define it for each test case where it should be used. |
Marcin Kraglak |
11 years ago |
1 file, +1, -0 |
| 2f061b69 |
android/tester: Set ssp_request_cb to default value in teardown
It could be set te default_ssp_req_cb and should be set again to
ssp_request_cb. |
Marcin Kraglak |
11 years ago |
1 file, +6, -0 |
| 051edc22 |
android/gatt: Remove device from white list on device destroy |
Lukasz Rymanowski |
11 years ago |
1 file, +2, -0 |
| df0dfc26 |
android/gatt: Make sure GATT will reconnect after disconnection
With this patch once remote is disconnected there is decision taken if
BfA should wait for reconnect or not.
Removing device from the autoconnect list has been removed from
connect_cb as it is now handled during disconnection |
Lukasz Rymanowski |
11 years ago |
1 file, +7, -3 |
| 472c0d30 |
android/gatt: Extract remove_autoconnect_device helper |
Lukasz Rymanowski |
11 years ago |
1 file, +14, -12 |
| ea985fa2 |
android/gatt: Unsubscribe from autoconnect on unregister
When application does unregister, lets make sure that BfA does not keep
any auto connect devices for this app. |
Lukasz Rymanowski |
11 years ago |
1 file, +21, -0 |
| 53636a73 |
android/gatt: Add API to remove autoconnect GATT based device |
Lukasz Rymanowski |
11 years ago |
2 files, +25, -0 |
| 7678df16 |
doc/coding-style: Minor formatting fix |
Johan Hedberg |
11 years ago |
1 file, +0, -1 |
| cd736fa1 |
build: Add initial HACKING |
Luiz Augusto von Dentz |
11 years ago |
1 file, +129, -0 |
| b4f215b5 |
doc: Add initial documentation for coding style |
Luiz Augusto von Dentz |
11 years ago |
1 file, +268, -0 |
| 223177ed |
shared/gatt-client: Fix invalid access during descriptor discovery.
This patch fixes an off-by-one error during descriptor discovery, which results
in an invalid access if more than one descriptor declaration exists within a
service handle range. |
Arman Uguray |
11 years ago |
1 file, +1, -1 |
| ff90e4fd |
TODO: tools/btgatt-client introduced |
Arman Uguray |
11 years ago |
1 file, +0, -6 |
| 421afbf1 |
tools/btgatt-client: Added the "write-long-value" command.
Added the "write-long-value" command which can be used to perform the "long
write" procedure. |
Arman Uguray |
11 years ago |
1 file, +130, -0 |
| a87af474 |
tools/btgatt-client: Added the "write-value" command.
Added the "write-value" command which can be used to perform "write" and "write
without response" procedures. |
Arman Uguray |
11 years ago |
1 file, +130, -1 |
| fdcd7231 |
tools/btgatt-client: Added the "read-long-value" command.
Added the "read-long-value" command which can be used to read long
characteristic and descriptor values. |
Arman Uguray |
11 years ago |
1 file, +43, -0 |
| a34cd13e |
tools/btgatt-client: Added the "read-value" command.
Added the "read-value" command which sends a simple read request to the
specified handle. |
Arman Uguray |
11 years ago |
1 file, +82, -12 |
| 5f782cbd |
TODO: GATT read/write functions moved to shared/gatt-client. |
Arman Uguray |
11 years ago |
1 file, +0, -7 |
| 98fe46b1 |
shared/gatt-client: Added bt_gatt_client_write_long_value.
Moved the bt_gatt_write_long_value function from shared/gatt-helpers to
shared/gatt-client as bt_gatt_client_write_long_value.
Multiple requests to start a long write operation are queued by bt_gatt_client.
This is to avoid canceling a prepared write to an unintended handle as well as
to prevent multiple long write requests to the same handle from resulting in an
unintended attribute value due to interleaving. |
Arman Uguray |
11 years ago |
4 files, +328, -257 |
| 903688f1 |
shared/gatt-client: Added simple write operations.
Moved the bt_gatt_write_without_response and bt_gatt_write_value functions from
shared/gatt-helpers to shared/gatt-client. |
Arman Uguray |
11 years ago |
4 files, +103, -99 |
| f540923d |
shared/gatt-client: Added bt_gatt_client_read_long_value.
Moved the bt_gatt_read_long_value function from shared/gatt-helpers to
shared/gatt-client as bt_gatt_client_read_long_value. |
Arman Uguray |
11 years ago |
4 files, +216, -219 |
| 8ec31ad3 |
shared/gatt-client: Added bt_gatt_client_read_value.
Moved the bt_gatt_read_value function from shared/gatt-helpers to
shared/gatt-client as bt_gatt_client_read_value. |
Arman Uguray |
11 years ago |
4 files, +130, -115 |
| f1f2ee10 |
android/tester: Use default SSP handler in socket tests |
Szymon Janc |
11 years ago |
1 file, +6, -19 |
| 504f5252 |
emulator/btdev: Fix returning correct remote extended features |
Johan Hedberg |
11 years ago |
1 file, +1, -1 |
| 01d14578 |
android/tester: Fix not cleaning up step lists
There were missing some cleanups for few testers. |
Jakub Tyszkowski |
11 years ago |
1 file, +5, -0 |
| 5cd1f266 |
android/tester: Indentation fix |
Jakub Tyszkowski |
11 years ago |
1 file, +1, -2 |
| 719f2fd9 |
android/tester: Fix hdp cases not handling ssp correctly |
Jakub Tyszkowski |
11 years ago |
1 file, +4, -0 |
| 4067b86e |
android/hidhost: Fix indentation |
Jakub Tyszkowski |
11 years ago |
1 file, +1, -1 |
| f9bd117b |
lib/sdp: Fix typo |
Jakub Tyszkowski |
11 years ago |
1 file, +4, -4 |
| 8308e1a1 |
android/pts: test IOPT TC_SDAS_BV_03_I against PTS 5.2 |
Sebastian Chlad |
11 years ago |
1 file, +1, -1 |
| 8726e14d |
android/pts: Move PTS issues to line with test name
This makes stat scripting easier. |
Szymon Janc |
11 years ago |
1 file, +4, -4 |
| 0433ecf9 |
tools: Show the mgmt settings as bondable instead of pairable |
Marcel Holtmann |
11 years ago |
1 file, +1, -1 |
| ba9bfe48 |
android/pts: Update AVDTP tests results |
Szymon Janc |
11 years ago |
1 file, +93, -91 |
| 22f78750 |
android/pts: PICS and PIXIT setting for AVDTP |
Sebastian Chlad |
11 years ago |
2 files, +35, -35 |
| 1b61a86b |
android/avdtptest: Print info when matching SEP was found |
Szymon Janc |
11 years ago |
1 file, +2, -0 |
| 2fb65926 |
android/avdtptest: Verify data before processing rtp header |
Szymon Janc |
11 years ago |
1 file, +8, -2 |
| 4fc3bd04 |
android/avdtptest: Enable delay reporting |
Szymon Janc |
11 years ago |
1 file, +1, -1 |
| 4b387bf7 |
android/bluetooth: Minor style fix |
Grzegorz Kolodziejczyk |
11 years ago |
1 file, +23, -28 |
| 3729ced0 |
android/bluetooth: Set unpaired cb list to NULL while unregistering bt
Unpaired callback list for profiles needs to be set to NULL while
unregistering bluetooth. Other profiles may try to unregister and remove
its unpair cb, this cause invalid read callback list. |
Grzegorz Kolodziejczyk |
11 years ago |
1 file, +1, -0 |
| 90bdffad |
android: Unregister bluetooth as last service
Other services might depend on bluetooth while performing cleanup
tasks so it should be unregistered as last one. |
Szymon Janc |
11 years ago |
1 file, +1, -1 |
| e6c71886 |
android/gatt: Add helper to create listen data |
Grzegorz Kolodziejczyk |
11 years ago |
1 file, +18, -10 |
| 18aa562a |
android/gatt: Stop listening while unregistering app
Adapter gets stucked on advertising while unregistering all apps with not
stopped listening. |
Grzegorz Kolodziejczyk |
11 years ago |
1 file, +72, -38 |
| f4ffda9c |
android/tester: Fix build error
This fix following error seen when building with gcc 4.6.3
android/tester-gatt.c:135:2: error: initialized field overwritten
[-Werror=override-init]
android/tester-gatt.c:135:2: error: (near initialization for
‘service_1’) [-Werror=override-init]
android/tester-gatt.c:142:2: error: initialized field overwritten
[-Werror=override-init]
android/tester-gatt.c:142:2: error: (near initialization for
‘service_2’) [-Werror=override-init] |
Lukasz Rymanowski |
11 years ago |
1 file, +9, -5 |
| a4bec474 |
audio/avrcp: Fix not handling errors for GetCapabilities
According to the spec GetCapabilities is mandatory for both TG and CT but
some devices reject it anyway which can lead to a crash if not handled
properly. |
Luiz Augusto von Dentz |
11 years ago |
1 file, +2, -1 |
| 498e067a |
obexd/mas: Fix crash when outparams is NULL
outparams can be NULL meaning no application parameters should be added
to the response. |
Luiz Augusto von Dentz |
11 years ago |
1 file, +3, -0 |
| 55eebc59 |
obexd/mas: Fix parsing of application parameters
Some commands don't have any mandatory application parameter which means
inparams can be NULL which should not be treated as a bad request. |
Luiz Augusto von Dentz |
11 years ago |
1 file, +18, -6 |