LPC11U67 get device ID

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

LPC11U67 get device ID

ソリューションへジャンプ
1,971件の閲覧回数
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,950件の閲覧回数
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,951件の閲覧回数
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,941件の閲覧回数
Pinout
Contributor I

Thank you, Alice! 

I received an ID successfully.

0 件の賞賛
返信