1 /* 2 * Copyright (c) 2018-2023 O.S.Systems 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __UPDATEHUB_FIRMWARE_H__ 8 #define __UPDATEHUB_FIRMWARE_H__ 9 10 /* 255.255.65535\0 */ 11 #define FIRMWARE_IMG_VER_STRLEN_MAX 14 12 13 bool updatehub_get_firmware_version(const uint32_t partition_id, 14 char *version, int version_len); 15 16 #endif /* __UPDATEHUB_FIRMWARE_H__ */ 17