Skip to content

Commit eb20155

Browse files
committed
increase heap 16K -> 32K
1 parent 0fccc4f commit eb20155

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcyphal_demo/src/application.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
namespace
2424
{
2525

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

2929
constexpr std::size_t BlockHeapSize = 128ULL * 1024ULL;

0 commit comments

Comments
 (0)