From 13bd51d5147d2bcdb866458d451f1a68a2f293fe Mon Sep 17 00:00:00 2001 From: Risto Date: Fri, 28 May 2021 15:42:03 +0200 Subject: [PATCH] Fix stack alignment 29+1 is not dividable with 4, the same for 50. --- radio/src/bin_allocator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radio/src/bin_allocator.h b/radio/src/bin_allocator.h index c47597f2a..9425a45e4 100644 --- a/radio/src/bin_allocator.h +++ b/radio/src/bin_allocator.h @@ -83,8 +83,8 @@ public: typedef BinAllocator<39,300> BinAllocator_slots1; typedef BinAllocator<79,100> BinAllocator_slots2; #else -typedef BinAllocator<29,200> BinAllocator_slots1; -typedef BinAllocator<91,50> BinAllocator_slots2; +typedef BinAllocator<39,200> BinAllocator_slots1; +typedef BinAllocator<91,64> BinAllocator_slots2; #endif #if defined(USE_BIN_ALLOCATOR)