Skip to content

Commit

Permalink
Fix move of takepipe to common
Browse files Browse the repository at this point in the history
  • Loading branch information
mkj committed Dec 8, 2023
1 parent f3c011f commit 1bd2a7d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions embassy/demos/common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ mod server;
pub mod config;
pub mod menu;
pub mod demo_menu;
pub mod takepipe;

pub use server::{DemoServer, listener};
pub use config::SSHConfig;
Expand Down
3 changes: 1 addition & 2 deletions embassy/demos/picow/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ pub(crate) use sunset_demo_embassy_common as demo_common;
mod flashconfig;
mod picowmenu;
mod serial;
mod takepipe;
mod usb;
mod keyboard;
#[cfg(feature = "w5500")]
Expand All @@ -50,7 +49,7 @@ compile_error!("No network device selected. Use cyw43 or w5500 feature");
#[cfg(all(feature = "cyw43", feature = "w5500"))]
compile_error!("Select only one of cyw43 or w5500");

use demo_common::{SSHConfig, DemoServer};
use demo_common::{SSHConfig, DemoServer, takepipe};

use takepipe::TakePipe;

Expand Down

0 comments on commit 1bd2a7d

Please sign in to comment.