Quantcast
Viewing all articles
Browse latest Browse all 63778

Forum Post: MSP432 - Is the TLV descriptors for die information not available yet?

Hi there. Looking for the TLV die info for the MSP432 I could not find reference for the struct that defines the tags, but checked the function that reads them written in assembly for the driverlib. I did the following and tested on 2 different devices and got reasonable results. Can you guys or girls from TI correct me if I am wrong? typedef struct { uint32_t Die_X_Position; uint32_t Die_Y_Position; uint32_t Wafer_ID; uint32_t Lot_ID; uint32_t Reserved_5; uint32_t Reserved_6; uint32_t Reserved_7; uint32_t Test_Results; } SysCtl_Die_Record_Info; Whats the maximum possible number result for each one of the members? The idea is create a unique number for a product serial number and a unique identifier in a RS485 network.. Reading is like this: uint_fast8_t tlvLength; SysCtl_Die_Record_Info *pDieInfo; MAP_SysCtl_getTLVInfo(TLV_TAG_DIEREC, 0, &tlvLength, (uint32_t**) &pDieInfo); Did I waste my time reinventing the wheel? Do you guys have that already somewhere in the DriverLib? Thanks. Regis.

Viewing all articles
Browse latest Browse all 63778

Trending Articles