diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-10-01 10:33:18 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-10-01 10:33:18 -0400 |
commit | c68c0c6526c0fc55af4a37080aaaa4cde916f218 (patch) | |
tree | 25d8c4239adea5d702e6bbe8ae5361e5a34e26d3 /src/avr | |
parent | b3a6fbed74e5d81c753cb359e5f7bf48f6bd29db (diff) | |
download | kutter-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>
Diffstat (limited to 'src/avr')
-rw-r--r-- | src/avr/Kconfig | 3 |
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 |