diff --git a/CHANGELOG.md b/CHANGELOG.md index ed97abfbc..11610cca3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - GAP: LE Whitelist API with 'gap_le_whitelist_x' with x = add, remove, clear and new `gap_connect_with_whitelist` - SDP Client: add sdp_client_register_query_callback() allows to register query request instead of polling sdp_client_ready() - BNEP lwIP: add `bnep_lwip_connect` to establish BNEP connection and manage lwIP network interface +- New `btstack_linked_queue` utility, a linked list-based queue with first-in-first-out semantics and constant time enqueue/dequeue operations ### Changed - GAP: treat AES-CCM encrypted connection as mutually authenticated (BIAS) diff --git a/port/stm32-sx1280/controller/btstack_linked_queue.c b/src/btstack_linked_queue.c similarity index 100% rename from port/stm32-sx1280/controller/btstack_linked_queue.c rename to src/btstack_linked_queue.c diff --git a/port/stm32-sx1280/controller/btstack_linked_queue.h b/src/btstack_linked_queue.h similarity index 100% rename from port/stm32-sx1280/controller/btstack_linked_queue.h rename to src/btstack_linked_queue.h