mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
refactor(macro): changed not-yet-changed crate names to $crate
This commit is contained in:
parent
a071ab05b2
commit
28790218c0
2 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ macro_rules! make_rp2040_monotonic_handler {
|
|||
|
||||
pub struct Rp2040Token;
|
||||
|
||||
unsafe impl $crate::InterruptToken<rtic_monotonics::rp2040::Timer>
|
||||
unsafe impl $crate::InterruptToken<$crate::rp2040::Timer>
|
||||
for Rp2040Token
|
||||
{
|
||||
}
|
||||
|
|
|
@ -167,7 +167,7 @@ macro_rules! make_systick_handler {
|
|||
|
||||
pub struct SystickToken;
|
||||
|
||||
unsafe impl $crate::InterruptToken<rtic_monotonics::systick::Systick>
|
||||
unsafe impl $crate::InterruptToken<$crate::systick::Systick>
|
||||
for SystickToken
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue