Conversation
Merge latest master
Removed unwanted vscode files.
Completely refactored path storage from heap storage in DRAM to flash storage in a tailor-made log-append database (microStore). https://github.com/attermann/microStore
constexpr added to pool_info constructor
constexpr pool_info(uint8_t t, size_t s) : type(t), buffer_size(s) {}
Since both arguments (RNS_HEAP_POOL_ALLOCATOR=1 and RNS_HEAP_POOL_BUFFER_SIZE=16384) are compile-time integer constants, this promotes heap_pool_info to constant initialization — buffer_size = 16384 is guaranteed to be set before any code runs, including global constructors from the Adafruit framework that trigger the premature pool_init.
- passing path_table_maxsize through to new path_store - reverted nrf52 bulds to use heap pool for all allocations
- serializing time offset more frequently - providing time offet to microStore for accurate timestamps - setting path table TTL appropriately depending on the originating interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.