We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba020c0 commit 49eae7eCopy full SHA for 49eae7e
docs/02-data-exchange.md
@@ -24,7 +24,7 @@ counter.push(10); /* Store a value into the shared variable in a threadsafe mann
24
```
25
If the internal queue is full the oldest element is discarded and the latest element is inserted into the queue.
26
27
-Retrieving stored data works also very naturally like it would for any POD data type:
+Stored data can be retrieved by using the `pop` function:
28
```C++
29
/* Thread_2.inot */
30
Serial.println(counter.pop()); /* Retrieves a value from the shared variable in a threadsafe manner. */
0 commit comments