Skip to content

Commit 1625ca1

Browse files
authored
Merge pull request #892 from ka84/patch-1
Update PROGMEM.adoc
2 parents fdaffa8 + ab59ddf commit 1625ca1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Language/Variables/Utilities/PROGMEM.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "Utilities" ]
1717

1818
[float]
1919
=== Description
20-
Store data in flash (program) memory instead of SRAM. There's a description of the various http://www.arduino.cc/playground/Learning/Memory[types of memory] available on an Arduino board.
20+
Store data in flash (program) memory instead of SRAM. There's a description of the various https://www.arduino.cc/en/Tutorial/Foundations/Memory[types of memory] available on an Arduino board.
2121

2222
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.
2323

@@ -205,7 +205,7 @@ Serial.print(F("Write something on the Serial Monitor that is stored in FLASH"))
205205
=== See also
206206

207207
[role="example"]
208-
* #EXAMPLE# https://www.arduino.cc/playground/Learning/Memory[Types of memory available on an Arduino board^]
208+
* #EXAMPLE# https://www.arduino.cc/en/Tutorial/Foundations/Memory[Types of memory available on an Arduino board^]
209209

210210
[role="definition"]
211211
* #DEFINITION# link:../../data-types/array[array]

0 commit comments

Comments
 (0)