Skip to content

Commit 0f4a910

Browse files
author
smellai
committed
fixed PROGMEM page
1 parent 3eb399e commit 0f4a910

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Language/Variables/Utilities/PROGMEM.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Store data in flash (program) memory instead of SRAM. There's a description of t
2222

2323
The `PROGMEM` keyword is a variable modifier, it should be used only with the datatypes defined in pgmspace.h. It tells the compiler "put this information into flash memory", instead of into SRAM, where it would normally go.
2424

25-
PROGMEM is part of the http://www.nongnu.org/avr-libc/user-manual/group__avr__pgmspace.html[pgmspace.h] library. It is included automatically in modern versions of the IDE, however if you are using an IDE version below 1.0 (2011), you'll first need to include the library at the top your sketch, like this:
25+
PROGMEM is part of the http://www.nongnu.org/avr-libc/user-manual/group\__avr__pgmspace.html[pgmspace.h] library. It is included automatically in modern versions of the IDE, however if you are using an IDE version below 1.0 (2011), you'll first need to include the library at the top your sketch, like this:
2626

2727
`#include <avr/pgmspace.h>`
2828
[%hardbreaks]

0 commit comments

Comments
 (0)