/Zephyr-latest/samples/net/mqtt_sn_publisher/compose/ |
D | compose.yaml | 10 mqttsn-gateway: 13 - ./gateway.conf:/etc/paho/gateway.conf:ro
|
/Zephyr-latest/samples/net/mqtt_sn_publisher/ |
D | Kconfig | 9 bool "Whether to statically define the Gateway. Will use Search procedure if False." 12 string "IP of the MQTT-SN gateway. Only used if NET_SAMPLE_MQTT_SN_STATIC_GATEWAY=n." 16 int "Port of the MQTT-SN gateway"
|
D | README.rst | 5 Send MQTT-SN PUBLISH messages to an MQTT-SN gateway. 21 client that sends MQTT-SN PUBLISH messages to an MQTT-SN gateway. 34 - MQTT-SN gateway, like Eclipse Paho 43 This sample application supports both static IP addresses and the Gateway Discovery process. 46 static IP or Gateway discovery process. 48 You will also need to start an MQTT-SN gateway. A convenience Docker Compose specification file 65 from source - see `PAHO MQTT-SN Gateway`_ - or run an unofficial docker image, l 68 .. _PAHO MQTT-SN Gateway: https://www.eclipse.org/paho/index.php?page=components/mqtt-sn-transparen… 77 Then, in another window, start the gateway, e.g. by using docker: 81 …un -it -p 10000:10000 -p 10000:10000/udp --name paho -v $PWD/gateway.conf:/etc/paho/gateway.conf:r… [all …]
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | mqtt_sn.rst | 25 MQTT-SN clients require an MQTT-SN gateway to connect to. These gateways translate between 26 MQTT-SN and MQTT. The Eclipse Paho project offers an implementation of a MQTT-SN gateway, but 28 https://www.eclipse.org/paho/index.php?page=components/mqtt-sn-transparent-gateway/index.php 78 struct sockaddr_in gateway = {0}; 83 mqtt_sn_transport_udp_init(&tp, (struct sockaddr*)&gateway, sizeof((gateway))); 87 After the configuration is set up, the network address for the gateway to 90 should do at least one of the following steps to define a Gateway for the library: 92 * Call the :c:func:`mqtt_sn_add_gw` function to manually define a Gateway address. 106 After the Gateway address has been defined or found, the MQTT-SN client can 107 connect to the gateway. Call the :c:func:`mqtt_sn_connect` function, which will send a [all …]
|
/Zephyr-latest/samples/subsys/modbus/tcp_gateway/ |
D | README.rst | 1 .. zephyr:code-sample:: modbus-gateway 2 :name: Modbus TCP-to-serial gateway 5 Implement a gateway between an Ethernet TCP-IP network and a Modbus serial line. 10 This is a simple application demonstrating a gateway implementations between 19 Gateway example is running on an evaluation board and communicates 36 The following commands build and flash gateway sample. 45 to the gateway.
|
D | sample.yaml | 2 name: Modbus TCP to serial line gateway sample
|
/Zephyr-latest/samples/bluetooth/handsfree_ag/ |
D | README.rst | 2 :name: Hands-free Audio Gateway (AG) 5 Use the Hands-Free Profile Audio Gateway (AG) APIs. 10 Application demonstrating usage of the Hands-free Audio Gateway (AG) APIs.
|
D | sample.yaml | 2 name: Bluetooth Handsfree Audio Gateway
|
/Zephyr-latest/drivers/dai/intel/ssp/ |
D | dai-params-intel-ipc4.h | 17 /**< Type of the gateway. */ 129 /**< Base top-level structure of an address of a gateway. */ 132 * is expected to be encoded in a gateway specific way depending on 133 * the actual type of gateway. 142 /**< Index of the virtual DMA at the gateway. */ 145 /**< Type of the gateway, one of ConnectorNodeId::Type values. */ 154 * Attributes are usually provided along with the gateway configuration 155 * BLOB when the FW is requested to instantiate that gateway. 157 * There are flags which requests FW to allocate gateway related data 168 /**< Gateway data requested in low power memory. */ [all …]
|
/Zephyr-latest/tests/boards/espressif/ethernet/ |
D | Kconfig | 16 int "Gateway Ping Timeout (in seconds)" 19 Timeout duration for pinging the network gateway.
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | lwm2m_obj_gateway.h | 14 /* LwM2M Gateway resource IDs */ 52 * @brief Check if given message is handled by Gateway callback. 56 * @return -ENOENT if this msg was not handled by Gateway object.
|
D | lwm2m_obj_gateway.c | 11 * Gateway 36 "Gateway prefix requires validation"); 78 /* Prefix of each gateway must be unique */ in prefix_validation_cb() 147 LOG_DBG("Created LWM2M gateway instance: %d", obj_inst_id); in lwm2m_gw_create() 206 /* initialize the LwM2M Gateway field data */ in lwm2m_gw_init()
|
/Zephyr-latest/tests/boards/espressif/wifi/ |
D | Kconfig | 52 Number of gateway ping attempts. 77 int "Gateway Ping Timeout (in seconds)" 80 Timeout duration for pinging the network gateway.
|
/Zephyr-latest/doc/connectivity/networking/ |
D | qemu_user_setup.rst | 20 By default, QEMU uses the ``10.0.2.X/24`` network and runs a gateway at 22 this gateway, which will filter out packets based on the QEMU command line 23 parameters. This gateway also functions as a DHCP server for all GOS, 43 communicate to the QEMU gateway, and any data intended for the host machine
|
D | armfvp_user_networking_setup.rst | 23 By default, Arm FVP uses the ``172.20.51.0/24`` network and runs a gateway at 24 ``172.20.51.254``. This gateway also functions as a DHCP server for the GOS,
|
/Zephyr-latest/soc/intel/intel_adsp/common/include/ |
D | intel_adsp_hda.h | 38 /* Gateway Control and Status Register */ 42 #define DGCS_GEN BIT(26) /* Gateway Enable */ 46 #define DGCS_GBUSY BIT(15) /* Gateway Busy */ 56 /* Gateway Buffer Base Address */ 60 /* Gateway Buffer Size */ 64 /* Gateway Buffer Position Increment */ 68 /* Gateway Buffer Read Position */ 72 /* Gateway Buffer Write Position */ 76 /* Gateway Buffer Segment Position */ 80 /* Gateway Minimum Buffer Size */ [all …]
|
D | cavs-idc.h | 127 #define CAVS_L3_DSPGCL BIT(31) /* DSP Gateway Code Loader */ 128 #define CAVS_L3_DSPGHOS(n) BIT(16 + n) /* DSP Gateway Host Output Stream */ 130 #define CAVS_L3_DSPGHIS(n) BIT(n) /* DSP Gateway Host Input Stream */ 132 #define CAVS_L4_DSPGLOS(n) BIT(16 + n) /* DSP Gateway Link Output Stream */ 134 #define CAVS_L4_DSPGLIS(n) BIT(n) /* DSP Gateway Link Input Stream */
|
/Zephyr-latest/doc/services/modbus/ |
D | index.rst | 31 * :zephyr:code-sample:`modbus-gateway` sample shows how to build a TCP to serial line 32 gateway with Zephyr OS.
|
/Zephyr-latest/boards/ezurio/mg100/ |
D | board.yml | 3 full_name: Sentrius™ MG100 Gateway
|
/Zephyr-latest/tests/net/lib/mqtt_sn_client/src/ |
D | mqtt_sn_client.c | 167 zassert_false(sys_slist_is_empty(&client->gateway), "GW not saved."); in mqtt_sn_connect_no_will() 194 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 200 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 201 zassert_equal(sys_slist_len(&mqtt_client->gateway), 1, "Too many Gateways stored."); in ZTEST() 221 zassert_true(sys_slist_is_empty(&mqtt_client->gateway), "GW not cleared on timeout"); in ZTEST() 239 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 272 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 306 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 324 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 361 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST()
|
/Zephyr-latest/include/zephyr/net/ |
D | mqtt_sn.h | 64 * and the gateway/server. 115 MQTT_SN_EVT_CONNECTED, /**< Connected to a gateway */ 243 * @param[in] gwaddr Pre-initialized gateway address 298 sys_slist_t gateway; member 350 * @brief Manually add a Gateway, bypasing the normal search process. 352 * This function manually creates a gateway that is stored internal to the library. 355 * @param gw_id Single byte Gateway Identifier 429 * If the topic is not yet registered with the gateway, the library takes care of it.
|
/Zephyr-latest/tests/boards/espressif/ethernet/src/ |
D | main.c | 98 zassert_not_equal(gw_addr_4.s_addr, 0, "Gateway address is not set"); in ZTEST() 113 LOG_INF("Pinging the gateway..."); in ZTEST() 119 "Gateway ping (ICMP) timed out"); in ZTEST()
|
/Zephyr-latest/drivers/dai/intel/alh/ |
D | alh.h | 58 /**< Gateway data requested in low power memory. */ 61 /**< Gateway data requested in register file memory. */
|
/Zephyr-latest/samples/subsys/mgmt/hawkbit/ |
D | sample.yaml | 26 sample.net.hawkbit.ddi.gateway:
|
/Zephyr-latest/samples/bluetooth/tmap_central/ |
D | README.rst | 5 Implement the TMAP Call Gateway (CG) and Unicast Media Sender (UMS) roles.
|