Home
last modified time | relevance | path

Searched refs:DEVICE_ID_HEX_MAX_SIZE (Results 1 – 8 of 8) sorted by relevance

/Zephyr-latest/subsys/mgmt/hawkbit/
Dhawkbit_device.h15 #define DEVICE_ID_HEX_MAX_SIZE (CONFIG_HAWKBIT_DEVICE_ID_MAX_LENGTH + 1) macro
18 #define DEVICE_ID_HEX_MAX_SIZE ((DEVICE_ID_BIN_MAX_SIZE * 2) + 1) macro
Dshell.c72 char device_id[DEVICE_ID_HEX_MAX_SIZE] = {0}, in cmd_info()
76 hawkbit_get_device_identity(device_id, DEVICE_ID_HEX_MAX_SIZE); in cmd_info()
Dhawkbit.c147 char device_id[DEVICE_ID_HEX_MAX_SIZE];
1156 if (!hawkbit_get_device_identity(s->device_id, DEVICE_ID_HEX_MAX_SIZE)) { in s_start()
/Zephyr-latest/include/zephyr/shell/
Dshell_mqtt.h27 #define DEVICE_ID_HEX_MAX_SIZE ((DEVICE_ID_BIN_MAX_SIZE * 2) + 1) macro
28 #define SH_MQTT_TOPIC_MAX_SIZE DEVICE_ID_HEX_MAX_SIZE + 3
42 char device_id[DEVICE_ID_HEX_MAX_SIZE];
/Zephyr-latest/subsys/mgmt/updatehub/
Dupdatehub_device.h11 #define DEVICE_ID_HEX_MAX_SIZE ((DEVICE_ID_BIN_MAX_SIZE * 2) + 1) macro
Dshell.c60 char *device_id = k_malloc(DEVICE_ID_HEX_MAX_SIZE); in cmd_info()
72 updatehub_get_device_identity(device_id, DEVICE_ID_HEX_MAX_SIZE); in cmd_info()
Dupdatehub.c603 char *device_id = k_malloc(DEVICE_ID_HEX_MAX_SIZE); in report()
611 if (!updatehub_get_device_identity(device_id, DEVICE_ID_HEX_MAX_SIZE)) { in report()
766 char *device_id = k_malloc(DEVICE_ID_HEX_MAX_SIZE); in z_impl_updatehub_probe()
791 if (!updatehub_get_device_identity(device_id, DEVICE_ID_HEX_MAX_SIZE)) { in z_impl_updatehub_probe()
/Zephyr-latest/subsys/shell/backends/
Dshell_mqtt.c653 if (!shell_mqtt_get_devid(sh_mqtt->device_id, DEVICE_ID_HEX_MAX_SIZE)) { in init()