From 6a72b75ecd389b8f7529223ea80df92cfa1a6497 Mon Sep 17 00:00:00 2001 From: Kirill Mikhailov Date: Wed, 18 Dec 2024 10:40:25 +0100 Subject: [PATCH] dumb 4 --- esp-hal/src/i2c/master/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/esp-hal/src/i2c/master/mod.rs b/esp-hal/src/i2c/master/mod.rs index bc445dd43e..1ce298aa8f 100644 --- a/esp-hal/src/i2c/master/mod.rs +++ b/esp-hal/src/i2c/master/mod.rs @@ -116,6 +116,7 @@ pub enum Error { pub enum ConfigError { /// Provided bus frequency is invalid for the current configuration. InvalidFrequency, + /// The specified timeout passed to `Config` is invalid. InvalidTimeout, }