aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/src
diff options
context:
space:
mode:
authorxoviat <[email protected]>2025-11-28 20:32:29 +0000
committerGitHub <[email protected]>2025-11-28 20:32:29 +0000
commitfcd5383f475f7bd413541123d941d3d7e1cd326b (patch)
tree5c30f184e919e002c53503061d11c14dc3f31c3d /embassy-stm32/src
parent217b683427687e8f3a27f02852e6f5bd2405ace3 (diff)
parentdd0a3a1f0b183b547a3fc574c8ddf82703ecb10e (diff)
Merge pull request #4955 from beeelias/i2c-slave/fix-early-term
i2c slave fix (early termination)
Diffstat (limited to 'embassy-stm32/src')
-rw-r--r--embassy-stm32/src/i2c/v2.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/embassy-stm32/src/i2c/v2.rs b/embassy-stm32/src/i2c/v2.rs
index b2ba94e21..6b213484c 100644
--- a/embassy-stm32/src/i2c/v2.rs
+++ b/embassy-stm32/src/i2c/v2.rs
@@ -1600,7 +1600,8 @@ impl<'d, M: Mode> I2c<'d, M, MultiMaster> {
1600 for byte in chunk { 1600 for byte in chunk {
1601 // Wait until we have received something 1601 // Wait until we have received something
1602 match self.wait_rxne(timeout) { 1602 match self.wait_rxne(timeout) {
1603 Ok(ReceiveResult::StopReceived) | Ok(ReceiveResult::NewStart) => { 1603 Ok(ReceiveResult::StopReceived) => {}
1604 Ok(ReceiveResult::NewStart) => {
1604 trace!("--- Slave RX transmission end (early)"); 1605 trace!("--- Slave RX transmission end (early)");
1605 return Ok(total_len - remaining_len); // Return N bytes read 1606 return Ok(total_len - remaining_len); // Return N bytes read
1606 } 1607 }