Read MCU's Unique
Read MCU's Unique
Is there anyway to read Unique Id of any STM32 MCU through this core ?
Re: Read MCU's Unique
You can use HAL directly:
or one of few available libraries, eg. https://github.com/ricaun/ArduinoUniqueID
Code: Select all
uint32_t uid[3];
uid[0] = HAL_GetUIDw0();
uid[1] = HAL_GetUIDw1();
uid[2] = HAL_GetUIDw2();