Skip to content
Snippets Groups Projects
Commit 1b37d9e4 authored by Per's avatar Per
Browse files

delete

parent aff466dd
Branches
No related tags found
No related merge requests found
//! bare3.rs
//! Simple bare metal application
#![no_std]
extern crate cortex_m;
extern crate stm32f40x;
#[macro_use]
extern crate cortex_m_debug;
fn main() {
let s = "ABCD";
ipln!("s = {:?}", s);
// iterate over the byte repr. of s
for c in s.as_bytes() {
ip!("{},", c)
}
ipln!();
loop {}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment