LPC11U67 get device ID

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

LPC11U67 get device ID

Jump to solution
1,032 Views
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 Kudos
1 Solution
1,011 Views
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

View solution in original post

2 Replies
1,012 Views
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,002 Views
Pinout
Contributor I

Thank you, Alice! 

I received an ID successfully.

0 Kudos