Skip to content
Snippets Groups Projects
Select Git revision
  • 9b126046ea4d1a030f9bd4dcebce842e57b99da8
  • student default protected
2 results

T_Check.ml

Blame
  • rtic_hello.rs 310 B
    #![no_main]
    #![no_std]
    
    use cortex_m_semihosting::hprintln;
    use panic_halt as _;
    use stm32f4;
    
    #[rtic::app(device = stm32f4)]
    const APP: () = {
        #[init]
        fn init(_cx: init::Context) {
            for a in 0..11 {
                hprintln!("RTIC Says Hello, to all students!! {}", a).unwrap();
            }
        }
    };