mirror of https://github.com/ARMmbed/mbed-os.git
NRF52840: Adjust idle thread stack size.
A stack size of 256 bytes is not enough on the NRF52840, this patch changes it to a size of 512 bytes.pull/4563/head
parent
fd7eff202c
commit
970ee38079
|
@ -43,6 +43,9 @@
|
|||
#define INITIAL_SP (0x20040000UL)
|
||||
#endif
|
||||
|
||||
// More than 256 bytes are needed for the idle thread stack on the NRF52840
|
||||
#define OS_IDLE_THREAD_STACK_SIZE 512
|
||||
|
||||
#endif // defined(TARGET_MCU_NRF51822)...
|
||||
|
||||
#endif // #ifndef MBED_MBED_RTX_H
|
||||
|
|
Loading…
Reference in New Issue