mips: Adjust main & irq stack sizes to fit in IRAM on all targets

New amounts:

7.50K main stack
0.75K irq stack

Prior values of 8K+1K overflowed IRAM by ~660 bytes on Onda 7x7 targets,
but worked on the xDuoo X3.

(The discrepancy is due to the Onda targets having more LCD code shoved
 into IRAM.)

Change-Id: I16fcfae3c5f3e36db688dfa9167b620584e79df8
This commit is contained in:
Solomon Peachy 2019-01-02 19:19:26 -05:00
parent 36a50dd00f
commit 52ed74aad0
2 changed files with 4 additions and 4 deletions

View file

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

View file

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