mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-06 07:00:59 +00:00
adv_bearer: fix memcpy
This commit is contained in:
parent
45d80b0845
commit
5f1af52084
@ -389,7 +389,7 @@ void adv_bearer_advertisements_set_params(uint16_t adv_int_min, uint16_t adv_int
|
||||
gap_adv_int_ms = gap_adv_int_min * 625 / 1000;
|
||||
gap_adv_type = adv_type;
|
||||
gap_direct_address_typ = direct_address_typ;
|
||||
(void)memcpy(gap_direct_address, &direct_address, 6);
|
||||
(void)memcpy(gap_direct_address, direct_address, 6);
|
||||
gap_channel_map = channel_map;
|
||||
gap_filter_policy = filter_policy;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user