aboutsummaryrefslogtreecommitdiff
path: root/board/Cargo.toml
diff options
context:
space:
mode:
authorIan McIntyre <me@mciantyre.dev>2025-11-26 10:17:14 -0500
committerIan McIntyre <me@mciantyre.dev>2025-11-26 10:49:04 -0500
commit8b0d5278b0de5254a242f8a356f061949a896161 (patch)
treeaa07245f46ef48f1a33ce1bf797f1301436f2a02 /board/Cargo.toml
parentc4ee315a20e41c234d2d0f7ca3ed7e37a09b9d32 (diff)
Allow smaller vector tables in tests
The vector tables exported by imxrt-ral are smaller than the default cortex-m-rt vector table. The tests fail once we enable the rt / device features. With this change, we expect the MCU-dependent vector table sizes.
Diffstat (limited to 'board/Cargo.toml')
-rw-r--r--board/Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/board/Cargo.toml b/board/Cargo.toml
index 449b807..bfebd0d 100644
--- a/board/Cargo.toml
+++ b/board/Cargo.toml
@@ -9,12 +9,15 @@ version = "1.0"
[dependencies.imxrt-ral]
version = "0.5"
+features = ["rt"]
[dependencies.imxrt-rt]
path = ".."
+features = ["device"]
[build-dependencies.imxrt-rt]
path = ".."
+features = ["device"]
[target.'cfg(all(target_arch = "arm", target_os = "none"))'.dependencies]
teensy4-fcb = { version = "0.3", optional = true }