Skip to content

Commit 0dafaad

Browse files
sebromeroaentinger
andauthored
Update docs/05-threadsafe-spi.md
Co-authored-by: Alexander Entinger <[email protected]>
1 parent 2bf6c2d commit 0dafaad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/05-threadsafe-spi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ BusDevice bmp388(SPI, device_cs_select, device_cs_deselect, spi_settings);
2727

2828
### Asynchronous thread-safe `SPI` access with `transfer`/`wait`
2929
Once a `BusDevice` is declared it can be used to transfer data to and from the peripheral by means of the `transfer()` API. As opposed to the traditional Arduino bus APIs, `transfer()` is asynchronous and thus won't block execution unless the `wait()` function is called.
30-
Note that we are in a parallel programming environment which means that calls to `transfer()` on the same bus from different sketches will be arbitrated
30+
Note that we are in a parallel programming environment which means that calls to `transfer()` on the same bus from different sketches will be arbitrated.
3131

3232
```C++
3333
byte bmp388_read_reg(byte const reg_addr)

0 commit comments

Comments
 (0)