Linux bluetooth development
 help / color / mirror / Atom feed
From: Szymon Janc <szymon.janc@tieto.com>
To: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH BlueZ 1/9] android/hal-ipc-api: Add Get Play Status Response
Date: Wed, 12 Feb 2014 19:29:05 +0100	[thread overview]
Message-ID: <7446843.dRdmMMYOsq@leonov> (raw)
In-Reply-To: <1392216494-30885-1-git-send-email-luiz.dentz@gmail.com>

Hi Luiz,

On Wednesday 12 of February 2014 16:48:06 Luiz Augusto von Dentz wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> ---
>  android/hal-ipc-api.txt | 30 +++++++++++++++++++++++++++++-
>  android/hal-msg.h       | 16 ++++++++++++++++
>  2 files changed, 45 insertions(+), 1 deletion(-)
> 
> diff --git a/android/hal-ipc-api.txt b/android/hal-ipc-api.txt
> index ad5d192..01c2e81 100644
> --- a/android/hal-ipc-api.txt
> +++ b/android/hal-ipc-api.txt
> @@ -1174,7 +1174,35 @@ Bluetooth Remote Control HAL (ID 8)
>  Android HAL name: "avrcp" (BT_PROFILE_AV_RC_ID)
> 
>  	Opcode 0x00 - Error response
> -	Opcode 0x01 - Get Play Status command/response
> +
> +		Response parameters: Status (1 octet)
> +
> +		Valid status values: 0x01 = Fail
> +		                     0x02 = Not ready
> +		                     0x03 = No memory
> +		                     0x04 = Busy
> +		                     0x05 = Done (already completed)
> +		                     0x06 = Unsupported
> +		                     0x07 = Parameter invalid
> +		                     0x08 = Unhandled
> +		                     0x09 = Authentication failure
> +		                     0x0a = Remote device down
> +
> +	Opcode 0x01 - Get Play Status Response command/response
> +
> +		Command parameters: Status (1 octet)
> +		                    Duration (4 octets)
> +		                    Position (4 octets)
> +
> +		In case of an error, the error response will be returned.
> +
> +		Valid status values: 0x00 = Stopped
> +		                     0x01 = Playing
> +		                     0x02 = Paused
> +		                     0x03 = Fwd seek
> +		                     0x04 = Rev seek
> +		                     0xff = Error
> +
>  	Opcode 0x02 - List Player Application Attributes command/response
>  	Opcode 0x03 - List Player Application Values command/response
>  	Opcode 0x04 - Get Player Application Values command/response
> diff --git a/android/hal-msg.h b/android/hal-msg.h
> index 6ef00f9..82cd3f5 100644
> --- a/android/hal-msg.h
> +++ b/android/hal-msg.h
> @@ -783,3 +783,19 @@ struct hal_ev_handsfree_unknown_at {
>  } __attribute__((packed));
> 
>  #define HAL_EV_HANDSFREE_HSP_KEY_PRESS	0x90
> +
> +/* AVRCP HAL API */
> +
> +#define HAL_AVRCP_PLAY_STATUS_STOPPED	0x00
> +#define HAL_AVRCP_PLAY_STATUS_PLAYING	0x01
> +#define HAL_AVRCP_PLAY_STATUS_PAUSED	0x02
> +#define HAL_AVRCP_PLAY_STATUS_FWD_SEEK	0x03
> +#define HAL_AVRCP_PLAY_STATUS_REV_SEEK	0x04
> +#define HAL_AVRCP_PLAY_STATUS_ERROR	0xff
> +
> +#define HAL_OP_AVRCP_GET_PLAY_STATUS	0x01
> +struct hal_cmd_avrcp_get_play_status {
> +	uint8_t status;
> +	uint32_t duration;
> +	uint32_t position;
> +} __attribute__((packed));

All patches in this set have been applied, thanks.

-- 
BR
Szymon Janc

      parent reply	other threads:[~2014-02-12 18:29 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-12 14:48 [PATCH BlueZ 1/9] android/hal-ipc-api: Add Get Play Status Response Luiz Augusto von Dentz
2014-02-12 14:48 ` [PATCH BlueZ 2/9] android/hal-ipc-api: Add List Player Attributes Response Luiz Augusto von Dentz
2014-02-12 14:48 ` [PATCH BlueZ 3/9] android/hal-ipc-api: Add List Player Values Response Luiz Augusto von Dentz
2014-02-12 14:48 ` [PATCH BlueZ 4/9] android/hal-ipc-api: Add Get Player Attributes Response Luiz Augusto von Dentz
2014-02-12 14:48 ` [PATCH BlueZ 5/9] android/hal-ipc-api: Add Get Player Attributes Text Response Luiz Augusto von Dentz
2014-02-12 14:48 ` [PATCH BlueZ 6/9] android/hal-ipc-api: Add Get Player Values " Luiz Augusto von Dentz
2014-02-12 14:48 ` [PATCH BlueZ 7/9] android/hal-ipc-api: Add Get Element Attributes " Luiz Augusto von Dentz
2014-02-12 14:48 ` [PATCH BlueZ 8/9] android/hal-ipc-api: Add Set Player Attributes Value Response Luiz Augusto von Dentz
2014-02-12 14:48 ` [PATCH BlueZ 9/9] android/hal-ipc-api: Add Register Notification Response Luiz Augusto von Dentz
2014-02-12 18:29 ` Szymon Janc [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7446843.dRdmMMYOsq@leonov \
    --to=szymon.janc@tieto.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=luiz.dentz@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox