diff --git a/esp-hal-common/src/uart.rs b/esp-hal-common/src/uart.rs index a1f8130a5..c90993f3d 100644 --- a/esp-hal-common/src/uart.rs +++ b/esp-hal-common/src/uart.rs @@ -1018,14 +1018,6 @@ where self.write_bytes(s.as_bytes())?; Ok(()) } - - #[inline] - fn write_char(&mut self, ch: char) -> Result<(), Self::Error> { - let mut buffer = [0u8; 4]; - self.write_bytes(ch.encode_utf8(&mut buffer).as_bytes())?; - - Ok(()) - } } impl core::fmt::Write for Uart<'_, T>