/Zephyr-Core-3.6.0/doc/connectivity/networking/api/ |
D | ppp.rst | 3 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,
|
D | thread.rst | 3 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
|
D | lldp.rst | 3 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/ |
D | Kconfig | 9 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/ |
D | Kconfig | 38 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/ |
D | README.rst | 3 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/ |
D | Kconfig.canopen | 5 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/ |
D | link.c | 22 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()
|
D | ppp_internal.h | 38 /** 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 …]
|
D | ppp_l2.c | 76 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/ |
D | main.cpp | 16 #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/ |
D | isotp.rst | 3 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/ |
D | Kconfig.spinel | 5 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/ |
D | index.rst | 6 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/ |
D | wpan-radio-spec.txt | 1 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/ |
D | sip_svc_agilex_mailbox.h | 13 * 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/ |
D | TSimpleServer.h | 50 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/ |
D | Kconfig.radio | 23 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/ |
D | Kconfig | 5 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/ |
D | hello_client.py | 19 from thrift.protocol import TBinaryProtocol 38 protocol = TBinaryProtocol.TBinaryProtocol(transport) 39 client = Hello.Client(protocol)
|
/Zephyr-Core-3.6.0/subsys/usb/usb_c/ |
D | usbc_prl.c | 18 * @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/ |
D | overview.rst | 14 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/ |
D | main.cpp | 11 #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/ |
D | rpr_srv.rst | 10 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/ |
D | Kconfig | 18 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
|