Bluetooth: host: Remove deprecated scan filter duplicate params

Remove the deprecated scan filter duplicate enum values and parameter.
This was deprecated for the 2.3.0 release.

Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
This commit is contained in:
Joakim Andersson 2021-01-20 16:05:03 +01:00 committed by Anas Nashif
commit a0d62f03a0
3 changed files with 12 additions and 13 deletions

View file

@ -228,7 +228,7 @@ static int scan_start(void)
*/
struct bt_le_scan_param scan_param = {
.type = BT_LE_SCAN_TYPE_ACTIVE,
.filter_dup = BT_LE_SCAN_OPT_FILTER_DUPLICATE,
.options = BT_LE_SCAN_OPT_FILTER_DUPLICATE,
.interval = BT_GAP_SCAN_FAST_INTERVAL,
.window = BT_GAP_SCAN_FAST_WINDOW,
};