openthread/ot/types/link_mode.rs
1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use crate::prelude_internal::*;
6
7bitflags::bitflags! {
8 /// Link Mode Config.
9 /// Functional equivalent of [`otsys::otLinkModeConfig`](crate::otsys::otLinkModeConfig).
10 #[repr(C)]
11 #[derive(Clone, Copy, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
12 pub struct LinkModeConfig : u8 {
13 /// Set if the sender is a Full Thread Device (FTD); clear if a Minimal Thread Device (MTD).
14 ///
15 /// See page 4-8 of the Thread 1.1.1 specification for more details.
16 const IS_FTD = (1<<1);
17
18 /// Set if the sender requires the full Network Data; clear if the sender only needs the stable Network Data.
19 ///
20 /// See page 4-8 of the Thread 1.1.1 specification for more details.
21 const NETWORK_DATA = (1<<0);
22
23 /// Set if the sender has its receiver on when not transmitting, cleared otherwise.
24 /// Only an MTD acting as a SED will set this flag.
25 ///
26 /// See page 4-8 of the Thread 1.1.1 specification for more details.
27 const RX_ON_WHEN_IDLE = (1<<3);
28 }
29}
30
31impl LinkModeConfig {
32 /// Returns true if the mode indicates a Full Thread Device (FTD)
33 pub fn is_ftd(&self) -> bool {
34 self.contains(Self::IS_FTD)
35 }
36
37 /// Returns true if the mode indicates a Minimal Thread Device (MTD)
38 pub fn is_mtd(&self) -> bool {
39 !self.is_ftd()
40 }
41}
42
43impl From<otLinkModeConfig> for LinkModeConfig {
44 fn from(x: otLinkModeConfig) -> Self {
45 let mut ret = Self::default();
46 if x.mDeviceType() {
47 ret |= LinkModeConfig::IS_FTD;
48 }
49 if x.mNetworkData() {
50 ret |= LinkModeConfig::NETWORK_DATA;
51 }
52 if x.mRxOnWhenIdle() {
53 ret |= LinkModeConfig::RX_ON_WHEN_IDLE;
54 }
55 ret
56 }
57}
58
59impl From<LinkModeConfig> for otLinkModeConfig {
60 fn from(x: LinkModeConfig) -> Self {
61 let mut ret = Self::default();
62 ret.set_mDeviceType(x.contains(LinkModeConfig::IS_FTD));
63 ret.set_mNetworkData(x.contains(LinkModeConfig::NETWORK_DATA));
64 ret.set_mRxOnWhenIdle(x.contains(LinkModeConfig::RX_ON_WHEN_IDLE));
65
66 ret
67 }
68}