aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-10-01 10:33:18 -0400
committerKevin O'Connor <kevin@koconnor.net>2018-10-01 10:33:18 -0400
commitc68c0c6526c0fc55af4a37080aaaa4cde916f218 (patch)
tree25d8c4239adea5d702e6bbe8ae5361e5a34e26d3
parentb3a6fbed74e5d81c753cb359e5f7bf48f6bd29db (diff)
downloadkutter-c68c0c6526c0fc55af4a37080aaaa4cde916f218.tar.gz
kutter-c68c0c6526c0fc55af4a37080aaaa4cde916f218.tar.xz
kutter-c68c0c6526c0fc55af4a37080aaaa4cde916f218.zip
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 <kevin@koconnor.net>
-rw-r--r--src/avr/Kconfig3
1 files changed, 1 insertions, 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