mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
fixed definitions for stack areas
This commit is contained in:
parent
e010ea30e5
commit
e48b2c681e
@ -1,5 +1,5 @@
|
||||
__USTACK_SIZE = 0x00000200;
|
||||
__ISTACK_SIZE = 0x00000100;
|
||||
__ISTACK_SIZE = 0x00000200;
|
||||
|
||||
MEMORY
|
||||
{
|
||||
@ -112,13 +112,13 @@ SECTIONS
|
||||
_ebss = .;
|
||||
_end = .;
|
||||
} > RAM
|
||||
.ustack (COPY) :
|
||||
.ustack :
|
||||
{
|
||||
. = ALIGN(8);
|
||||
. = . + __USTACK_SIZE;
|
||||
PROVIDE(_ustack = .);
|
||||
} > RAM
|
||||
.istack (COPY) :
|
||||
.istack :
|
||||
{
|
||||
. = ALIGN(8);
|
||||
. = . + __ISTACK_SIZE;
|
||||
|
Loading…
x
Reference in New Issue
Block a user