mirror of https://github.com/ARMmbed/mbed-os.git
BLE: unwrap own_address_type value in GenericGap.
parent
a043f49e7c
commit
d659bc6561
|
@ -2378,7 +2378,7 @@ ble_error_t GenericGap::setScanParameters(const ScanParameters ¶ms)
|
||||||
};
|
};
|
||||||
|
|
||||||
return _pal_gap.set_extended_scan_parameters(
|
return _pal_gap.set_extended_scan_parameters(
|
||||||
(pal::own_address_type_t::type) params.get_own_address_type(),
|
(pal::own_address_type_t::type) params.get_own_address_type().value(),
|
||||||
(pal::scanning_filter_policy_t::type) params.get_scanning_filter_policy(),
|
(pal::scanning_filter_policy_t::type) params.get_scanning_filter_policy(),
|
||||||
params.get_scanning_phys(),
|
params.get_scanning_phys(),
|
||||||
active_scanning,
|
active_scanning,
|
||||||
|
@ -2397,7 +2397,7 @@ ble_error_t GenericGap::setScanParameters(const ScanParameters ¶ms)
|
||||||
legacy_configuration.active_scanning,
|
legacy_configuration.active_scanning,
|
||||||
legacy_configuration.interval.value(),
|
legacy_configuration.interval.value(),
|
||||||
legacy_configuration.window.value(),
|
legacy_configuration.window.value(),
|
||||||
(pal::own_address_type_t::type) params.get_own_address_type(),
|
(pal::own_address_type_t::type) params.get_own_address_type().value(),
|
||||||
(pal::scanning_filter_policy_t::type) params.get_scanning_filter_policy()
|
(pal::scanning_filter_policy_t::type) params.get_scanning_filter_policy()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue