mspm0: link interrupt groups in tests

This commit is contained in:
i509VCB 2025-05-20 17:29:28 -05:00
parent d23c71ea29
commit 8b65f9cf0f
No known key found for this signature in database
GPG Key ID: 3E860D038915EF88

View File

@ -19,6 +19,8 @@ fn main() -> Result<(), Box<dyn Error>> {
println!("cargo:rustc-link-arg-bins=-Tlink_ram.x");
println!("cargo:rustc-link-arg-bins=-Tdefmt.x");
println!("cargo:rustc-link-arg-bins=-Tteleprobe.x");
// You must tell cargo to link interrupt groups if the rt feature is enabled.
println!("cargo:rustc-link-arg-bins=-Tinterrupt_group.x");
Ok(())
}