Linux bluetooth development
 help / color / mirror / Atom feed
From: Andrei Emeltchenko <andrei.emeltchenko@gmail.com>
To: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
Cc: "linux-bluetooth@vger.kernel.org" <linux-bluetooth@vger.kernel.org>
Subject: Re: [PATCHv2 2/6] android/avctp: Add UNIT INFO command request
Date: Mon, 24 Feb 2014 08:54:28 +0200	[thread overview]
Message-ID: <20140224065425.GA4133@aemeltch-MOBL1> (raw)
In-Reply-To: <CABBYNZL9G3odx=Dgo_R9e0M0N8ZwewLqx1PPnnCrxTz8NuXFxw@mail.gmail.com>

Hi Luiz,

On Sun, Feb 23, 2014 at 01:57:05PM +0200, Luiz Augusto von Dentz wrote:
> Hi Andrei,
> 
> On Fri, Feb 21, 2014 at 5:23 PM, Andrei Emeltchenko
> <andrei.emeltchenko@gmail.com> wrote:
> > From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
> >
> > ---
> >  android/avctp.c | 13 +++++++++++++
> >  android/avctp.h |  3 +++
> >  2 files changed, 16 insertions(+)
> >
> > diff --git a/android/avctp.c b/android/avctp.c
> > index 1e414d1..57a8c23 100644
> > --- a/android/avctp.c
> > +++ b/android/avctp.c
> > @@ -1266,6 +1266,19 @@ int avctp_send_vendordep_req(struct avctp *session, uint8_t code,
> >                                                 func, user_data);
> >  }
> >
> > +int avctp_send_unit_info_req(struct avctp *session, avctp_rsp_cb func,
> > +                                                               void *user_data)
> > +{
> > +       uint8_t operands[5];
> > +
> > +       memset(operands, 0xFF, sizeof(operands));
> > +
> > +       return avctp_send_req(session, AVC_CTYPE_STATUS,
> > +                               AVC_SUBUNIT_UNIT, AVC_OP_UNITINFO,
> > +                               operands, sizeof(operands),
> > +                               func, user_data);
> > +}
> > +
> >  unsigned int avctp_register_passthrough_handler(struct avctp *session,
> >                                                 avctp_passthrough_cb cb,
> >                                                 void *user_data)
> > diff --git a/android/avctp.h b/android/avctp.h
> > index dfa0ca6..7496e53 100644
> > --- a/android/avctp.h
> > +++ b/android/avctp.h
> > @@ -46,6 +46,7 @@
> >
> >  /* subunits of interest */
> >  #define AVC_SUBUNIT_PANEL              0x09
> > +#define AVC_SUBUNIT_UNIT               0x1f
> >
> >  /* operands in passthrough commands */
> >  #define AVC_SELECT                     0x00
> > @@ -170,3 +171,5 @@ int avctp_send_vendordep_req(struct avctp *session, uint8_t code,
> >  int avctp_send_browsing_req(struct avctp *session,
> >                                 uint8_t *operands, size_t operand_count,
> >                                 avctp_browsing_rsp_cb func, void *user_data);
> > +int avctp_send_unit_info_req(struct avctp *session, avctp_rsp_cb func,
> > +                                                       void *user_data);
> > --
> > 1.8.3.2
> 
> This probably needs to be internal and sent automatically once
> connected specially if it is for a mandatory test.

So what do you propose with this case? Make it private and send this
command in avrcp_new() ?

Best regards 
Andrei Emeltchenko 

  reply	other threads:[~2014-02-24  6:54 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-21 15:23 [PATCHv2 1/6] unit/avrcp: First unit test for AVRCP profile Andrei Emeltchenko
2014-02-21 15:23 ` [PATCHv2 2/6] android/avctp: Add UNIT INFO command request Andrei Emeltchenko
2014-02-23 11:57   ` Luiz Augusto von Dentz
2014-02-24  6:54     ` Andrei Emeltchenko [this message]
2014-02-24  8:28       ` Luiz Augusto von Dentz
2014-02-21 15:23 ` [PATCHv2 3/6] android/avrcp: Implement avrcp_get_avctp Andrei Emeltchenko
2014-02-23 11:54   ` Luiz Augusto von Dentz
2014-02-21 15:23 ` [PATCHv2 4/6] android/avrcp: Use NULL for zero pointers Andrei Emeltchenko
2014-02-24  6:55   ` Andrei Emeltchenko
2014-02-24 12:31     ` Luiz Augusto von Dentz
2014-02-21 15:23 ` [PATCHv2 5/6] unit/avrcp: Add /TP/ICC/BV-01-I/CT test Andrei Emeltchenko
2014-02-23 12:06   ` Luiz Augusto von Dentz
2014-02-24  7:03     ` Andrei Emeltchenko
2014-02-21 15:23 ` [PATCHv2 6/6] unit/avrcp: Add /TP/ICC/BV-01-I/TG test Andrei Emeltchenko
2014-02-24  7:09 ` [PATCHv2 1/6] unit/avrcp: First unit test for AVRCP profile Andrei Emeltchenko
2014-02-24  8:25   ` Luiz Augusto von Dentz

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=20140224065425.GA4133@aemeltch-MOBL1 \
    --to=andrei.emeltchenko@gmail.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