Hi Lukasz, On Tue, Nov 12, 2013, Lukasz Rymanowski wrote: > --- > android/adapter.c | 10 ++++++++-- > 1 file changed, 8 insertions(+), 2 deletions(-) > > diff --git a/android/adapter.c b/android/adapter.c > index a59ab4e..ac1ebc2 100644 > --- a/android/adapter.c > +++ b/android/adapter.c > @@ -515,7 +515,10 @@ static void pin_code_request_callback(uint16_t index, uint16_t length, > > DBG("%s type %u secure %u", dst, ev->addr.type, ev->secure); > > - /* TODO name and CoD of remote devices should probably be cached */ > + /* It is ok to have empty name and CoD of remote devices here since > + * those information has been already provided on device_connected event > + * or during device scaning. Android will use that instead. > + */ > memset(&hal_ev, 0, sizeof(hal_ev)); > bdaddr2android(&ev->addr.bdaddr, hal_ev.bdaddr); Have you considered security mode 3 devices? There you will get a pin code request before you get a device_connected. You can even try this yourself by doing "hciconfig hci0 auth" before attempting to pair. That said, I'm not sure if there is anything we can do better regarding such devices, but at least we should keep this use case in mind. Johan -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html