1
0
Fork 0
forked from len0rd/rockbox

mips: Adjust stack sizes

Main/IRQ  from:   7.5/0.75   to:  7.25/1.0

With the reduction of the opus codec stack usage, giving the IRQ stack
some additional breathing room is now possible.

Change-Id: Id0cd3747fcaab70e2360667ac8c1a97ba7234ccf
This commit is contained in:
Solomon Peachy 2020-07-15 11:02:28 -04:00
parent 82943ea1c7
commit c54170e8f6
2 changed files with 4 additions and 4 deletions

View file

@ -81,10 +81,10 @@ SECTIONS
{ {
*(.stack); *(.stack);
stackbegin = .; stackbegin = .;
. += 0x1E00; . += 0x1d00;
stackend = .; stackend = .;
irqstackbegin = .; irqstackbegin = .;
. += 0x300; . += 0x400;
irqstackend = .; irqstackend = .;
} > IRAM } > IRAM

View file

@ -85,10 +85,10 @@ SECTIONS
{ {
*(.stack) *(.stack)
stackbegin = .; stackbegin = .;
. += 0x1e00; . += 0x1d00;
stackend = .; stackend = .;
irqstackbegin = .; irqstackbegin = .;
. += 0x300; . += 0x400;
irqstackend = .; irqstackend = .;
} > IRAM } > IRAM
} }