LPC11U67 get device ID

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

LPC11U67 get device ID

跳至解决方案
1,121 次查看
Pinout
Contributor I

Hello. How can I check LPC11U67 Device address or check its correctness? According to syscon_11u6x.h file, I'm able to get Hex value by returning DEVICEID and it is 0x002302b. But this value I get is wrong comparing it with LPC11U6x documentation. It should be 0x0000 BC88 or at least similar... Maybe you can point me in the right direction so I can get DeviceID which would match the datasheet?

0 项奖励
1 解答
1,100 次查看
Alice_Yang
NXP TechSupport
NXP TechSupport

Hello Pinout,

How did you read the Device ID, please use IAP/ISP Read part Identification number.

IAP command:

Alice_Yang_0-1638930823239.png

There is demo under LPCopen, falshiap_flashsig, you can directly refer to it. 


/* Read Part Identification Number*/
command[0] = IAP_REPID_CMD; /* Read ID command code */
iap_entry(command, result);
DEBUGOUT("Part ID is: %x\r\n", result[1]);

 

If want to use ISP command, enter ISP mode, and using Flash Magic to read.

 

BR

Alice

在原帖中查看解决方案

2 回复数
1,101 次查看
Alice_Yang
NXP TechSupport
NXP TechSupport

Hello Pinout,

How did you read the Device ID, please use IAP/ISP Read part Identification number.

IAP command:

Alice_Yang_0-1638930823239.png

There is demo under LPCopen, falshiap_flashsig, you can directly refer to it. 


/* Read Part Identification Number*/
command[0] = IAP_REPID_CMD; /* Read ID command code */
iap_entry(command, result);
DEBUGOUT("Part ID is: %x\r\n", result[1]);

 

If want to use ISP command, enter ISP mode, and using Flash Magic to read.

 

BR

Alice

1,091 次查看
Pinout
Contributor I

Thank you, Alice! 

I received an ID successfully.

0 项奖励