1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #4606 from thomaseichinger/pr/tests_xtimer_hang_fix

tests:xtimer_hang: use THREAD_STACKSIZE_DEFAULT instead of literal.
This commit is contained in:
Martine Lenders 2016-01-07 16:58:18 +01:00
commit 31e40467c3

View File

@ -28,7 +28,7 @@
#define TEST_SECONDS (10U)
#define TEST_TIME (TEST_SECONDS * SEC_IN_USEC)
#define STACKSIZE_TIMER (1024)
#define STACKSIZE_TIMER (THREAD_STACKSIZE_DEFAULT)
char stack_timer1[STACKSIZE_TIMER];
char stack_timer2[STACKSIZE_TIMER];