rtic-sync: don't force Signal import on make_signal!() use

This commit is contained in:
Cyril Marpaud 2025-03-16 17:10:08 +01:00 committed by Emil Fresk
parent daff0c2913
commit 94b2d5e9c0

View file

@ -161,7 +161,7 @@ impl<T: Copy> SignalReader<'_, T> {
#[macro_export]
macro_rules! make_signal {
( $T:ty ) => {{
static SIGNAL: Signal<$T> = Signal::new();
static SIGNAL: $crate::signal::Signal<$T> = $crate::signal::Signal::new();
SIGNAL.split()
}};