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 fbd9e7e + f28aef4 commit 6713513Copy full SHA for 6713513
TESTS/events/queue/main.cpp
@@ -22,7 +22,10 @@
22
23
using namespace utest::v1;
24
25
-#define TEST_EQUEUE_SIZE 1024
+// TEST_EQUEUE_SIZE was reduced below 1024B to fit this test to devices with small RAM (RAM <= 16kB)
26
+// additionally TEST_EQUEUE_SIZE was expressed in EVENTS_EVENT_SIZE to increase readability
27
+// (for more details about EVENTS_EVENT_SIZE see EventQueue constructor)
28
+#define TEST_EQUEUE_SIZE (18*EVENTS_EVENT_SIZE)
29
30
// flag for called
31
volatile bool touched = false;
0 commit comments