File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
libraries/Robot_Control/examples/explore/R06_Wheel_Calibration Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ ARDUINO 1.5.9
9
9
[core]
10
10
* sam: added -MMD flag to let gcc produce dependency files (full rebuild on Arduino Due is now triggered only if needed)
11
11
12
+ [libraries]
13
+ * Fixed PROGMEM error in Robot_Control/examples/explore/R06_Wheel_Calibration
14
+
12
15
The following changes are included also in the Arduino IDE 1.0.7:
13
16
14
17
[libraries]
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const char script8[] PROGMEM="5. Repeat 4 until going straight\n";
12
12
13
13
char buffer [42 ];//must be longer than text
14
14
15
- PROGMEM const char * scripts []= {
15
+ const char * const scripts [] PROGMEM = {
16
16
script1 ,
17
17
script2 ,
18
18
script3 ,
You can’t perform that action at this time.
0 commit comments