mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
Merge branch 'bugfix/memory_cleanup_optimization_v5.0' into 'release/v5.0'
Nimble: Fixes for memory leak / optimization (v5.0) See merge request espressif/esp-idf!24140
This commit is contained in:
commit
7684bd5cdb
@ -480,7 +480,7 @@ config BT_NIMBLE_HS_STOP_TIMEOUT_MS
|
||||
config BT_NIMBLE_HOST_BASED_PRIVACY
|
||||
bool "Enable host based privacy for random address."
|
||||
default n
|
||||
depends on BT_NIMBLE_ENABLED && !IDF_TARGET_ESP32
|
||||
depends on BT_NIMBLE_ENABLED && IDF_TARGET_ESP32
|
||||
help
|
||||
Use this option to do host based Random Private Address resolution.
|
||||
If this option is disabled then controller based privacy is used.
|
||||
|
@ -366,6 +366,7 @@ static int host_rcv_pkt(uint8_t *data, uint16_t len)
|
||||
assert(evbuf != NULL);
|
||||
}
|
||||
|
||||
memset(evbuf, 0, sizeof *evbuf);
|
||||
memcpy(evbuf, &data[1], totlen);
|
||||
|
||||
rc = ble_hci_trans_ll_evt_tx(evbuf);
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 0bf2138ae336325c7a2b6e34969fa02ef237b76f
|
||||
Subproject commit 85ffe748a2f08d9293cae0a55a473155ccd049ab
|
Loading…
x
Reference in New Issue
Block a user