We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6b28e6 commit d6019deCopy full SHA for d6019de
linker/nrf52840.ld
@@ -41,6 +41,9 @@ MEMORY
41
42
/** Location in UICR where mbr params page address is stored. */
43
UICR_MBR_PARAM_PAGE(r) : ORIGIN = 0x10001018, LENGTH = 0x04
44
+
45
+ /** Location in UICR of REGOUT0 (used to set voltage levels for VCC at boot) */
46
+ UICR_REGOUT0(r) : ORIGIN = 0x10001304, LENGTH = 0x04
47
}
48
49
SECTIONS
@@ -81,6 +84,12 @@ SECTIONS
81
84
KEEP(*(.uicrMbrParamsPageAddress))
82
85
} > UICR_MBR_PARAM_PAGE
83
86
87
+ /* Write REGOUT0 in UICR. */
88
+ .uicrREGOUT0 :
89
+ {
90
+ KEEP(*(.uicrREGOUT0))
91
+ } > UICR_REGOUT0
92
93
.dbl_reset(NOLOAD) :
94
{
95
0 commit comments