mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 21:05:35 +01:00
Fixes an issue where one could double take the cortex_m Peripheral
Added qemu test Added comment Typo Add cfg for homogeneous More cfg Now multicore working Add .run file
This commit is contained in:
parent
8a4f9c6b8a
commit
d9e8b68662
4 changed files with 25 additions and 0 deletions
16
examples/peripherals-taken.rs
Normal file
16
examples/peripherals-taken.rs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#![deny(unsafe_code)]
|
||||
#![deny(warnings)]
|
||||
#![no_main]
|
||||
#![no_std]
|
||||
|
||||
use cortex_m_semihosting::debug;
|
||||
use panic_semihosting as _;
|
||||
|
||||
#[rtic::app(device = lm3s6965)]
|
||||
const APP: () = {
|
||||
#[init]
|
||||
fn main(_: main::Context) {
|
||||
assert!(cortex_m::Peripherals::take().is_none());
|
||||
debug::exit(debug::EXIT_SUCCESS);
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue