diff --git a/tests/bluetooth/tester/src/btp_gap.c b/tests/bluetooth/tester/src/btp_gap.c index 440be8d3d88..061fcc52c8b 100644 --- a/tests/bluetooth/tester/src/btp_gap.c +++ b/tests/bluetooth/tester/src/btp_gap.c @@ -286,6 +286,10 @@ static uint8_t controller_info(const void *cmd, uint16_t cmd_len, supported_settings |= BIT(BTP_GAP_SETTINGS_LE); supported_settings |= BIT(BTP_GAP_SETTINGS_ADVERTISING); supported_settings |= BIT(BTP_GAP_SETTINGS_EXTENDED_ADVERTISING); + if (IS_ENABLED(CONFIG_BT_CLASSIC)) { + supported_settings |= BIT(BTP_GAP_SETTINGS_BREDR); + supported_settings |= BIT(BTP_GAP_SETTINGS_SSP); + } rp->supported_settings = sys_cpu_to_le32(supported_settings); rp->current_settings = sys_cpu_to_le32(current_settings);