increase stack size for basflash
This commit is contained in:
@@ -23,8 +23,9 @@
|
|||||||
|
|
||||||
#include <bas_types.h>
|
#include <bas_types.h>
|
||||||
|
|
||||||
static uint32_t ownstack[4096];
|
#define STACKSIZE 16384
|
||||||
static uint32_t *stackptr = &ownstack[4095];
|
static uint32_t ownstack[STACKSIZE];
|
||||||
|
static uint32_t *stackptr = &ownstack[STACKSIZE - 1];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* setup our own stack in SDRAM to prevent clashing BaS's in SRAM (size limited).
|
* setup our own stack in SDRAM to prevent clashing BaS's in SRAM (size limited).
|
||||||
|
|||||||
Reference in New Issue
Block a user