pub struct Discovery {
    pub configured_cluster_size: u8,
    pub known_nodes: Vec<ID, 5>,
}
Expand description

uavcan.pnp.cluster.Discovery.1.0

Size ranges from 2 to 12 bytes

This message is used by redundant allocators to find each other’s node-ID. Please refer to the type AppendEntries for details.

An allocator should stop publishing this message as soon as it has discovered all other allocators in the cluster.

An exception applies: when an allocator receives a Discovery message where the list of known nodes is incomplete (i.e. len(known_nodes) < configured_cluster_size), it shall publish a Discovery message once. This condition allows other allocators to quickly re-discover the cluster after a restart.

Fields§

§configured_cluster_size: u8

The number of allocators in the cluster as configured on the sender. This value shall be the same across all allocators.

saturated uint3

Always aligned, size 3 bits

§known_nodes: Vec<ID, 5>

Node-IDs of the allocators that are known to the publishing allocator, including the publishing allocator itself.

uavcan.node.ID.1.0[<=5]

Always aligned, size ranges from 0 to 80 bits

Implementations§

source§

impl Discovery

source

pub const BROADCASTING_PERIOD: u8 = 1u8

[second] This message should be broadcasted by the allocator at this interval until all other allocators are discovered.

source

pub const MAX_CLUSTER_SIZE: u8 = 5u8

The redundant allocator cluster cannot contain more than 5 allocators.

Trait Implementations§

source§

impl DataType for Discovery

source§

const EXTENT_BYTES: Option<u32> = _

This type is delimited with an extent of 96 bytes.

source§

impl Deserialize for Discovery

source§

fn deserialize(cursor: &mut ReadCursor<'_>) -> Result<Self, DeserializeError>where Self: Sized,

Deserializes a value and returns it
source§

fn deserialize_from_bytes(bytes: &[u8]) -> Result<Self, DeserializeError>where Self: Sized,

A convenience function that creates a cursor around the provided bytes and calls deserialize
source§

impl Serialize for Discovery

source§

fn size_bits(&self) -> usize

Returns the size of the encoded form of this value, in bits Read more
source§

fn serialize(&self, cursor: &mut WriteCursor<'_>)

Serializes this value into a buffer Read more
source§

fn serialize_to_bytes(&self, bytes: &mut [u8])

A convenience function that creates a cursor around the provided bytes and calls serialize
source§

impl Message for Discovery

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.