|
@@ -246,7 +246,7 @@ static int cmd_queue_index_w = 0;
|
246
|
246
|
static int commands_in_queue = 0;
|
247
|
247
|
static char command_queue[BUFSIZE][MAX_CMD_SIZE];
|
248
|
248
|
|
249
|
|
-float homing_feedrate[] = HOMING_FEEDRATE;
|
|
249
|
+const float homing_feedrate[] = HOMING_FEEDRATE;
|
250
|
250
|
bool axis_relative_modes[] = AXIS_RELATIVE_MODES;
|
251
|
251
|
int feedrate_multiplier = 100; //100->1 200->2
|
252
|
252
|
int saved_feedrate_multiplier;
|
|
@@ -310,8 +310,8 @@ bool target_direction;
|
310
|
310
|
#endif
|
311
|
311
|
|
312
|
312
|
#ifdef SERVO_ENDSTOPS
|
313
|
|
- int servo_endstops[] = SERVO_ENDSTOPS;
|
314
|
|
- int servo_endstop_angles[] = SERVO_ENDSTOP_ANGLES;
|
|
313
|
+ const int servo_endstops[] = SERVO_ENDSTOPS;
|
|
314
|
+ const int servo_endstop_angles[] = SERVO_ENDSTOP_ANGLES;
|
315
|
315
|
#endif
|
316
|
316
|
|
317
|
317
|
#ifdef BARICUDA
|