From c68c0c6526c0fc55af4a37080aaaa4cde916f218 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 1 Oct 2018 10:33:18 -0400 Subject: [PATCH] avr: Increase stack size to 256 for all AVR targets Recent code additions have increased the stack usage and it is no longer clear that everything will fit in 128 bytes. Increase all targets to 256 bytes (the atmega2560 was already at 256 bytes). Signed-off-by: Kevin O'Connor --- src/avr/Kconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/avr/Kconfig b/src/avr/Kconfig index 4f2f2b78..bef830c0 100644 --- a/src/avr/Kconfig +++ b/src/avr/Kconfig @@ -98,8 +98,7 @@ config AVR_CLKPR config AVR_STACK_SIZE int - default 256 if MACH_atmega2560 - default 128 + default 256 config AVR_WATCHDOG bool