Home
last modified time | relevance | path

Searched refs:Node (Results 1 – 25 of 56) sorted by relevance

123

/Zephyr-latest/scripts/dts/
Dgen_defines.py112 def node_z_path_id(node: edtlib.Node) -> str: argument
180 def write_node_comment(node: edtlib.Node) -> None: argument
235 def write_idents_and_existence(node: edtlib.Node) -> None: argument
258 def write_bus(node: edtlib.Node) -> None: argument
273 def write_special_props(node: edtlib.Node) -> None: argument
293 def write_ranges(node: edtlib.Node) -> None: argument
337 def write_regs(node: edtlib.Node) -> None: argument
374 def write_interrupts(node: edtlib.Node) -> None: argument
442 def write_compatibles(node: edtlib.Node) -> None: argument
461 def write_parent(node: edtlib.Node) -> None: argument
[all …]
/Zephyr-latest/samples/modules/canopennode/
DKconfig12 7-bit CANopen Node ID
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/
Drpr_cli.rst13 Node Provisioning Protocol Interface procedures by interacting with mesh nodes that support the
104 :ref:`bluetooth_mesh_models_rpr_srv` model. This is provided through the Node Provisioning Protocol
109 * Node Address Refresh procedure: Used to change the node’s device key and unicast address.
110 * Node Composition Refresh procedure: Used to change the device key of the node, and to add or
129 The above example shows pseudo code for triggering a Node Address Refresh procedure on the Target
133 ``composition_changed`` flag was set to true, this code would instead trigger a Node Composition
Drpr_srv.rst20 Note that after refreshing the device key, node address or Composition Data through a Node
30 * All Node Provisioning Protocol Interface (NPPI) procedures are supported. However, if the composi…
Dproxy.rst11 Nodes with the Proxy feature enabled can advertise with Network Identity and Node Identity,
20 advertise with Private Network Identity and Private Node Identity types, which is controlled by the
Dpriv_beacon_srv.rst12 Private GATT Proxy state and Private Node Identity state.
Dcore.rst11 Low Power Node
14 The Low Power Node (LPN) role allows battery powered devices to participate in
Dshell.rst210 Low Power Node
456 Enable the Proxy Node Identity beacon, allowing Proxy devices to connect explicitly to this
615 Get or Set of current Node Identity state of a subnet.
618 * ``Identity``: If present, sets the identity of Node Identity state.
751 * ``Cred``: Whether to publish with Friendship credentials when acting as a Low Power Node.
776 * ``Cred``: Whether to publish with Friendship credentials when acting as a Low Power Node.
1647 Get the target's Private Node Identity state. Possible values:
1649 * ``0x00``: The node does not adverstise with the Private Node Identity.
1650 * ``0x01``: The node advertises with the Private Node Identity.
1651 * ``0x02``: The node doesn't support advertising with the Private Node Identity.
[all …]
/Zephyr-latest/doc/_extensions/zephyr/domain/static/js/
Dcodesample-livesearch.js23 if (node.nodeType === Node.TEXT_NODE) {
40 } else if (node.nodeType === Node.ELEMENT_NODE) {
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/
Ddtlib.py32 class Node: class
104 self.nodes: dict[str, Node] = {}
332 def __init__(self, node: Node, name: str): argument
346 self.node: Node = node
509 def to_node(self) -> Node:
525 def to_nodes(self) -> list[Node]:
552 def to_path(self) -> Node:
785 self._root: Optional[Node] = None
786 self.alias2node: dict[str, Node] = {}
787 self.label2node: dict[str, Node] = {}
[all …]
Dedtlib.py90 from devicetree.dtlib import Node as dtlib_Node
869 class Node: class
2005 self.nodes: list[Node] = []
2006 self.compat2nodes: dict[str, list[Node]] = defaultdict(list)
2007 self.compat2okay: dict[str, list[Node]] = defaultdict(list)
2008 self.compat2notokay: dict[str, list[Node]] = defaultdict(list)
2011 self.label2node: dict[str, Node] = {}
2012 self.dep_ord2node: dict[int, Node] = {}
2032 self._node2enode: dict[dtlib_Node, Node] = {}
2053 def get_node(self, path: str) -> Node:
[all …]
/Zephyr-latest/tests/drivers/clock_control/stm32_clock_configuration/stm32_common_devices/boards/
Df4_sdmmc48_pll.overlay7 /* Node is disabled by default unless the PLL_I2S is enabled */
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Drunner.py61 from anytree import Node, RenderTree
157 root = Node("Summary")
159 Node(f"Total test suites: {self.total}", parent=root)
160 processed_suites = Node(f"Processed test suites: {self.done}", parent=root)
161 filtered_suites = Node(
165 Node(f"Filtered test suites (static): {self.filtered_static}", parent=filtered_suites)
166 Node(f"Filtered test suites (at runtime): {self.filtered_runtime}", parent=filtered_suites)
167 selected_suites = Node(f"Selected test suites: {selected_configs}", parent=processed_suites)
168 Node(f"Skipped test suites: {self.skipped}", parent=selected_suites)
169 Node(f"Passed test suites: {self.passed}", parent=selected_suites)
[all …]
Dtestplan.py26 from anytree import Node, RenderTree, find
386 testsuite = Node("Testsuite")
387 samples = Node("Samples", parent=testsuite)
388 tests = Node("Tests", parent=testsuite)
398 area = Node(sec[1], parent=samples)
400 Node(test, parent=area)
408 area = Node(sec[0], parent=tests)
416 subarea = Node(sec[1], parent=area)
417 Node(test, parent=subarea)
/Zephyr-latest/boards/dragino/lsn50/
Ddragino_lsn50.dts12 model = "Dragino LSN50 LoRA Sensor Node";
/Zephyr-latest/boards/dragino/nbsn95/
Ddragino_nbsn95.dts12 model = "Dragino NBSN95 NB-IoT Sensor Node";
/Zephyr-latest/doc/_extensions/zephyr/domain/
D__init__.py37 from anytree import ChildResolverError, Node, PreOrderIter, Resolver, search
301 if isinstance(value, nodes.Node):
338 def output_sample_categories_list_items(self, tree, container: nodes.Node): argument
417 def output_sample_categories_sections(self, tree, container: nodes.Node, show_titles=False): argument
1003 "code-samples-categories-tree": Node("samples"),
1140 ) -> Node:
1164 e.node = Node(node_name, parent=e.node)
1176 def run(self) -> list[Node]:
1204 app: Sphinx, pagename: str, templatename: str, context: dict[str, Any], doctree: nodes.Node argument
/Zephyr-latest/doc/connectivity/bluetooth/
Dfeatures.rst77 * Relay, Friend Node, Low-Power Node (LPN) and GATT Proxy features
/Zephyr-latest/doc/_extensions/zephyr/kconfig/
D__init__.py184 def kconfig_search_visit_html(self, node: nodes.Node) -> None: argument
189 def kconfig_search_visit_latex(self, node: nodes.Node) -> None: argument
225 def unknown_visit(self, node: nodes.Node) -> None: argument
461 doctree: nodes.Node | None,
/Zephyr-latest/boards/st/stm32wb5mmg/
Dstm32wb5mmg.dts40 /* Node is disabled by default as default source is HSI48 */
/Zephyr-latest/scripts/dts/python-devicetree/tests/
Dtest.dts346 // For testing Node.props (derived from 'properties:' in the binding)
416 // For testing Node.props with 'default:' values in binding
471 // Node with 'child-binding:' in binding (along with a recursive
/Zephyr-latest/boards/st/stm32wb5mm_dk/
Dstm32wb5mm_dk.dts81 /* Node is disabled by default as default source is HSI48 */
/Zephyr-latest/doc/connectivity/networking/api/
Dptp.rst42 Management Node,
/Zephyr-latest/boards/st/nucleo_wb55rg/
Dnucleo_wb55rg.dts99 /* Node is disabled by default as default source is HSI48 */
/Zephyr-latest/doc/introduction/
Dindex.rst151 * Relay, Friend Node, Low-Power Node (LPN) and GATT Proxy features

123