aboutsummaryrefslogtreecommitdiff
path: root/ui/v6m-interrupt-not-enough.rs_no
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-03-04 21:10:24 +0000
committerGitHub <noreply@github.com>2023-03-04 21:10:24 +0000
commit7c7d6558f6d9c50fbb4d2487c98c9a5be15f2f7b (patch)
tree80a47f0dc40059014e9448c4c2eb34c54dff45fe /ui/v6m-interrupt-not-enough.rs_no
parent1c5db277e4161470136dbd2a11e914ff1d383581 (diff)
parent98c5490d94950608d31cd5ad9dd260f2f853735c (diff)
Merge #694
694: RTIC 2 r=AfoHT a=korken89 Co-authored-by: Emil Fresk <emil.fresk@gmail.com> Co-authored-by: Per Lindgren <per.lindgren@ltu.se>
Diffstat (limited to 'ui/v6m-interrupt-not-enough.rs_no')
-rw-r--r--ui/v6m-interrupt-not-enough.rs_no54
1 files changed, 0 insertions, 54 deletions
diff --git a/ui/v6m-interrupt-not-enough.rs_no b/ui/v6m-interrupt-not-enough.rs_no
deleted file mode 100644
index 3fbf3cf..0000000
--- a/ui/v6m-interrupt-not-enough.rs_no
+++ /dev/null
@@ -1,54 +0,0 @@
-//! v6m-interrupt-not-enough.rs_no (not run atm)
-//!
-//! Expected behavior:
-//! should pass
-//! > cargo build --example m0_perf_err --target thumbv7m-none-eabi --release
-//!
-//! should fail
-//! > cargo build --example m0_perf_err --target thumbv6m-none-eabi --release
-//! Compiling cortex-m-rtic v1.0.0 (/home/pln/rust/rtic/cortex-m-rtic)
-//! error[E0308]: mismatched types
-//! --> examples/m0_perf_err.rs:25:1
-//! |
-//! 25 | #[rtic::app(device = lm3s6965)]
-//! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected an array with a fixed size of 4 elements, found one with 5 elements
-//! |
-//! = note: this error originates in the attribute macro `rtic::app` (in Nightly builds, run with -Z macro-backtrace for more info)
-
-#![deny(unsafe_code)]
-#![deny(warnings)]
-#![no_main]
-#![no_std]
-
-use panic_semihosting as _;
-
-#[rtic::app(device = lm3s6965)]
-mod app {
-
- use cortex_m_semihosting::debug;
-
- #[shared]
- struct Shared {}
-
- #[local]
- struct Local {}
-
- #[init]
- fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
- (Shared {}, Local {}, init::Monotonics())
- }
-
- #[inline(never)]
- #[idle]
- fn idle(_cx: idle::Context) -> ! {
- debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
-
- loop {
- cortex_m::asm::nop();
- }
- }
-
- // priority to high for v6m
- #[task(binds = GPIOA, priority = 5)]
- fn t0(_cx: t0::Context) {}
-}