/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 36 The following commands build and flash gateway sample. 45 to the gateway.
|
/Zephyr-latest/samples/net/mqtt_sn_publisher/ |
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 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:
|
D | Kconfig | 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"
|
/Zephyr-latest/boards/gardena/sgrm/doc/ |
D | index.rst | 6 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 74 On the gateway: 84 The easiest way is to do this via SSH from the Linux gateway as well:
|
/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 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.
|
D | net_config.rst | 61 ":kconfig:option:`CONFIG_NET_CONFIG_MY_IPV4_GW`","Static IPv4 gateway address assigned to the
|
/Zephyr-latest/tests/net/lib/mqtt_sn_client/src/ |
D | mqtt_sn_client.c | 177 zassert_false(sys_slist_is_empty(&client->gateway), "GW not saved."); in mqtt_sn_connect_no_will() 204 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 210 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 211 zassert_equal(sys_slist_len(&mqtt_client->gateway), 1, "Too many Gateways stored."); in ZTEST() 231 zassert_true(sys_slist_is_empty(&mqtt_client->gateway), "GW not cleared on timeout"); in ZTEST() 247 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 278 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 310 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 326 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST() 360 zassert_false(sys_slist_is_empty(&mqtt_client->gateway), "GW not saved."); in ZTEST()
|
/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/samples/net/mqtt_sn_publisher/compose/ |
D | gateway.conf | 78 DtlsCertsKey=/etc/ssl/certs/gateway.pem
|
/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,
|
D | native_sim_setup.rst | 155 The same applies to the IPv4 address, gateway and netmask. They can be set 157 ``--ipv4-gw=<gateway>`` and ``--ipv4-nm=<netmask>``.
|
D | eth_bridge_native_sim_setup.rst | 129 IPv4 gateway : 0.0.0.0 157 IPv4 gateway : 0.0.0.0
|
D | qemu_setup.rst | 159 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/ |
D | Kconfig | 19 Timeout duration for pinging the network gateway.
|
/Zephyr-latest/tests/boards/espressif/wifi/ |
D | Kconfig | 52 Number of gateway ping attempts. 80 Timeout duration for pinging the network gateway.
|
/Zephyr-latest/subsys/net/lib/mqtt_sn/ |
D | mqtt_sn.c | 138 gw = SYS_SLIST_PEEK_HEAD_CONTAINER(&client->gateway, gw, next); in encode_and_send() 327 sys_slist_find_and_remove(&client->gateway, &gw->next); in mqtt_sn_gw_destroy() 336 while ((next = sys_slist_get(&client->gateway)) != NULL) { in mqtt_sn_gw_destroy_all() 338 sys_slist_find_and_remove(&client->gateway, next); in mqtt_sn_gw_destroy_all() 375 SYS_SLIST_FOR_EACH_CONTAINER(&client->gateway, gw, next) { in mqtt_sn_gw_find_by_id() 588 gw = SYS_SLIST_PEEK_HEAD_CONTAINER(&client->gateway, gw, next); in mqtt_sn_do_gwinfo() 856 SYS_SLIST_PEEK_HEAD_CONTAINER(&client->gateway, gw, next); in process_ping() 928 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&client->gateway, gw, gw_next, next) { in process_advertise() 932 if (client->gateway.head == &gw->next) { in process_advertise() 1061 sys_slist_append(&client->gateway, &gw->next); in mqtt_sn_add_gw() [all …]
|
/Zephyr-latest/boards/ezurio/mg100/doc/ |
D | index.rst | 5 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 93 Motion sensor to detect if the gateway moves. 191 .. _MG100 website: https://www.ezurio.com/iot-devices/iot-gateways/sentrius-mg100-gateway-lte-mnb-i…
|
/Zephyr-latest/doc/connectivity/lora_lorawan/ |
D | index.rst | 21 to the internet through a gateway.
|
/Zephyr-latest/drivers/wifi/esp_at/ |
D | esp.h | 133 #define ESP_CMD_SET_IP(ip, gateway, mask) "AT+"_CIPSTA"=\"" \ argument 134 ip "\",\"" gateway "\",\"" mask "\""
|
/Zephyr-latest/include/zephyr/net/ |
D | mqtt_sn.h | 298 sys_slist_t gateway; member
|
/Zephyr-latest/subsys/net/lib/shell/ |
D | ipv4.c | 257 SHELL_CMD(gateway, NULL,
|
/Zephyr-latest/subsys/mgmt/hawkbit/ |
D | Kconfig | 88 bool "Use gateway security token authentication" 90 Use gateway security token authentication for the hawkBit DDI API.
|
/Zephyr-latest/subsys/net/lib/config/ |
D | Kconfig | 112 string "My IPv4 gateway" 114 Static gateway to use if not overridden by DHCP. Use empty value to
|
/Zephyr-latest/samples/subsys/mgmt/updatehub/ |
D | README.rst | 42 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.
|