diff options
Diffstat (limited to 'fw/src/network.c')
-rw-r--r-- | fw/src/network.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/fw/src/network.c b/fw/src/network.c index 9ea4a40..6e6eb17 100644 --- a/fw/src/network.c +++ b/fw/src/network.c @@ -10,6 +10,7 @@ #include <zephyr/init.h> #include <zephyr/logging/log.h> +#include <zephyr/net/hostname.h> #include <zephyr/net/net_if.h> #include <zephyr/net/net_linkaddr.h> #include <zephyr/net/net_mgmt.h> @@ -21,6 +22,9 @@ LOG_MODULE_REGISTER(network); +#define HOSTNAME "iot-contact" + + /* will be read from an EEPROM chip in the future */ static const uint8_t mac_address[NET_ETH_ADDR_LEN] = {0x00, 0x00, 0x5e, 0x00, 0x53, 0x01}; @@ -54,3 +58,18 @@ int init_mac_address(void) return 0; } SYS_INIT(init_mac_address, APPLICATION, 0); + +int init_hostname(void) +{ + LOG_DBG("Setting hostname"); + + int ret = net_hostname_set(HOSTNAME, sizeof(HOSTNAME)); + if (ret < 0) { + LOG_ERR("Failed to set hostname to '%s' (%d)", HOSTNAME, ret); + return ret; + } + + LOG_INF("Successfully set hostname to '%s'", HOSTNAME); + return 0; +} +SYS_INIT(init_hostname, APPLICATION, 1); |