We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4f2af4 commit ca5e30aCopy full SHA for ca5e30a
build/shared/revisions.txt
@@ -9,6 +9,9 @@ ARDUINO 1.5.9
9
[core]
10
* sam: added -MMD flag to let gcc produce dependency files (full rebuild on Arduino Due is now triggered only if needed)
11
12
+[libraries]
13
+* Fixed PROGMEM error in Robot_Control/examples/explore/R06_Wheel_Calibration
14
+
15
The following changes are included also in the Arduino IDE 1.0.7:
16
17
[libraries]
libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/scripts_library.h
@@ -12,7 +12,7 @@ const char script8[] PROGMEM="5. Repeat 4 until going straight\n";
char buffer[42];//must be longer than text
-PROGMEM const char *scripts[]={
+const char * const scripts[] PROGMEM = {
script1,
script2,
18
script3,
0 commit comments