Home
last modified time | relevance | path

Searched refs:gateway (Results 1 – 25 of 34) sorted by relevance

12

/Zephyr-latest/samples/subsys/modbus/tcp_gateway/
DREADME.rst1 .. 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
36 The following commands build and flash gateway sample.
45 to the gateway.
/Zephyr-latest/samples/net/mqtt_sn_publisher/
DREADME.rst5 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
48 You will also need to start an MQTT-SN gateway. A convenience Docker Compose specification file
68 …teway: https://www.eclipse.org/paho/index.php?page=components/mqtt-sn-transparent-gateway/index.php
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…
124 This is the output from the MQTT-SN gateway:
DKconfig12 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"
/Zephyr-latest/tests/net/lib/mqtt_sn_client/src/
Dmqtt_sn_client.c167 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/doc/connectivity/networking/api/
Dmqtt_sn.rst25 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
107 connect to the gateway. Call the :c:func:`mqtt_sn_connect` function, which will send a
129 In the above code snippet, the gateway is connected to before publishing messages.
Dnet_config.rst61 ":kconfig:option:`CONFIG_NET_CONFIG_MY_IPV4_GW`","Static IPv4 gateway address assigned to the
/Zephyr-latest/boards/gardena/sgrm/doc/
Dindex.rst6 This is a SoM that is used as a radio module by the GARDENA smart gateway (manual_, `FOSS parts`_).
9 .. _FOSS parts: https://github.com/husqvarnagroup/smart-garden-gateway-public
91 On the gateway:
101 The easiest way is to do this via SSH from the Linux gateway as well:
/Zephyr-latest/doc/services/modbus/
Dindex.rst31 * :zephyr:code-sample:`modbus-gateway` sample shows how to build a TCP to serial line
32 gateway with Zephyr OS.
/Zephyr-latest/samples/net/mqtt_sn_publisher/compose/
Dgateway.conf78 DtlsCertsKey=/etc/ssl/certs/gateway.pem
/Zephyr-latest/doc/connectivity/networking/
Dqemu_user_setup.rst20 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
Darmfvp_user_networking_setup.rst23 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,
Deth_bridge_native_sim_setup.rst129 IPv4 gateway : 0.0.0.0
157 IPv4 gateway : 0.0.0.0
Dqemu_setup.rst159 a gateway should be set via DHCP or configured manually.
163 of the gateway. For apps not using the "Settings" facility, set up the
164 gateway by calling the :c:func:`net_if_ipv4_set_gw` at runtime.
/Zephyr-latest/tests/boards/espressif/ethernet/
DKconfig19 Timeout duration for pinging the network gateway.
/Zephyr-latest/tests/boards/espressif/wifi/
DKconfig52 Number of gateway ping attempts.
80 Timeout duration for pinging the network gateway.
/Zephyr-latest/subsys/net/lib/mqtt_sn/
Dmqtt_sn.c131 gw = SYS_SLIST_PEEK_HEAD_CONTAINER(&client->gateway, gw, next); in encode_and_send()
320 sys_slist_find_and_remove(&client->gateway, &gw->next); in mqtt_sn_gw_destroy()
329 while ((next = sys_slist_get(&client->gateway)) != NULL) { in mqtt_sn_gw_destroy_all()
331 sys_slist_find_and_remove(&client->gateway, next); in mqtt_sn_gw_destroy_all()
368 SYS_SLIST_FOR_EACH_CONTAINER(&client->gateway, gw, next) { in mqtt_sn_gw_find_id()
543 gw = SYS_SLIST_PEEK_HEAD_CONTAINER(&client->gateway, gw, next); in mqtt_sn_do_gwinfo()
725 SYS_SLIST_PEEK_HEAD_CONTAINER(&client->gateway, gw, next); in process_ping()
783 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&client->gateway, gw, gw_next, next) { in process_advertise()
787 if (client->gateway.head == &gw->next) { in process_advertise()
911 sys_slist_append(&client->gateway, &gw->next); in mqtt_sn_add_gw()
[all …]
/Zephyr-latest/boards/ezurio/mg100/doc/
Dindex.rst5 The Sentrius™ MG100 Gateway offers a compact, out of box Bluetooth to low power cellular gateway
8 Based on the Pinnacle 100 socket modem, the Sentrius™ MG100 gateway captures data from any
133 Motion sensor to detect if the gateway moves.
231 .. _MG100 website: https://www.ezurio.com/iot-devices/iot-gateways/sentrius-mg100-gateway-lte-mnb-i…
/Zephyr-latest/doc/connectivity/lora_lorawan/
Dindex.rst21 to the internet through a gateway.
/Zephyr-latest/drivers/wifi/esp_at/
Desp.h133 #define ESP_CMD_SET_IP(ip, gateway, mask) "AT+"_CIPSTA"=\"" \ argument
134 ip "\",\"" gateway "\",\"" mask "\""
/Zephyr-latest/include/zephyr/net/
Dmqtt_sn.h298 sys_slist_t gateway; member
/Zephyr-latest/subsys/mgmt/hawkbit/
DKconfig89 bool "Use gateway security token authentication"
91 Use gateway security token authentication for the hawkBit DDI API.
/Zephyr-latest/subsys/net/lib/shell/
Dipv4.c257 SHELL_CMD(gateway, NULL,
/Zephyr-latest/subsys/net/lib/config/
DKconfig112 string "My IPv4 gateway"
114 Static gateway to use if not overridden by DHCP. Use empty value to
/Zephyr-latest/samples/subsys/mgmt/updatehub/
DREADME.rst42 gateway or some sort of border router. It is out of scope provide such
208 at this moment provide support since it is experimental. The gateway was
236 gateway was tested using two boards with OpenThread 1.1.1 on NCP mode.
/Zephyr-latest/boards/renesas/rcar_spider_s4/doc/
Drcar_spider_r52.rst191 …ts/automotive-system-chips-socs/r-car-s4-automotive-system-chip-soc-car-servercommunication-gateway

12