From adb3dacd9dd01ac2e1cc6054568604219f23c319 Mon Sep 17 00:00:00 2001 From: Maciej Bocianski Date: Wed, 25 Oct 2017 08:51:28 +0200 Subject: [PATCH] mail test: fix out of memory problem for NUCLEO_F070RB --- TESTS/mbedmicro-rtos-mbed/mail/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TESTS/mbedmicro-rtos-mbed/mail/main.cpp b/TESTS/mbedmicro-rtos-mbed/mail/main.cpp index 3332de41e1..ad006f8a94 100644 --- a/TESTS/mbedmicro-rtos-mbed/mail/main.cpp +++ b/TESTS/mbedmicro-rtos-mbed/mail/main.cpp @@ -25,7 +25,7 @@ using namespace utest::v1; -#define THREAD_STACK_SIZE 384 /* larger stack cause out of 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*/ #define QUEUE_SIZE 16 #define THREAD_1_ID 1 #define THREAD_2_ID 2