project -> crate name

This commit is contained in:
Jonas Schievink
2020-08-31 19:16:37 +02:00
parent a4b0c0966f
commit f13fab5841
+2 -2
View File
@@ -2,11 +2,11 @@
#![no_main] #![no_main]
use cortex_m_rt::entry; use cortex_m_rt::entry;
use {{project-name}} as _; // memory layout + panic handler use {{crate_name}} as _; // memory layout + panic handler
#[entry] #[entry]
fn main() -> ! { fn main() -> ! {
assert!(false, "TODO: Write actual tests"); assert!(false, "TODO: Write actual tests");
{{project-name}}::exit(); {{crate_name}}::exit();
} }