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
|
#define THREAD_STACK_SIZE 512
|
||||||
#elif defined(__ARM_FM)
|
#elif defined(__ARM_FM)
|
||||||
#define THREAD_STACK_SIZE 512
|
#define THREAD_STACK_SIZE 512
|
||||||
|
#elif defined(TARGET_FUTURE_SEQUANA_PSA)
|
||||||
|
#define THREAD_STACK_SIZE 512
|
||||||
#else
|
#else
|
||||||
#define THREAD_STACK_SIZE 320 /* larger stack cause out of heap memory on some 16kB RAM boards in multi thread test*/
|
#define THREAD_STACK_SIZE 320 /* larger stack cause out of heap memory on some 16kB RAM boards in multi thread test*/
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -41,6 +41,8 @@ volatile bool thread_should_continue = true;
|
||||||
#define THREAD_STACK_SIZE 512
|
#define THREAD_STACK_SIZE 512
|
||||||
#elif defined(__ARM_FM)
|
#elif defined(__ARM_FM)
|
||||||
#define THREAD_STACK_SIZE 512
|
#define THREAD_STACK_SIZE 512
|
||||||
|
#elif defined(TARGET_FUTURE_SEQUANA_PSA)
|
||||||
|
#define THREAD_STACK_SIZE 512
|
||||||
#else
|
#else
|
||||||
#define THREAD_STACK_SIZE 256
|
#define THREAD_STACK_SIZE 256
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -36,6 +36,8 @@
|
||||||
#define PARALLEL_THREAD_STACK_SIZE 512
|
#define PARALLEL_THREAD_STACK_SIZE 512
|
||||||
#elif defined(__ARM_FM)
|
#elif defined(__ARM_FM)
|
||||||
#define PARALLEL_THREAD_STACK_SIZE 512
|
#define PARALLEL_THREAD_STACK_SIZE 512
|
||||||
|
#elif defined(TARGET_FUTURE_SEQUANA_PSA)
|
||||||
|
#define PARALLEL_THREAD_STACK_SIZE 512
|
||||||
#else
|
#else
|
||||||
#define PARALLEL_THREAD_STACK_SIZE 384
|
#define PARALLEL_THREAD_STACK_SIZE 384
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue