2013-05-29 03:03 AM
Good Morning,
from STM32L152RB (the STM32L-Discovery Ev. Board MCU) datasheet I read that this microcontroller has a 96-bit unique ID, but it's not mentioned at which memory address can be read. Which is the correct way to read such Unique ID? Thank you in advance, Kind Regards. Ing. Andrea Sighinolfi #unique-id-stm32l-stm32l12196-bit2013-05-29 04:09 AM
The reference manual say the 32-bit words are at 0x1FF80050, 0x1FF80054, and 0x1FF80064
printf(''%08X\n'',*((uint32_t *)0x1FF80050) );