| 56419b9c |
attrib-server: Remove unnecessary fields from struct gatt_channel
These fields are only used internally by attrib_channel_attach(). The
"No GATT server found..." error message was also removed as it is also
displayed by find_gatt_server(). |
Anderson Lizardo |
11 years ago |
1 file, +7, -16 |
| af5c3d50 |
various header include fixes for building with musl libc
we need:
sys/stat.h for mode_t
limits.h for PATH_MAX
Fixes compile errors:
In file included from tools/hciconfig.c:45:0:
./src/textfile.h:27:1: error: unknown type name 'mode_t'
int create_file(const char *filename, const mode_t mode);
^
tools/csr_usb.c: In function 'read_value':
tools/csr_usb.c:71:12: error: 'PATH_MAX' undeclared (first use in this function)
char path[PATH_MAX];
^ |
Natanael Copa |
11 years ago |
3 files, +3, -0 |
| ef80103f |
autopair: Remove time(NULL) fallback when seeding rand()
If /dev/urandom cannot be opened or read, just fail the plugin
initialization, as it is very unlikely that a fully working Linux system
does not have a working /dev/urandom. This also simplifies the code
logic. |
Anderson Lizardo |
11 years ago |
1 file, +18, -9 |
| a1d5393e |
android/hal-ipc-api: Trivial typo fix in doc |
Jakub Tyszkowski |
11 years ago |
1 file, +16, -16 |
| 4d1fbfc2 |
android/hal-ipc-api: Add missing sections in doc |
Jakub Tyszkowski |
11 years ago |
1 file, +12, -0 |
| 47e17be7 |
android/hal-ipc-api: Fix documentation structure and notation
Clean up the documentation by using 'Element # ...' notation for
variable length arrays of structs, fixing whitespaces and reordering
some parts. |
Jakub Tyszkowski |
11 years ago |
1 file, +116, -44 |
| 26f05356 |
android/hal-gatt-api: Rename Service ID to GATT Service ID
Use "GATT Service ID" instead "Service ID" inside ipc documentation
which is used to describe Core services like HAL_SERVICE_ID_GATT
himself. |
Jakub Tyszkowski |
11 years ago |
1 file, +22, -24 |
| 3d2e92ff |
android/handsfree: Support volume control in HSP |
Szymon Janc |
11 years ago |
1 file, +7, -1 |
| 2a7689be |
android/handsfree: Add support for volume synchronization |
Szymon Janc |
11 years ago |
1 file, +63, -2 |
| e4772b21 |
android/handsfree: Add support for AT+COPS command |
Szymon Janc |
11 years ago |
1 file, +48, -0 |
| 6a1a80fe |
android/handsfree: Add support for handling device status notification
This allows to send unsolicited CIEV codes with service, roam, signal
and battchg indicators values. |
Szymon Janc |
11 years ago |
1 file, +27, -1 |
| 0a1ec91f |
android/handsfree: Make connection state constants name shorter |
Szymon Janc |
11 years ago |
2 files, +18, -18 |
| 96d94b5c |
android/handsfree: Add support for AT+BIA command |
Szymon Janc |
11 years ago |
1 file, +71, -6 |
| ea0a5140 |
android/handsfree: Distinguish between HSP and HFP connection |
Szymon Janc |
11 years ago |
1 file, +19, -6 |
| 1bd727b4 |
android/handsfree: Add support for AT+CMER command
When this command is received SLC is connected. |
Szymon Janc |
11 years ago |
1 file, +47, -1 |
| b5b655fc |
android/handsfree: Add support for AT+CIND command |
Szymon Janc |
11 years ago |
1 file, +122, -1 |
| 1882bfbe |
android/handsfree: Add support for AT+BRSF command |
Szymon Janc |
11 years ago |
1 file, +31, -0 |
| 4ce9a630 |
shared/hfp: Add hfp_gw_result_get_number_default function |
Szymon Janc |
11 years ago |
2 files, +20, -0 |
| fdb556cb |
shared/hfp: Add function to check if reach end of command |
Szymon Janc |
11 years ago |
2 files, +6, -0 |
| 6ef33bd1 |
android/avdtp: Fix crash when DISCOVER failed
Discover callback is only set when avdtp_discover was successful so we
need to check if it's set before calling. |
Andrzej Kaczmarek |
11 years ago |
1 file, +2, -1 |
| a343faff |
android/hal-gatt-api: Use proper type for length
Length can be up to 600 thus 16bit value should be used. |
Jakub Tyszkowski |
11 years ago |
1 file, +1, -1 |
| f821ae9d |
android/hal-gatt-api: Simplify GATT Service ID struct
Make nested struct open coded for simplicity. |
Jakub Tyszkowski |
11 years ago |
2 files, +15, -15 |
| 144aa36b |
android/hal-gatt-api: Simplify GATT Read Char. event
Make nested struct open coded for simplicity. |
Jakub Tyszkowski |
11 years ago |
2 files, +4, -9 |
| 20a48c8f |
android/hal-gatt-api: Simplify GATT Notify ev struct
Make nested struct open coded for simplicity. |
Jakub Tyszkowski |
11 years ago |
2 files, +3, -8 |
| 2b62743b |
android/hal-gatt-api: Simplify GATT Test cmd struct
Make nested struct open coded for simplicity. |
Jakub Tyszkowski |
11 years ago |
2 files, +9, -14 |
| 1f11ee8f |
shared: Add timeout handling with mainloop support |
Lukasz Rymanowski |
11 years ago |
1 file, +78, -0 |
| b4769c31 |
shared: Add timeout handling with Glib support |
Lukasz Rymanowski |
11 years ago |
1 file, +73, -0 |
| f17a8376 |
shared: Add header for timeout abstraction |
Lukasz Rymanowski |
11 years ago |
1 file, +27, -0 |
| e966826c |
monitor: Use miliseconds instead of seconds in the timeout |
Lukasz Rymanowski |
11 years ago |
5 files, +15, -14 |
| e9a0a023 |
monitor: Allow to modify epoll even events are the same
This is epsecially needed when we want to modify timer. |
Lukasz Rymanowski |
11 years ago |
1 file, +0, -3 |
| 03ae0d71 |
tools/sco-tester: Remove not used function argument |
Marcin Kraglak |
11 years ago |
1 file, +3, -3 |
| 0e1fba49 |
android/hal-avrcp: Remove unused code |
Andrzej Kaczmarek |
11 years ago |
1 file, +0, -1 |
| 3b205298 |
android/avrcp: Fix PDU length calculation |
Andrzej Kaczmarek |
11 years ago |
1 file, +13, -8 |
| 45aa22f0 |
android/avrcp: Fix RegisterNotification response handling
For INTERIM RegisterNotification response we should keep request on
list since it will be needed for CHANGED response.
Requests on lists shall be matched by both pdu_id and event_id since we
can have multiple queued RegisterNotification requests and will need to
reply with proper transaction label. |
Andrzej Kaczmarek |
11 years ago |
1 file, +40, -27 |
| 5071d7dd |
android/avrcp: Fix response for RegisterNotification |
Andrzej Kaczmarek |
11 years ago |
1 file, +14, -1 |
| acf7c2a9 |
android/avrcp-lib: Move command functions together |
Luiz Augusto von Dentz |
11 years ago |
1 file, +32, -32 |
| 6b4e680c |
doc: Update test coverage document
Update AVRCP test numbers. |
Andrei Emeltchenko |
11 years ago |
1 file, +1, -1 |
| 028eb517 |
unit/avrcp: Add /TP/PAS/BI-01-C test
Test verifies that Get player app setting attribute text returns error
given invalid attribute id. |
Andrei Emeltchenko |
11 years ago |
1 file, +23, -1 |
| d73a0523 |
unit/avrcp: Add /TP/PAS/BV-11-C test
Test verifies that the set player application setting value command
issued from the Controller. |
Andrei Emeltchenko |
11 years ago |
1 file, +18, -0 |
| a6a22459 |
android/avrcp: Add avrcp_set_player_value() function |
Andrei Emeltchenko |
11 years ago |
2 files, +25, -0 |
| efa5208a |
unit/avrcp: Add /TP/PAS/BV-10-C test
Test verifies that the get current player application setting value
response issued from the Target. |
Andrei Emeltchenko |
11 years ago |
1 file, +42, -0 |
| c2d03da3 |
unit/avrcp: Add /TP/PAS/BV-09-C test
Test verifies that get current player application setting value command
issued from the Controller. |
Andrei Emeltchenko |
11 years ago |
1 file, +16, -0 |
| 47c5cd74 |
android/avrcp: Add avrcp_get_current_player_value() function |
Andrei Emeltchenko |
11 years ago |
2 files, +31, -0 |
| 9f459443 |
unit/avrcp: Add /TP/PAS/BV-08-C test
Test verifies that the get player application setting values response
issued from the Target. |
Andrei Emeltchenko |
11 years ago |
1 file, +29, -0 |
| 431c1de1 |
unit/avrcp: Add /TP/PAS/BV-06-C test
Test verifies that the list player application setting values response
issued from the Target. |
Andrei Emeltchenko |
11 years ago |
1 file, +29, -0 |
| 95f8bca2 |
android/avrcp: Search for AVRCP CT record before connecting
This is required in order to retrieve version and features which are
used by remote features notification. |
Luiz Augusto von Dentz |
11 years ago |
1 file, +154, -53 |
| 6d58ab59 |
android/hal-msg: Add possible AVRCP features
This adds possible AVRCP features which can be passed to Remote Features
notification. |
Luiz Augusto von Dentz |
11 years ago |
1 file, +5, -0 |
| d17cf990 |
AVCTP: Fix sending wrong response format
Reject and Not Implemented responses of PASS THROUGH commands shall
contain the data of the previous frame accourding to AVC Panel Subunit
specification page 87. |
Luiz Augusto von Dentz |
11 years ago |
2 files, +4, -4 |
| 31505cf1 |
android/client: Add AVRCP register_notification_cb support |
Luiz Augusto von Dentz |
11 years ago |
1 file, +6, -0 |
| 004fa032 |
android/client: Add AVRCP volume_change_cb support |
Ravi kumar Veeramally |
11 years ago |
1 file, +6, -0 |