blob: c2c4e62d91412420f0e69df72bd5a2b5ea6567b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//! examples/task_named_main.rs
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use panic_semihosting as _;
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
mod app {
use cortex_m_semihosting::{debug, hprintln};
#[init]
fn init(_: init::Context) -> (init::LateResources, init::Monotonics) {
main::spawn().unwrap();
(init::LateResources {}, init::Monotonics())
}
#[task]
fn main(_: main::Context) {
hprintln!("This task is named main, useful for rust-analyzer").unwrap();
debug::exit(debug::EXIT_SUCCESS);
}
}
|