Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions examples/mcu-board-support/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,31 @@
extern crate alloc;

#[cfg(feature = "pico-st7789")]
#[path = "pico_st7789/pico_st7789.rs"]
mod pico_st7789;
#[cfg(feature = "pico-st7789")]
pub use pico_st7789::*;

#[cfg(feature = "pico2-st7789")]
#[path = "pico2_st7789/pico2_st7789.rs"]
mod pico2_st7789;
#[cfg(feature = "pico2-st7789")]
pub use pico2_st7789::*;

#[cfg(feature = "stm32h735g")]
#[path = "stm32h735g/stm32h735g.rs"]
mod stm32h735g;
#[cfg(feature = "stm32h735g")]
pub use stm32h735g::*;

#[cfg(feature = "stm32u5g9j-dk2")]
#[path = "stm32u5g9j_dk2/stm32u5g9j_dk2.rs"]
mod stm32u5g9j_dk2;
#[cfg(feature = "stm32u5g9j-dk2")]
pub use stm32u5g9j_dk2::*;

#[cfg(feature = "esp32-s3-box-3")]
#[path = "esp32_s3_box_3/esp32_s3_box_3.rs"]
mod esp32_s3_box_3;
#[cfg(feature = "esp32-s3-box-3")]
pub use esp32_s3_box_3::*;
Expand Down
Loading