Hi Szymon, > There is no HAL function to enable/disable SSP so always enable it if > supported by controller. > --- > android/adapter.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/android/adapter.c b/android/adapter.c > index a3f9aa6..9f2e019 100644 > --- a/android/adapter.c > +++ b/android/adapter.c > @@ -528,6 +528,11 @@ static void read_info_complete(uint8_t status, uint16_t length, const void *para > load_link_keys(NULL); > > set_io_capability(); > + > + if ((adapter->supported_settings & MGMT_SETTING_SSP) && > + !(adapter->current_settings & MGMT_SETTING_SSP)) > + set_mode(MGMT_OP_SET_SSP, 0x01); > + missing_settings = current_settings ^ supported_settings; if (missing_setting & MGMT_SETTING_SSP) .. Regards Marcel -- 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