Merge pull request #5377 from maciejbocianski/semaphore_mem_fix

semaphore test: fix out of memory problem for NUCLEO_F070RB
pull/5398/merge
Jimmy Brisson 2017-10-30 10:11:29 -05:00 committed by GitHub
commit 12dace0a4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ using namespace utest::v1;
#define SEM_CHANGES 100
#define SHORT_WAIT 5
#define THREAD_STACK_SIZE 512
#define THREAD_STACK_SIZE 320 /* larger stack cause out of heap memory on some 16kB RAM boards in multi thread test*/
Semaphore two_slots(SEMAPHORE_SLOTS);