Skip to content

Commit

Permalink
Fix doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
diondokter committed Feb 19, 2025
1 parent d7210c9 commit 4ede6cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lr-wpan-rs-tests/src/aether/radio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use tokio::sync::mpsc::Receiver;

use crate::aether::{AetherInner, AirPacket, Coordinate, Node, NodeId};

/// Single radio connected to an [`Aether`]
/// Single radio connected to an [`super::Aether`]
#[derive(Debug)]
pub struct AetherRadio {
pub(super) inner: Arc<Mutex<AetherInner>>,
Expand Down
2 changes: 1 addition & 1 deletion lr-wpan-rs/src/phy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub trait Phy {
/// - The `data` must be a valid MAC frame.
/// - If `send_time` is some, then that must be the time at which the data is sent. This must be done as accurately as possible.
/// - If `ranging` is true, then the ranging bit must be set.
/// - If `use_csma` is true, then the carrier sense mechanism should be used. If the channel is busy, then the send is aborted and [SendResult::ChannelBusy] is returned
/// - If `use_csma` is true, then the carrier sense mechanism should be used. If the channel is busy, then the send is aborted and [SendResult::ChannelAccessFailure] is returned
/// - The `continuation` specifies what the radio should do after the transmission
///
/// The actual time the data frame was sent is returned. This needs to be accurate, especially when `ranging` is true
Expand Down

0 comments on commit 4ede6cd

Please sign in to comment.