在线时间956 小时
UID3168010
注册时间2016-4-18
NXP金币337
TA的每日心情 | 擦汗 2016-12-2 08:40 |
---|
签到天数: 3 天 连续签到: 1 天 [LV.2]偶尔看看I
版主
  
- 积分
- 4336
- 最后登录
- 2025-6-13
|
发表于 2022-4-24 22:00:03
|
显示全部楼层
uint32_t uniqueID[4];
status_t status;
/* Read unique identification number */
status = IAP_ReadUniqueID(uniqueID);
if (status != kStatus_IAP_Success)
{
PRINTF("\r\nRead unique identification number failed\r\n");
}
else
{
PRINTF("\r\nUnique ID:\t%X%X%X%X\r\n", uniqueID[0], uniqueID[1], uniqueID[2], uniqueID[3]);
}
PRINTF("\r\nEnd of IAP Example\r\n"); |
|