From 6f5633761528e484e8d0963c7ac59403f7210093 Mon Sep 17 00:00:00 2001 From: Ian McIntyre Date: Mon, 13 Mar 2023 06:50:57 -0400 Subject: Prototype API to build runtime in RAM Just a proof-of-concept. The new inspect_elf test seems to show that we're building the correct image. We need another commit in order to help the program run in FlexRAM. --- board/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/src/lib.rs') diff --git a/board/src/lib.rs b/board/src/lib.rs index ebc76ad..f4912be 100644 --- a/board/src/lib.rs +++ b/board/src/lib.rs @@ -10,7 +10,7 @@ cfg_if::cfg_if! { mod teensy4; pub use teensy4::*; - } else if #[cfg(feature = "imxrt1010evk")] { + } else if #[cfg(any(feature = "imxrt1010evk", feature = "imxrt1010evk-ram"))] { mod shared { pub mod imxrt10xx; } use shared::imxrt10xx::prepare_pit; -- cgit v1.2.3