diff mbox

MSP430: persistent data is FRAM, not flash

Message ID 56227431.60102@ladisch.de
State New
Headers show

Commit Message

Clemens Ladisch Oct. 17, 2015, 4:15 p.m. UTC
2015-10-17  Clemens Ladisch  <clemens@ladisch.de>

	* doc/extend.texi (MSP430 Variable Attributes): Correct memory
	type for persistent data.
---
 gcc/doc/extend.texi |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -5889,7 +5889,7 @@  Any variable with the @code{persistent}
 initialised by the C runtime startup code.  Instead its value will be
 set once, when the application is loaded, and then never initialised
 again, even if the processor is reset or the program restarts.
-Persistent data is intended to be placed into FLASH RAM, where its
+Persistent data is intended to be placed into FRAM, where its
 value will be retained across resets.  The linker script being used to
 create the application should ensure that persistent data is correctly
 placed.