Skip to content

Commit

Permalink
WIP2
Browse files Browse the repository at this point in the history
  • Loading branch information
Urhengulas committed Oct 9, 2024
1 parent 1088b34 commit 39f299f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions firmware/defmt-semihosting/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
//! log frames so don't use those APIs.

#![no_std]
// nightly warns about static_mut_refs, but stable does not know about that
// lint, so we allow it but also ignore if it is unknown
#![allow(static_mut_refs, unknown_lints)]
// nightly warns about static_mut_refs, but 1.76 (our MSRV) does not know about
// that lint yet, so we ignore it it but also ignore if it is unknown
#![allow(unknown_lints, static_mut_refs)]

use core::sync::atomic::{AtomicBool, Ordering};

Expand Down

0 comments on commit 39f299f

Please sign in to comment.