Unique Id stm32H7
Hello Everyone,
I am working on stm32h723zg, and I want to obtaind the serial of the micro controller for the unique id:
uint32_t unique_id[3];
void read_serial_number(void) {
// Unique ID registers
unique_id[0] = HAL_GetUIDw0(); // Unique ID Register 1
unique_id[1] = HAL_GetUIDw1(); // Unique ID Register 2
unique_id[2] = HAL_GetUIDw2();
}
How can I combine this id to obtain the proper serial number
