cancel
Showing results for 
Search instead for 
Did you mean: 

Unique ID for STM32L-Discovery MCU

bs49
Associate
Posted on May 29, 2013 at 12:03

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-bit
1 REPLY 1
Posted on May 29, 2013 at 13:09

The reference manual say the 32-bit words are at 0x1FF80050, 0x1FF80054, and 0x1FF80064

printf(''%08X\n'',*((uint32_t *)0x1FF80050) );
Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..