| 364db6c2 |
android/tester-bluetooth: Add enable success test case
This adds also enable action which enable bluetooth adapter. |
Grzegorz Kolodziejczyk |
11 years ago |
3 files, +27, -0 |
| cd9a6e7a |
android/tester-bluetooth: Add initial test case
This also adds handle of test steps in android tester framework like:
initializing, matching, verifyng and generic test action which
performes first step action. |
Grzegorz Kolodziejczyk |
11 years ago |
3 files, +132, -2 |
| 204fb41d |
android/tester-bluetooth: Initial bluetooth HAL tester
This is initial patch for android bluetooth HAL tester. It'll contain
test cases for bluetooth hal using android tester framework
(tester-main). Test step actions for this and every tester should be
declared in main tester. Cohesion of test action make action function
more useful and centralized. |
Grzegorz Kolodziejczyk |
11 years ago |
3 files, +37, -0 |
| 11d6f554 |
android/tester-ng: Add android-tester-ng
Based on past experience with android-tester, new android tester is
written from scrath with fixed all known bugs and framework
inadvertancies. Once new test case will be added, same one from old
android tester will be removed, until whole test case list will be
replaced. |
Grzegorz Kolodziejczyk |
11 years ago |
3 files, +613, -0 |
| 3fb40e78 |
shared/tester: Add support for debug logs for tester
It allows to print debug logs if debug mode is enabled. It could help in
case of additional debug prints need (verbose mode). |
Grzegorz Kolodziejczyk |
11 years ago |
2 files, +16, -0 |
| 4002d4d3 |
android/gatt: Disallow signed write on BR/EDR connection
As per Core Specification 4.1 Part G p. 4.9.2 signed write without
reponse shall not be used on BR/EDR. |
Szymon Janc |
11 years ago |
1 file, +27, -0 |
| 688218cd |
android/gatt: Fix not sending notification for signed write
Signed write has no response and notificatino should be send to
Android Framework in case of write succeed. |
Szymon Janc |
11 years ago |
1 file, +2, -1 |
| 89702525 |
android/gatt: Fix signed write on encrypted link
This fix invalid setting of res instead of status in error case. |
Szymon Janc |
11 years ago |
1 file, +5, -5 |
| 797466d1 |
android/gatt: Make signed_write_cmd similar to rest of write functions
This avoids confusion with assigning bool to uint type. |
Szymon Janc |
11 years ago |
1 file, +8, -6 |
| 1475d9e5 |
tools/smp-tester: Add user confirmation callback |
Johan Hedberg |
11 years ago |
1 file, +19, -0 |
| 586cdbc2 |
build: Use dist_noinst_MANS for now due to an automake issue |
Marcel Holtmann |
11 years ago |
1 file, +1, -1 |
| 3672e43f |
build: Add configure option for generating manual pages |
Marcel Holtmann |
11 years ago |
3 files, +9, -0 |
| 5182dc7c |
emulator: Reopen PTY master when slave closes it |
Marcel Holtmann |
11 years ago |
1 file, +39, -27 |
| a18440c2 |
tools: Use mainloop handling for btattach utility |
Marcel Holtmann |
11 years ago |
2 files, +108, -22 |
| 096799fd |
emulator: Add support for providing a pseudo terminal |
Marcel Holtmann |
11 years ago |
4 files, +289, -2 |
| 6930cd12 |
android/README: Don't mention minor Android release number
Minor releases are quite often and don't introduce significant changes.
There is no need pointing this here since aosp-bluez page already
provides info about latest supported minor release. |
Szymon Janc |
11 years ago |
1 file, +4, -4 |
| 7dd1e9c7 |
build: Add support for asciidoc based manual pages |
Marcel Holtmann |
11 years ago |
3 files, +47, -1 |
| b58f66f5 |
tools: Print controller index after attaching serial port |
Marcel Holtmann |
11 years ago |
1 file, +10, -1 |
| 4a7e8d54 |
android/gatt: Register SDP records for services |
Szymon Janc |
11 years ago |
2 files, +124, -6 |
| bfbdb574 |
shared/gatt: Add function for getting service UUID |
Szymon Janc |
11 years ago |
2 files, +33, -0 |
| 31a3c6c9 |
android/gatt: Choose LE or BR/EDR based on last seen bearer
This allows to connect both over LE and BR/EDR bearer. |
Szymon Janc |
11 years ago |
1 file, +48, -0 |
| 7eb9cab6 |
android/bluetooth: Add function for checking last seen bearer |
Szymon Janc |
11 years ago |
2 files, +12, -0 |
| 5b791c2c |
android/gatt: Add support for GATT over BR/EDR
This adds listening on both LE and BR/EDR and SDP records for GAP,
GATT and DIS. |
Szymon Janc |
11 years ago |
1 file, +193, -50 |
| 0f03ab4f |
core: Refactor dirent type getter to a shared function |
Johan Hedberg |
11 years ago |
4 files, +24, -13 |
| be9876dd |
core: Fix filename/dirname usage & shadowing |
Johan Hedberg |
11 years ago |
1 file, +2, -2 |
| 40ba8a3d |
profiles/input: Fix usage of PATH_MAX
PATH_MAX already contains the terminating null so there's no need to +1
to it. Also, snprintf guarantees a null-terminated string so there's no
need to explicitly set a terminating character after the call. |
Johan Hedberg |
11 years ago |
1 file, +1, -2 |
| f0591385 |
android: Fix usage of PATH_MAX
PATH_MAX already contains the terminating null so there's no need to +1
to it. |
Johan Hedberg |
11 years ago |
3 files, +7, -7 |
| efad8923 |
core: Fix filename contruction with PATH_MAX and snprintf
PATH_MAX contains the terminating null, so there's no need to +1 to it.
Also, snprintf guarantees a null-terminated string, so there's no need
to explicitly set a terminating character after the call. |
Johan Hedberg |
11 years ago |
3 files, +36, -103 |
| aeb998ca |
core: Add support for secondary dirent type lookup
On some systems readdir() may only return DT_UNKNOWN for the dirent
type. In such a case we need to do a secondary lookup e.g. with lstat to
figure out the real time (for our purposes we're only interested in
whether it's a directory or not). |
Johan Hedberg |
11 years ago |
1 file, +19, -4 |
| 424bfc77 |
android/pts: Update PTS files for DID
Updated PICS, PIXITs and PTS tests results for DID.
PTS version 5.2. Android version 4.4.4 |
Sebastian Chlad |
11 years ago |
3 files, +5, -5 |
| db83ef1d |
android/pts: Update PTS files for AVCTP
PICS and PIXITs updated to PTS 5.2. Regression done for Android
4.4.4. |
Sebastian Chlad |
11 years ago |
3 files, +6, -6 |
| 44715cf0 |
android/pts: PTS updates for A2DP
PICS and PIXITs files checked against PTS 5.2. |
Sebastian Chlad |
11 years ago |
3 files, +7, -6 |
| 394b6898 |
android/pts: Initial PTS docs for RFCOMM |
Sebastian Chlad |
11 years ago |
5 files, +110, -69 |
| f43d3385 |
mgmt-tester: Update expected LE-only supported settings |
Johan Hedberg |
11 years ago |
1 file, +1, -1 |
| 5398ab2d |
shared/att: Implement bt_att_register.
This patch implements bt_att_register and the internal mechanism for invoking
registered callbacks when a non-response/non-indication PDU is received from the
remote end. |
Arman Uguray |
11 years ago |
1 file, +186, -21 |
| fff2770a |
shared/att: Remove parameters structures.
This patch removes the PDU encoding functionality from src/shared/att. This is
now left up to the upper layer and the responsibilities of bt_att are restricted
to handle the low-level transport and the sequential/non-sequential ATT protocol
logic. |
Arman Uguray |
11 years ago |
3 files, +98, -284 |
| 06606694 |
android/gatt: Set need_resp flag in when received PREP_WRITE_REQ
Set need_resp flag if pepare write request have been received.
This is needed because application should send response to stack. |
Marcin Kraglak |
11 years ago |
1 file, +4, -1 |
| c5966b25 |
android/gatt: Fix sending incorrect frames
Don't send pdu if encoding failed. It cause errors when trying
send notification larger than MTU. Length passed to
g_attrib_send was 0 which caused errors on ATT. |
Marcin Kraglak |
11 years ago |
1 file, +8, -3 |
| b91e19db |
monitor: Use lowercase for additional words in field names |
Marcel Holtmann |
11 years ago |
1 file, +2, -2 |
| 36d67403 |
client: Allow to terminate if bluetoothd was not started
This allows to terminate bluetoothctl with CTRL-C if daemon didn't
start. Otherwise input is not functional and user must kill
bluetoothctl by sending signal from another terminal. |
Szymon Janc |
11 years ago |
1 file, +17, -6 |
| b43a79d0 |
tools: Add support for firmware loading for Intel bootloader |
Marcel Holtmann |
11 years ago |
1 file, +193, -5 |
| 8c30903a |
tools: Reading Local Version Information is not supported for bootloader |
Marcel Holtmann |
11 years ago |
1 file, +2, -28 |
| f3cf06f3 |
Release 5.21 |
Marcel Holtmann |
11 years ago |
2 files, +10, -1 |
| 571ddc03 |
doc: Update list of management version 1.7 features |
Marcel Holtmann |
11 years ago |
1 file, +6, -4 |
| b1d45edc |
monitor: Print control settings details only if available |
Marcel Holtmann |
11 years ago |
1 file, +7, -5 |
| 902b4426 |
monitor: Decode New Configuration Options control message |
Marcel Holtmann |
11 years ago |
1 file, +36, -0 |
| 2cf1e024 |
tools: Add support for New Configuration Options mgmt event |
Marcel Holtmann |
11 years ago |
1 file, +19, -0 |
| 355d0dac |
lib: Add definition for New Configuration Options mgmt event |
Marcel Holtmann |
11 years ago |
1 file, +3, -0 |
| dab577a7 |
doc: Add description for New Configuration Options mgmt event |
Marcel Holtmann |
11 years ago |
1 file, +11, -0 |
| 2168043c |
tools: Add command for changing external configuration option |
Marcel Holtmann |
11 years ago |
1 file, +55, -19 |