Skip to content

Commit ca5e30a

Browse files
committed
Fixed Robot_Control example R06_Wheel_Calibration
Fixes #2217
1 parent b4f2af4 commit ca5e30a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

build/shared/revisions.txt

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ ARDUINO 1.5.9
99
[core]
1010
* sam: added -MMD flag to let gcc produce dependency files (full rebuild on Arduino Due is now triggered only if needed)
1111

12+
[libraries]
13+
* Fixed PROGMEM error in Robot_Control/examples/explore/R06_Wheel_Calibration
14+
1215
The following changes are included also in the Arduino IDE 1.0.7:
1316

1417
[libraries]

libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/scripts_library.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const char script8[] PROGMEM="5. Repeat 4 until going straight\n";
1212

1313
char buffer[42];//must be longer than text
1414

15-
PROGMEM const char *scripts[]={
15+
const char * const scripts[] PROGMEM = {
1616
script1,
1717
script2,
1818
script3,

0 commit comments

Comments
 (0)