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:
parent
82943ea1c7
commit
c54170e8f6
2 changed files with 4 additions and 4 deletions
|
@ -81,10 +81,10 @@ SECTIONS
|
|||
{
|
||||
*(.stack);
|
||||
stackbegin = .;
|
||||
. += 0x1E00;
|
||||
. += 0x1d00;
|
||||
stackend = .;
|
||||
irqstackbegin = .;
|
||||
. += 0x300;
|
||||
. += 0x400;
|
||||
irqstackend = .;
|
||||
} > IRAM
|
||||
|
||||
|
|
|
@ -85,10 +85,10 @@ SECTIONS
|
|||
{
|
||||
*(.stack)
|
||||
stackbegin = .;
|
||||
. += 0x1e00;
|
||||
. += 0x1d00;
|
||||
stackend = .;
|
||||
irqstackbegin = .;
|
||||
. += 0x300;
|
||||
. += 0x400;
|
||||
irqstackend = .;
|
||||
} > IRAM
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue