From ca5e30a2552818e71f3a4723b5c117e941f317f0 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 5 Nov 2014 15:18:50 +0100 Subject: [PATCH] Fixed Robot_Control example R06_Wheel_Calibration Fixes #2217 --- build/shared/revisions.txt | 3 +++ .../examples/explore/R06_Wheel_Calibration/scripts_library.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 5194f19cf..ea538374f 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -9,6 +9,9 @@ ARDUINO 1.5.9 [core] * sam: added -MMD flag to let gcc produce dependency files (full rebuild on Arduino Due is now triggered only if needed) +[libraries] +* Fixed PROGMEM error in Robot_Control/examples/explore/R06_Wheel_Calibration + The following changes are included also in the Arduino IDE 1.0.7: [libraries] diff --git a/libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/scripts_library.h b/libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/scripts_library.h index f1109d20d..a6c12e758 100644 --- a/libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/scripts_library.h +++ b/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, script3,