From 3b2dd2bad846f237c33f60013ef2a880489c55c9 Mon Sep 17 00:00:00 2001 From: jrmoulton Date: Tue, 10 Jun 2025 15:49:31 -0600 Subject: [PATCH] fmt --- embassy-stm32/src/i2c/v2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embassy-stm32/src/i2c/v2.rs b/embassy-stm32/src/i2c/v2.rs index 990ce7d21..48008b695 100644 --- a/embassy-stm32/src/i2c/v2.rs +++ b/embassy-stm32/src/i2c/v2.rs @@ -48,7 +48,7 @@ pub(crate) unsafe fn on_interrupt() { regs.cr1().modify(|w| { w.set_addrie(false); w.set_stopie(false); - // The flag can only be cleared by writting to nbytes, we won't do that here + // The flag can only be cleared by writting to nbytes, we won't do that here w.set_tcie(false); // Error flags are to be read in the routines, so we also don't clear them here w.set_nackie(false);