In order to bring consistency in-tree, migrate all subsystems code to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to zephyrproject-rtos#45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
19 lines
398 B
C
19 lines
398 B
C
/*
|
|
* Copyright (c) 2020 Linumiz
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __HAWKBIT_DEVICE_H__
|
|
#define __HAWKBIT_DEVICE_H__
|
|
|
|
#include <zephyr/zephyr.h>
|
|
#include <zephyr/drivers/hwinfo.h>
|
|
|
|
#define DEVICE_ID_BIN_MAX_SIZE 16
|
|
#define DEVICE_ID_HEX_MAX_SIZE ((DEVICE_ID_BIN_MAX_SIZE * 2) + 1)
|
|
|
|
bool hawkbit_get_device_identity(char *id, int id_max_len);
|
|
|
|
#endif /* __HAWKBIT_DEVICE_H__ */
|