forked from M-Labs/zynq-rs
1
0
Fork 0

fiq_issue

fiq_issue
morgan 2024-03-04 12:04:19 +08:00
parent 5bd336c961
commit 80255c3a95
1 changed files with 1 additions and 1 deletions

View File

@ -45,6 +45,6 @@ interrupt_handler!(IRQ, irq, __irq_stack0_start, __irq_stack1_start, {
#[cfg(feature = "dummy_fiq_handler")]
interrupt_handler!(FIQ, fiq, __irq_stack0_start, __irq_stack1_start, {
stdio::drop_uart();
println!("FIQ");
println!("FIQ hello from zynq-rs");
loop {}
});