aboutsummaryrefslogtreecommitdiff
path: root/ui/single/extern-interrupt-used.rs
blob: dd798431a443f3130e40800e4de128e0a087d905 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![no_main]

#[rtic::app(device = lm3s6965)]
mod APP {
    #[task(binds = UART0)]
    fn a(_: a::Context) {}

    extern "C" {
        fn UART0();
    }
}