From 1efaaa4025120413ec17de90106244445208804a Mon Sep 17 00:00:00 2001 From: Felipe Balbi Date: Tue, 25 Nov 2025 11:32:37 -0800 Subject: I2c Controller Blocking Driver (#27) * I2c Master Signed-off-by: Felipe Balbi * Fix review comments Signed-off-by: Felipe Balbi * More review comments Signed-off-by: Felipe Balbi --------- Signed-off-by: Felipe Balbi Co-authored-by: Felipe Balbi --- src/interrupt.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/interrupt.rs') diff --git a/src/interrupt.rs b/src/interrupt.rs index 4d409067a..f2f1cccac 100644 --- a/src/interrupt.rs +++ b/src/interrupt.rs @@ -7,7 +7,9 @@ #![allow(clippy::missing_safety_doc)] mod generated { - embassy_hal_internal::interrupt_mod!(OS_EVENT, LPUART0, LPUART1, LPUART2, LPUART3, LPUART4, LPUART5, RTC, ADC1,); + embassy_hal_internal::interrupt_mod!( + OS_EVENT, LPUART0, LPI2C0, LPI2C1, LPI2C2, LPI2C3, LPUART1, LPUART2, LPUART3, LPUART4, LPUART5, RTC, ADC1, + ); } use core::sync::atomic::{AtomicU16, AtomicU32, Ordering}; -- cgit