mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-29 15:04:32 +01:00
More rustanalyzer lint fixes
This commit is contained in:
parent
3bf5a4f7a0
commit
52dc324aa7
1 changed files with 2 additions and 0 deletions
|
@ -376,6 +376,7 @@ pub fn codegen(
|
||||||
///
|
///
|
||||||
/// This will use the time `Instant::new(0)` as baseline if called in `#[init]`,
|
/// This will use the time `Instant::new(0)` as baseline if called in `#[init]`,
|
||||||
/// so if you use a non-resetable timer use `spawn_at` when in `#[init]`
|
/// so if you use a non-resetable timer use `spawn_at` when in `#[init]`
|
||||||
|
#[allow(non_snake_case)]
|
||||||
pub fn #internal_spawn_after_ident<D>(
|
pub fn #internal_spawn_after_ident<D>(
|
||||||
duration: D
|
duration: D
|
||||||
#(,#args)*
|
#(,#args)*
|
||||||
|
@ -395,6 +396,7 @@ pub fn codegen(
|
||||||
|
|
||||||
#(#cfgs)*
|
#(#cfgs)*
|
||||||
/// Spawns the task at a fixed time instant
|
/// Spawns the task at a fixed time instant
|
||||||
|
#[allow(non_snake_case)]
|
||||||
pub fn #internal_spawn_at_ident(
|
pub fn #internal_spawn_at_ident(
|
||||||
instant: rtic::time::Instant<#mono_type>
|
instant: rtic::time::Instant<#mono_type>
|
||||||
#(,#args)*
|
#(,#args)*
|
||||||
|
|
Loading…
Reference in a new issue