diff --git a/Cargo.toml b/Cargo.toml index 258b22d..df1a2cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ documetation = "https://docs.rs/thumby-rs" edition = "2021" exclude = ["build.rs", "deploy.sh", "memory.x", "doc", "*.png"] keywords = ["thumby", "tiny-circuits", "rp2040", "embedded"] -license = "Apache-2.0" +license = "GPL-3.0" name = "thumby" repository = "https://github.com/jngo102/thumby-rs" version = "0.0.2" diff --git a/examples/music.rs b/examples/music.rs index e8f92f5..40654c8 100644 --- a/examples/music.rs +++ b/examples/music.rs @@ -4,7 +4,7 @@ use cortex_m::asm; // Ensure we halt the program on panic (if we don't mention this crate it won't // be linked) -use panic_halt as _; +// use panic_halt as _; /// The linker will place this boot block at the start of our program image. We /// need this to help the ROM bootloader get our code up and running.