X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Farm%2Fscripts%2Fat91sam7_256_ram.ld;h=c570b9719c169c1bba43a20023a50e97cba6b4a9;hb=ef59482dd1c7167b3cb5718572c42019cf16594b;hp=3b5279c49e5262105fce9f7c14b2e1d49f67b948;hpb=832c02bf0462d4905afe8a4b8c7194144cd9e198;p=bertos.git diff --git a/bertos/cpu/arm/scripts/at91sam7_256_ram.ld b/bertos/cpu/arm/scripts/at91sam7_256_ram.ld index 3b5279c4..c570b971 100644 --- a/bertos/cpu/arm/scripts/at91sam7_256_ram.ld +++ b/bertos/cpu/arm/scripts/at91sam7_256_ram.ld @@ -58,10 +58,10 @@ MEMORY * Define stack size here */ FIQ_STACK_SIZE = 0x0100; -IRQ_STACK_SIZE = 0x0100; +IRQ_STACK_SIZE = 0x0400; ABT_STACK_SIZE = 0x0100; UND_STACK_SIZE = 0x0100; -SVC_STACK_SIZE = 0x0400; +SVC_STACK_SIZE = 0x1000; /* * Allocate section memory @@ -114,27 +114,27 @@ SECTIONS PROVIDE (__stack_fiq_start = .); . += FIQ_STACK_SIZE; - . = ALIGN(4); + . = ALIGN(8); PROVIDE (__stack_fiq_end = .); PROVIDE (__stack_irq_start = .); . += IRQ_STACK_SIZE; - . = ALIGN(4); + . = ALIGN(8); PROVIDE (__stack_irq_end = .); PROVIDE (__stack_abt_start = .); . += ABT_STACK_SIZE; - . = ALIGN(4); + . = ALIGN(8); PROVIDE (__stack_abt_end = .); PROVIDE (__stack_und_start = .); . += UND_STACK_SIZE; - . = ALIGN(4); + . = ALIGN(8); PROVIDE (__stack_und_end = .); PROVIDE (__stack_svc_start = .); . += SVC_STACK_SIZE; - . = ALIGN(4); + . = ALIGN(8); PROVIDE (__stack_svc_end = .); PROVIDE (__stack_end = .);