mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 09:41:56 +00:00
UpdateHub is an enterprise-grade solution which makes simple to remotely update all your embedded devices in the field. It handles all aspects related to sending Firmware Over-the-Air(FOTA) updates with maximum security and efficiency, while you focus in adding value to your product. Signed-off-by: Christian Tavares <christian.tavares@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
18 lines
318 B
C
18 lines
318 B
C
/*
|
|
* Copyright (c) 2018 O.S.Systems
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __UPDATEHUB_DEVICE_H__
|
|
#define __UPDATEHUB_DEVICE_H__
|
|
|
|
#include <zephyr.h>
|
|
#include <hwinfo.h>
|
|
|
|
#define DEVICE_ID_MAX_SIZE 65
|
|
|
|
bool updatehub_get_device_identity(char *id, int id_max_len);
|
|
|
|
#endif /* __UPDATEHUB_DEVICE_H__ */
|