Bluetooth: controller: Fix missing reset of FC feature
Fixed a missing reset of FC feature on HCI reset. This feature provided a simple connection handle based event exclusions, but this is no longer needed with the support for controller to host flow control. This feature should be removed in the future. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
parent
b1e6ea27a7
commit
bebffd3dc6
|
@ -487,8 +487,13 @@ void ll_reset(void)
|
|||
_radio.packet_release_first = 0;
|
||||
_radio.packet_release_last = 0;
|
||||
|
||||
/* reset FC feature */
|
||||
/* TODO: remove this feature related all code in the future */
|
||||
_radio.fc_ack = _radio.fc_req;
|
||||
|
||||
/* reset whitelist and resolving list */
|
||||
ll_filter_reset(false);
|
||||
|
||||
/* memory allocations */
|
||||
common_init();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue