2021-02-25 04:35 AM
Hi,
I am reading value of SYSCFG_CFGR3_VREFINT_RDYF to be "1073741824". How do I interpret the value of VREFINT_RDYF from the value I am reading?
2021-02-25 05:50 AM
Read it as hex value and compare to the value in the datasheet.
gdb) p /x 1073741824
$1 = 0x40000000
2021-02-25 05:59 AM
Got it.
So the VREFINT_RDYF is SET.
Thanks your quick response.