Browse Source

Merge pull request #32 from orangecms/embedded-hal-1.0.0

update embedded-hal dependency

support new embedded_hal serial API
Luo Jia 2 năm trước cách đây
mục cha
commit
fa0d3b8f83
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 1 1
      Cargo.toml
  2. 1 1
      src/legacy_stdio.rs

+ 1 - 1
Cargo.toml

@@ -16,7 +16,7 @@ categories = ["os", "embedded", "hardware-support", "no-std"]
 edition = "2021"
 
 [dependencies]
-embedded-hal = "0.2.7"
+embedded-hal = "1.0.0-alpha.8"
 nb = "1.0"
 riscv = "0.7"
 

+ 1 - 1
src/legacy_stdio.rs

@@ -2,7 +2,7 @@
 //! 如果制造实例的时候,给定了stdout,那么就会打印到这个stdout里面
 use crate::util::AmoMutex;
 use alloc::boxed::Box;
-use embedded_hal::serial::{Read, Write};
+use embedded_hal::serial::nb::{Read, Write};
 use nb::block;
 
 /// Legacy standard input/output