Compare commits
1 Commits
main
...
fix-simple
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f94f5085b
|
@@ -3,7 +3,6 @@
|
||||
#![no_std]
|
||||
|
||||
use cortex_m_rt::entry;
|
||||
use panic_probe as _;
|
||||
use va108xx_hal as _;
|
||||
|
||||
#[entry]
|
||||
@@ -12,3 +11,10 @@ fn main() -> ! {
|
||||
cortex_m::asm::nop();
|
||||
}
|
||||
}
|
||||
|
||||
#[panic_handler]
|
||||
fn panic(_info: &core::panic::PanicInfo) -> ! {
|
||||
loop {
|
||||
cortex_m::asm::nop();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user