1 /* 2 * Copyright 2022 NXP 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef _FSL_SILICON_ID_SOC_H_ 8 #define _FSL_SILICON_ID_SOC_H_ 9 10 #include "fsl_common.h" 11 12 #if defined(__cplusplus) 13 extern "C" { 14 #endif 15 16 status_t SILICONID_ReadUniqueID(uint8_t *siliconId, uint32_t *idLen); 17 18 #if defined(__cplusplus) 19 } 20 #endif 21 22 #endif /* _FSL_SILICON_ID_SOC_H_ */ 23