mirror of https://github.com/ARMmbed/mbed-os.git
fix mbedmicro-rtos-mbed tests
parent
b69e03fb1e
commit
870bebc9ac
|
@ -33,6 +33,8 @@ using namespace utest::v1;
|
|||
#define THREAD_STACK_SIZE 512
|
||||
#elif defined(__ARM_FM)
|
||||
#define THREAD_STACK_SIZE 512
|
||||
#elif defined(TARGET_FUTURE_SEQUANA_PSA)
|
||||
#define THREAD_STACK_SIZE 512
|
||||
#else
|
||||
#define THREAD_STACK_SIZE 320 /* larger stack cause out of heap memory on some 16kB RAM boards in multi thread test*/
|
||||
#endif
|
||||
|
|
|
@ -41,6 +41,8 @@ volatile bool thread_should_continue = true;
|
|||
#define THREAD_STACK_SIZE 512
|
||||
#elif defined(__ARM_FM)
|
||||
#define THREAD_STACK_SIZE 512
|
||||
#elif defined(TARGET_FUTURE_SEQUANA_PSA)
|
||||
#define THREAD_STACK_SIZE 512
|
||||
#else
|
||||
#define THREAD_STACK_SIZE 256
|
||||
#endif
|
||||
|
|
|
@ -36,6 +36,8 @@
|
|||
#define PARALLEL_THREAD_STACK_SIZE 512
|
||||
#elif defined(__ARM_FM)
|
||||
#define PARALLEL_THREAD_STACK_SIZE 512
|
||||
#elif defined(TARGET_FUTURE_SEQUANA_PSA)
|
||||
#define PARALLEL_THREAD_STACK_SIZE 512
|
||||
#else
|
||||
#define PARALLEL_THREAD_STACK_SIZE 384
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue