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 4a5ac14 + 791e42e commit 1529ad6Copy full SHA for 1529ad6
features/nvstore/TESTS/nvstore/functionality/main.cpp
@@ -40,9 +40,14 @@ static const size_t basic_func_max_data_size = 128;
40
static const int thr_test_num_buffs = 5;
41
static const int thr_test_num_secs = 5;
42
static const int thr_test_max_data_size = 32;
43
-static const int thr_test_stack_size = 768;
44
static const int thr_test_num_threads = 3;
45
+#ifdef TARGET_NRF52
46
+static const int thr_test_stack_size = 1024;
47
+#else
48
+static const int thr_test_stack_size = 768;
49
+#endif
50
+
51
typedef struct {
52
uint8_t *buffs[max_test_keys][thr_test_num_buffs];
53
uint16_t sizes[max_test_keys][thr_test_num_buffs];
0 commit comments