Merge pull request #1418 from bthebaudeau/cc2538-fix-stack-alignment

cc2538: Fix stack alignment
This commit is contained in:
George Oikonomou 2015-12-13 11:03:18 +00:00
commit cbe704c7f4
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ void uart1_isr(void);
#endif
/*---------------------------------------------------------------------------*/
/* Allocate stack space */
static unsigned long stack[512] __attribute__ ((section(".stack")));
static uint64_t stack[256] __attribute__ ((section(".stack")));
/*---------------------------------------------------------------------------*/
__attribute__((__section__(".vectors")))
void(*const vectors[])(void) =