This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Mike:
If the unique ID register does exist, it should have a reference in
http://www.ti.com/tool/msp430usbdevpack
(I would hope...)
Todd,
Thanks for the guidance, but I have done a quick search through these and do not see what I am looking for. Hopefully someone can be a bit more specific.
MikeH said:Does anyone know if the Die Record bytes in the Device Descriptor table are unique on a per-die basis? In other words, do "Lot/Wafer ID + Die X position + Die Y position" uniquely identify a die?
Yes, they do uniquely identify a die.
Thanks Brandon.
FYI, Here's a way to create a GUID (globally unique identifier) for use in a network of similar products. It uses the Peripheral Driver Library (Driverlib) function TLV_getInfo.
#include "F5xx_F6xx_Core_Lib/HAL_TLV.h"
BYTE guid[8];
struct s_TLV_Die_Record * pDIEREC;
unsigned char bDieRecord_bytes;
TLV_getInfo(TLV_DIERECORD, 0, &bDieRecord_bytes, (unsigned int **)&pDIEREC);
for(i=0; i<8; i++) guid[i] = pDIEREC->die_record[i+2];
Does such a feature exist in the C2800 family? Specifically the F2802x and F2803x
regards,
Jason
jason wiseman said:Does such a feature exist in the C2800 family?
**Attention** This is a public forum