mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
d9e8b68662
Added qemu test Added comment Typo Add cfg for homogeneous More cfg Now multicore working Add .run file
16 lines
330 B
Rust
16 lines
330 B
Rust
#![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);
|
|
}
|
|
};
|