Browse Source

Fix comment on M83, add comment to prepare_move

Scott Lahteine 10 years ago
parent
commit
9682ed455e
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      Marlin/Marlin_main.cpp

+ 4
- 1
Marlin/Marlin_main.cpp View File

3805
 inline void gcode_M82() { axis_relative_modes[E_AXIS] = false; }
3805
 inline void gcode_M82() { axis_relative_modes[E_AXIS] = false; }
3806
 
3806
 
3807
 /**
3807
 /**
3808
- * M82: Set E codes relative while in Absolute Coordinates (G90) mode
3808
+ * M83: Set E codes relative while in Absolute Coordinates (G90) mode
3809
  */
3809
  */
3810
 inline void gcode_M83() { axis_relative_modes[E_AXIS] = true; }
3810
 inline void gcode_M83() { axis_relative_modes[E_AXIS] = true; }
3811
 
3811
 
6153
 
6153
 
6154
 /**
6154
 /**
6155
  * Prepare a single move and get ready for the next one
6155
  * Prepare a single move and get ready for the next one
6156
+ *
6157
+ * (This may call plan_buffer_line several times to put
6158
+ *  smaller moves into the planner for DELTA or SCARA.)
6156
  */
6159
  */
6157
 void prepare_move() {
6160
 void prepare_move() {
6158
   clamp_to_software_endstops(destination);
6161
   clamp_to_software_endstops(destination);

Loading…
Cancel
Save