Adding comment about deprecation allowance
This commit is contained in:
parent
c804312e60
commit
7b86a2bc42
|
@ -1,5 +1,4 @@
|
||||||
#![deny(warnings)]
|
#![deny(warnings)]
|
||||||
#![allow(deprecated)]
|
|
||||||
#![allow(clippy::missing_safety_doc)]
|
#![allow(clippy::missing_safety_doc)]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![no_main]
|
#![no_main]
|
||||||
|
@ -19,6 +18,9 @@ fn panic(_info: &core::panic::PanicInfo) -> ! {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Deprecation warnings are temporarily allowed as the HAL DMA goes through updates.
|
||||||
|
#![allow(deprecated)]
|
||||||
|
|
||||||
#[cfg(feature = "semihosting")]
|
#[cfg(feature = "semihosting")]
|
||||||
extern crate panic_semihosting;
|
extern crate panic_semihosting;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue