File tree 5 files changed +7
-7
lines changed
SharedResourcesVariousLibraries
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
2
2
/*
3
3
* An 'int' SINK with a size of '0'. This kind of SINK has no buffer so the reading thread
4
- * will block until the writing thread has written something, or viceversa .
4
+ * will block until the writing thread has written something, or vice versa .
5
5
*/
6
6
SINK(in, int, 0)
7
7
@@ -10,7 +10,7 @@ void setup() {
10
10
}
11
11
12
12
void loop() {
13
- // Read an 'int' from the SINK and discards it. Since there is basically no delay in the loop
13
+ // Read an 'int' from the SINK and discard it. Since there is basically no delay in the loop
14
14
// this call will surely block until something comes from the connected SOURCE. In this case
15
15
// the pace is dictated by the SOURCE that sends data every 100 ms.
16
16
in.read();
Original file line number Diff line number Diff line change 1
1
// The preprocessor should enforce that all variables belonging here are declared Shared
2
- // There's no risk to spill other variables around since they are all private memeber of the automatic class
2
+ // There's no risk to spill other variables around since they are all private members of the automatic class
3
3
4
4
struct i2cScanResults {
5
5
uint8_t address [128 ];
Original file line number Diff line number Diff line change 1
1
// The preprocessor should enforce that all variables belonging here are declared Shared
2
- // There's no risk to spill other variables around since they are all private memeber of the automatic class
2
+ // There's no risk to spill other variables around since they are all private members of the automatic class
3
3
4
4
struct i2cScanResults {
5
5
uint8_t address [128 ];
Original file line number Diff line number Diff line change 1
1
// The preprocessor should enforce that all variables belonging here are declared Shared
2
- // There's no risk to spill other variables around since they are all private memeber of the automatic class
2
+ // There's no risk to spill other variables around since they are all private members of the automatic class
3
3
4
4
struct i2cScanResults {
5
5
uint8_t address [128 ];
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ name=Arduino_Threads
2
2
version =0.0.1
3
3
author =Arduino
4
4
maintainer =Arduino <
[email protected] >
5
- sentence =Easy multi-threading for your mbed based Arduino.
6
- paragraph =This library allows an easy access to the multi-threading capability inherent in all mbed based Arduino boards.
5
+ sentence =Easy multi-threading for your Mbed OS- based Arduino.
6
+ paragraph =This library allows an easy access to the multi-threading capability inherent in all Mbed OS- based Arduino boards.
7
7
category =Other
8
8
url =https://github.com/bcmi-labs/Arduino_Threads
9
9
architectures =mbed
You can’t perform that action at this time.
0 commit comments