2020-05-29 14:50:28 +02:00
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
use panic_semihosting as _;
|
|
|
|
|
2020-06-11 19:18:29 +02:00
|
|
|
#[rtic::app(device = lm3s6965)]
|
2020-05-19 20:00:13 +02:00
|
|
|
mod app {
|
2020-10-15 18:50:17 +02:00
|
|
|
use cortex_m_semihosting::debug;
|
|
|
|
|
2020-10-11 19:41:57 +02:00
|
|
|
#[init]
|
|
|
|
fn init(_: init::Context) -> init::LateResources {
|
|
|
|
taskmain::spawn().ok();
|
2020-10-01 19:38:49 +02:00
|
|
|
|
|
|
|
init::LateResources {}
|
2020-05-29 14:50:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[task]
|
2020-09-25 15:36:00 +02:00
|
|
|
fn taskmain(_: taskmain::Context) {
|
2020-05-29 14:50:28 +02:00
|
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2020-06-26 23:46:09 +02:00
|
|
|
// RTIC requires that unused interrupts are declared in an extern block when
|
|
|
|
// using software tasks; these free interrupts will be used to dispatch the
|
|
|
|
// software tasks.
|
2020-05-29 14:50:28 +02:00
|
|
|
extern "C" {
|
2020-06-26 23:46:09 +02:00
|
|
|
fn SSI0();
|
2020-05-29 14:50:28 +02:00
|
|
|
}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|