shared_stack: added minimal stack size for shared stack, configurable via menuconfig

This commit is contained in:
Felipe Neves
2020-01-06 17:28:37 -03:00
parent c309112b8a
commit 57edda15a0
3 changed files with 30 additions and 16 deletions

View File

@@ -1,4 +1,5 @@
#include <stdio.h>
#include <string.h>
#include "unity.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
@@ -29,3 +30,4 @@ TEST_CASE("test printf using shared buffer stack", "[newlib]")
vSemaphoreDelete(printf_lock);
free(shared_stack);
}