Change the default of stack size configs to DEFAULT_TASK_STACKSIZE
Where: * Under examples and testing * And the default value is less than 2048 Using a bit more memory for examples and tests should not be a critical problem.
This commit is contained in:
parent
35933d8131
commit
c9c1d2bbc6
@ -37,7 +37,7 @@ config EXAMPLES_I2SCHAR_TXBUFFERS
|
|||||||
|
|
||||||
config EXAMPLES_I2SCHAR_TXSTACKSIZE
|
config EXAMPLES_I2SCHAR_TXSTACKSIZE
|
||||||
int "Transmitter thread stack size"
|
int "Transmitter thread stack size"
|
||||||
default 1536
|
default DEFAULT_TASK_STACKSIZE
|
||||||
---help---
|
---help---
|
||||||
This is the stack size to use when starting the transmitter thread.
|
This is the stack size to use when starting the transmitter thread.
|
||||||
|
|
||||||
@ -62,7 +62,7 @@ config EXAMPLES_I2SCHAR_RXBUFFERS
|
|||||||
|
|
||||||
config EXAMPLES_I2SCHAR_RXSTACKSIZE
|
config EXAMPLES_I2SCHAR_RXSTACKSIZE
|
||||||
int "Receiver thread stack size"
|
int "Receiver thread stack size"
|
||||||
default 1536
|
default DEFAULT_TASK_STACKSIZE
|
||||||
---help---
|
---help---
|
||||||
This is the stack size to use when starting the receiver thread.
|
This is the stack size to use when starting the receiver thread.
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ endif # NETINIT_MONITOR
|
|||||||
|
|
||||||
config NETINIT_THREAD_STACKSIZE
|
config NETINIT_THREAD_STACKSIZE
|
||||||
int "Network initialization thread stack size"
|
int "Network initialization thread stack size"
|
||||||
default 1568
|
default DEFAULT_TASK_STACKSIZE
|
||||||
|
|
||||||
config NETINIT_THREAD_PRIORITY
|
config NETINIT_THREAD_PRIORITY
|
||||||
int "Network initialization thread priority"
|
int "Network initialization thread priority"
|
||||||
|
@ -25,6 +25,6 @@ config TESTING_GETPRIME_PRIORITY
|
|||||||
|
|
||||||
config TESTING_GETPRIME_STACKSIZE
|
config TESTING_GETPRIME_STACKSIZE
|
||||||
int "getprime stack size"
|
int "getprime stack size"
|
||||||
default 1024
|
default DEFAULT_TASK_STACKSIZE
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user