aboutsummaryrefslogtreecommitdiff
path: root/examples/mspm0g3507/src/bin/i2c.rs
diff options
context:
space:
mode:
authorSiarhei B <[email protected]>2025-07-29 15:26:34 +0200
committerSiarhei B <[email protected]>2025-08-04 10:19:14 +0200
commitd6a87b411432d9c6eedd48aa30b72cda069bd86c (patch)
tree7520ed4baec23265bf0b43e75ecf2e80be14967a /examples/mspm0g3507/src/bin/i2c.rs
parentdc52ead73231ee963d1a492e70e49013df7e7127 (diff)
mspm0-I2C: mention blocking API's restrictions
- blocking API for transfering max 8 bytes - async API has no such limitations
Diffstat (limited to 'examples/mspm0g3507/src/bin/i2c.rs')
-rw-r--r--examples/mspm0g3507/src/bin/i2c.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/mspm0g3507/src/bin/i2c.rs b/examples/mspm0g3507/src/bin/i2c.rs
index b87a0184f..2e3bf2ca1 100644
--- a/examples/mspm0g3507/src/bin/i2c.rs
+++ b/examples/mspm0g3507/src/bin/i2c.rs
@@ -1,4 +1,5 @@
1//! Example of using blocking I2C 1//! This example uses FIFO with polling, and the maximum FIFO size is 8.
2//! Refer to async example to handle larger packets.
2//! 3//!
3//! This uses the virtual COM port provided on the LP-MSPM0G3507 board. 4//! This uses the virtual COM port provided on the LP-MSPM0G3507 board.
4 5