|
|
|
@ -31,8 +31,10 @@ OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
|
|
|
|
OUTPUT_ARCH(arm) |
|
|
|
|
SEARCH_DIR(.) |
|
|
|
|
|
|
|
|
|
/* The stack size used by the application. NOTE: you need to adjust */ |
|
|
|
|
STACK_SIZE = DEFINED(STACK_SIZE) ? STACK_SIZE : 2K ; |
|
|
|
|
/* Define the default stack size for interrupt mode. As no context is |
|
|
|
|
saved on this stack and ISRs are supposed to be short, it can be fairly |
|
|
|
|
small. 512 byte should be a save assumption here */ |
|
|
|
|
STACK_SIZE = DEFINED(STACK_SIZE) ? STACK_SIZE : 0x200; /* 512 byte */ |
|
|
|
|
|
|
|
|
|
/* Section Definitions */ |
|
|
|
|
SECTIONS |
|
|
|
|