aboutsummaryrefslogtreecommitdiff
path: root/examples/mspm0g3507/src/bin/i2c.rs
diff options
context:
space:
mode:
authori509VCB <[email protected]>2025-08-14 20:36:40 +0000
committerGitHub <[email protected]>2025-08-14 20:36:40 +0000
commit32f142d58587bb219b6835e1507758b7eb6f28b8 (patch)
treea75ab3442f368bdb2020ceee2392a8a04bbb4a6d /examples/mspm0g3507/src/bin/i2c.rs
parent5bd4722b6018524748dad6343a79adf1a55f1aa9 (diff)
parentf84eb9a7eb2df85b2d0dc7a934f2568640ef6161 (diff)
Merge pull request #4435 from bespsm/mspm0-i2c
MSPM0: Add I2C Controller (blocking & async) + examples for mspm0l1306, mspm0g3507 (tested MCUs)
Diffstat (limited to 'examples/mspm0g3507/src/bin/i2c.rs')
-rw-r--r--examples/mspm0g3507/src/bin/i2c.rs45
1 files changed, 45 insertions, 0 deletions
diff --git a/examples/mspm0g3507/src/bin/i2c.rs b/examples/mspm0g3507/src/bin/i2c.rs
new file mode 100644
index 000000000..8d1ed1726
--- /dev/null
+++ b/examples/mspm0g3507/src/bin/i2c.rs
@@ -0,0 +1,45 @@
1//! This example uses FIFO with polling, and the maximum FIFO size is 8.
2//! Refer to async example to handle larger packets.
3//!
4//! This example controls AD5171 digital potentiometer via I2C with the LP-MSPM0G3507 board.
5
6#![no_std]
7#![no_main]
8
9use defmt::*;
10use embassy_executor::Spawner;
11use embassy_mspm0::i2c::{Config, I2c};
12use embassy_time::Timer;
13use {defmt_rtt as _, panic_halt as _};
14
15const ADDRESS: u8 = 0x6a;
16
17#[embassy_executor::main]
18async fn main(_spawner: Spawner) -> ! {
19 let p = embassy_mspm0::init(Default::default());
20
21 let instance = p.I2C1;
22 let scl = p.PB2;
23 let sda = p.PB3;
24
25 let mut i2c = unwrap!(I2c::new_blocking(instance, scl, sda, Config::default()));
26
27 let mut pot_value: u8 = 0;
28
29 loop {
30 let to_write = [0u8, pot_value];
31
32 match i2c.blocking_write(ADDRESS, &to_write) {
33 Ok(()) => info!("New potentioemter value: {}", pot_value),
34 Err(e) => error!("I2c Error: {:?}", e),
35 }
36
37 pot_value += 1;
38 // if reached 64th position (max)
39 // start over from lowest value
40 if pot_value == 64 {
41 pot_value = 0;
42 }
43 Timer::after_millis(500).await;
44 }
45}