Adding comment about deprecation allowance
This commit is contained in:
parent
c804312e60
commit
7b86a2bc42
|
@ -1,5 +1,4 @@
|
|||
#![deny(warnings)]
|
||||
#![allow(deprecated)]
|
||||
#![allow(clippy::missing_safety_doc)]
|
||||
#![no_std]
|
||||
#![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")]
|
||||
extern crate panic_semihosting;
|
||||
|
||||
|
|
Loading…
Reference in New Issue