Skip to content

Commit

Permalink
increase heap 16K -> 32K
Browse files Browse the repository at this point in the history
  • Loading branch information
serges147 committed Feb 6, 2025
1 parent 0fccc4f commit eb20155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcyphal_demo/src/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
namespace
{

constexpr std::size_t HeapSize = 16ULL * 1024ULL;
constexpr std::size_t HeapSize = 32ULL * 1024ULL;
alignas(O1HEAP_ALIGNMENT) std::array<cetl::byte, HeapSize> s_heap_arena{}; // NOLINT

constexpr std::size_t BlockHeapSize = 128ULL * 1024ULL;
Expand Down

0 comments on commit eb20155

Please sign in to comment.