Home
last modified time | relevance | path

Searched full:protocol (Results 1 – 25 of 520) sorted by relevance

12345678910>>...21

/Zephyr-Core-3.6.0/doc/connectivity/networking/api/
Dppp.rst3 Point-to-Point Protocol (PPP) Support
13 `Point-to-Point Protocol
15 layer (layer 2) communications protocol used to establish a direct connection
18 protocol.
27 * LCP (Link Control Protocol,
31 * IPCP (IP Control Protocol,
33 * IPV6CP (IPv6 Control Protocol,
Dthread.rst3 Thread protocol
14 technology over IEEE 802.15.4 protocol. IP connectivity lets you easily connect
20 Thread protocol can be found at
23 Zephyr integrates an open source Thread protocol implementation called OpenThread,
50 OpenThread L2 uses Zephyr's protocol agnostic IEEE 802.15.4 driver API
61 stack together with Zephyr's IEEE 802.15.4 protocol agnostic driver API. This
Dlldp.rst3 Link Layer Discovery Protocol
13 The Link Layer Discovery Protocol (LLDP) is a vendor-neutral link layer
14 protocol used by network devices for advertising their identity, capabilities,
/Zephyr-Core-3.6.0/subsys/sd/
DKconfig9 bool "MMC protocol support"
11 Enable MMC protocol support. Required for eMMC cards to function.
14 bool "SDMMC protocol support"
16 Enable SDMMC protocol support. Required for SD memory cards to
20 bool "SDIO protocol support"
22 Enable SDIO protocol support. Required for SD I/O cards to function.
97 bool "Ultra high speed SD card protocol support"
/Zephyr-Core-3.6.0/drivers/sdhc/
DKconfig38 to enable UHS portion of protocol stack.
44 Enables SPI protocol in SD protocol stack
50 required. Enables native protocol in SD protocol stack.
/Zephyr-Core-3.6.0/samples/subsys/mgmt/osdp/
DREADME.rst3 Open Supervised Device Protocol (OSDP)
6 Open Supervised Device Protocol (OSDP) is an IEC standard (IEC 60839-11-5)
11 OSDP describes the communication protocol for interfacing one or more Peripheral
13 communication channel. Nevertheless, this protocol can be used to transfer
18 used as a general communication protocol for devices in a secure way without
/Zephyr-Core-3.6.0/subsys/canbus/
DKconfig.canopen5 bool "CANopen protocol support"
9 Enable CANopen (EN 50325-4) (CiA 301) protocol
11 protocol stack.
/Zephyr-Core-3.6.0/subsys/net/l2/ppp/
Dlink.c22 if (proto->protocol == PPP_LCP) { in lcp_up()
37 if (proto->protocol == PPP_CCP || proto->protocol == PPP_ECP) { in do_network()
50 if (proto->protocol == PPP_CCP || proto->protocol == PPP_ECP || in do_network()
51 proto->protocol >= 0xC000) { in do_network()
87 if (proto->protocol == auth_proto) { in do_auth()
Dppp_internal.h38 /** Protocol handler information. */
40 /** Protocol init function */
54 /** Enable this protocol */
57 /** Disable this protocol */
60 /** PPP protocol number */
61 uint16_t protocol; member
83 enum ppp_protocol_type protocol,
96 .protocol = proto, \
110 const char *ppp_option2str(enum ppp_protocol_type protocol, int type);
137 uint16_t protocol);
[all …]
Dppp_l2.c76 uint16_t protocol; in process_ppp_msg() local
83 ret = net_pkt_read_be16(pkt, &protocol); in process_ppp_msg()
88 if ((IS_ENABLED(CONFIG_NET_IPV4) && protocol == PPP_IP) || in process_ppp_msg()
89 (IS_ENABLED(CONFIG_NET_IPV6) && protocol == PPP_IPV6)) { in process_ppp_msg()
90 /* Remove the protocol field so that IP packet processing in process_ppp_msg()
99 if (proto->protocol != protocol) { in process_ppp_msg()
106 switch (protocol) { in process_ppp_msg()
114 ppp_send_proto_rej(iface, pkt, protocol); in process_ppp_msg()
120 NET_DBG("%s protocol %s%s(0x%02x)", in process_ppp_msg()
121 ppp_proto2str(protocol) ? "Unhandled" : "Unknown", in process_ppp_msg()
[all …]
/Zephyr-Core-3.6.0/samples/modules/thrift/hello/client/src/
Dmain.cpp16 #include <thrift/protocol/TBinaryProtocol.h>
17 #include <thrift/protocol/TCompactProtocol.h>
25 using namespace apache::thrift::protocol;
68 std::shared_ptr<TProtocol> protocol; in main() local
110 protocol = std::make_shared<TCompactProtocol>(transport); in main()
112 protocol = std::make_shared<TBinaryProtocol>(transport); in main()
115 HelloClient client(protocol); in main()
/Zephyr-Core-3.6.0/doc/connectivity/canbus/
Disotp.rst3 ISO-TP Transport Protocol
13 ISO-TP is a transport protocol defined in the ISO-Standard ISO15765-2 Road
15 Part2: Transport protocol and network layer services. As its name already
20 This transport protocol extends the limited payload data size for classical
24 size of the CAN frame. The header of those segments is called Protocol Control
/Zephyr-Core-3.6.0/subsys/logging/backends/
DKconfig.spinel5 bool "OpenThread dedicated Spinel protocol backend"
10 When enabled, backend will use OpenThread dedicated SPINEL protocol for logging.
11 This protocol is byte oriented and wraps given messages into serial frames.
/Zephyr-Core-3.6.0/doc/services/modbus/
Dindex.rst6 Modbus is an industrial messaging protocol. The protocol is specified
23 `MODBUS Protocol Specifications`_.
39 .. _`MODBUS Protocol Specifications`: https://www.modbus.org/specs.php
/Zephyr-Core-3.6.0/samples/net/wpanusb/
Dwpan-radio-spec.txt1 ieee802154 wpan radio protocol over USB
6 The document describes protocol between 802.15.4 physical radio and Linux
7 kernel driver over USB. Protocol is based on atusb Linux driver protocol
/Zephyr-Core-3.6.0/include/zephyr/drivers/sip_svc/
Dsip_svc_agilex_mailbox.h13 * protocol handler. SDM Mailbox protocol will be embedded in
14 * Arm SiP Services SMC protocol and sent to/from SDM via Arm
/Zephyr-Core-3.6.0/modules/thrift/src/thrift/server/
DTSimpleServer.h50 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> &protocolFactory);
57 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> &protocolFactory);
66 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory>
68 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory>
78 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory>
80 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory>
/Zephyr-Core-3.6.0/subsys/net/l2/ieee802154/
DKconfig.radio23 prompt "Radio channel access protocol"
26 Select which medium access protocol to use.
29 bool "IEEE 802.15.4 unslotted CSMA-CA medium access protocol"
37 bool "IEEE 802.15.4 Aloha medium access protocol (CCA mode 4)"
/Zephyr-Core-3.6.0/drivers/ptp_clock/
DKconfig5 bool "Precision Time Protocol (PTP) Clock drivers"
7 Enable options for Precision Time Protocol Clock drivers.
/Zephyr-Core-3.6.0/samples/modules/thrift/hello/client/
Dhello_client.py19 from thrift.protocol import TBinaryProtocol
38 protocol = TBinaryProtocol.TBinaryProtocol(transport)
39 client = Hello.Client(protocol)
/Zephyr-Core-3.6.0/subsys/usb/usb_c/
Dusbc_prl.c18 * @brief USB Power Delivery Protocol Layer (PRL)
25 * @brief Protocol Layer Flags
57 * @brief Protocol Layer Transmission States
87 * @brief Protocol Layer Hard Reset States
136 * @brief Test if the Protocol Layer State Machines are running
149 * @brief Directs the Protocol Layer to perform a hard reset. This function
167 * @brief Instructs the Protocol Layer that a hard reset is complete.
179 * @brief Directs the Protocol Layer to construct and transmit a Power Delivery
199 * @brief Directs the Protocol Layer to construct and transmit a Power Delivery
220 * @brief Directs the Protocol Layer to reset the revision of each packet type
[all …]
/Zephyr-Core-3.6.0/doc/connectivity/bluetooth/
Doverview.rst14 design and development of BLE radio hardware, the protocol stack in Zephyr has
47 * Concurrent multi-protocol support ready
93 * Logical Link Control and Adaptation Protocol (L2CAP)
94 * Serial Port emulation (RFCOMM protocol)
95 * Service Discovery Protocol (SDP)
/Zephyr-Core-3.6.0/tests/modules/thrift/ThriftTest/src/
Dmain.cpp11 #include <thrift/protocol/TBinaryProtocol.h>
12 #include <thrift/protocol/TCompactProtocol.h>
25 using namespace apache::thrift::protocol;
63 std::shared_ptr<TProtocol> protocol; in setup_client() local
79 protocol = std::make_shared<TCompactProtocol>(transport); in setup_client()
81 protocol = std::make_shared<TBinaryProtocol>(transport); in setup_client()
84 return std::unique_ptr<ThriftTestClient>(new ThriftTestClient(protocol)); in setup_client()
/Zephyr-Core-3.6.0/doc/connectivity/bluetooth/api/mesh/
Drpr_srv.rst10 The Remote Provisioning Server model is introduced in the Bluetooth Mesh Protocol
21 Provisioning Protocol Interface (NPPI) procedure, the :c:member:`bt_mesh_prov.reprovisioned`
30 * All Node Provisioning Protocol Interface (NPPI) procedures are supported. However, if the composi…
/Zephyr-Core-3.6.0/subsys/usb/device/class/netusb/
DKconfig18 Class (CDC) USB protocol specified by USB-IF.
25 Class (CDC) USB protocol and can be used to encapsulate Ethernet
33 Remote NDIS (RNDIS) is commonly used Microsoft vendor protocol with

12345678910>>...21