initial commit with my changes

This commit is contained in:
J / Jacob Babich
2022-04-08 20:51:28 -04:00
commit 79de6fab06
19 changed files with 892 additions and 0 deletions

20
examples/hello.rs Normal file
View File

@@ -0,0 +1,20 @@
//! Prints "Hello, world!" on the host console using semihosting
#![no_main]
#![no_std]
use panic_halt as _;
use cortex_m_rt::entry;
use cortex_m_semihosting::{debug, hprintln};
#[entry]
fn main() -> ! {
hprintln!("Hello, world!").unwrap();
// exit QEMU
// NOTE do not run this on hardware; it can corrupt OpenOCD state
// debug::exit(debug::EXIT_SUCCESS);
loop {}
}