We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 04a31f3 + bdd0ff4 commit addd2b2Copy full SHA for addd2b2
features/FEATURE_LWIP/TESTS/mbedmicro-net/tcp_echo_parallel/main.cpp
@@ -42,6 +42,10 @@ class Echo {
42
Thread thread;
43
44
public:
45
+ // Limiting stack size to 1k
46
+ Echo(): thread(osPriorityNormal, 1024) {
47
+ }
48
+
49
void start() {
50
osStatus status = thread.start(callback(this, &Echo::echo));
51
TEST_ASSERT_EQUAL(osOK, status);
features/FEATURE_LWIP/TESTS/mbedmicro-net/udp_echo_parallel/main.cpp
@@ -46,6 +46,10 @@ class Echo {
52
53
54
55
0 commit comments