We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b15edb commit 9548e8dCopy full SHA for 9548e8d
libraries/rp2350/examples/PlatformioPSRAMDemo/main.cpp
@@ -19,7 +19,7 @@ void setup()
19
// Reserve space in the PSRAM vector
20
psramVector.resize(100);
21
22
- // Write some values
+ // Write some values
23
for (size_t i = 0; i < psramVector.size(); i++)
24
{
25
psramVector[i] = i * 2; // e.g. fill with even numbers
@@ -29,7 +29,7 @@ void setup()
29
30
delay(1000);
31
32
- // Read them back
+ // Read them back
33
Serial.println("Reading back the first 10 elements:");
34
for (size_t i = 0; i < 10 && i < psramVector.size(); i++)
35
0 commit comments