2020-11-16 10:16:34 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2020-12-02 10:47:13 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-03-24 09:35:33 +00:00
|
|
|
/** Get platform UID size in bytes */
|
2020-11-16 10:16:34 +00:00
|
|
|
size_t api_hal_uid_size();
|
|
|
|
|
2021-03-24 09:35:33 +00:00
|
|
|
/** Get const pointer to UID */
|
2020-11-16 10:16:34 +00:00
|
|
|
const uint8_t* api_hal_uid();
|
2020-12-02 10:47:13 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|