Add boards/ && cargo clippy
This commit is contained in:
parent
b96db03e48
commit
04bb890fb7
17 changed files with 73 additions and 93 deletions
|
@ -8,6 +8,13 @@ extern crate alloc;
|
|||
#[macro_use]
|
||||
extern crate bitflags;
|
||||
|
||||
#[cfg(feature = "board_k210")]
|
||||
#[path = "boards/k210.rs"]
|
||||
mod board;
|
||||
#[cfg(not(any(feature = "board_k210")))]
|
||||
#[path = "boards/qemu.rs"]
|
||||
mod board;
|
||||
|
||||
#[macro_use]
|
||||
mod console;
|
||||
mod config;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue