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.
1 parent a6ff22f commit 01ee7d2Copy full SHA for 01ee7d2
examples/tests/basic/test-queue/test-queue.ino
@@ -1,5 +1,6 @@
1
#include "AudioTools.h"
2
#include "Concurrency/QueueLockFree.h"
3
+#include "Concurrency/QueueRTOS.h"
4
5
// test different queue implementations:
6
@@ -34,6 +35,10 @@ void setup() {
34
35
36
QueueLockFree<int> q3(10);
37
test<QueueLockFree<int>>(q3,"QueueLockFree");
38
+
39
+ QueueRTOS<int> q4(10);
40
+ test<QueueRTOS<int>>(q4,"QueueRTOS");
41
42
Serial.println("all tests passed");
43
}
44
0 commit comments