Skip to content

Commit 1fc0637

Browse files
committed
Multispindle: Elide some extraneous debugging printf
Signed-off-by: andy pugh <andy@bodgesoc.org>
1 parent b948dba commit 1fc0637

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/emc/task/emccanon.cc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1807,7 +1807,6 @@ void START_SPINDLE_CLOCKWISE(int s, int wait_for_atspeed)
18071807
}
18081808
emc_spindle_on_msg.wait_for_spindle_at_speed = wait_for_atspeed;
18091809
interp_list.append(emc_spindle_on_msg);
1810-
printf("emcannon START_SPINDLE_CW_spindle %d speed %f, direction %i, .speed %f\n", emc_spindle_on_msg.spindle, emc_spindle_on_msg.speed, emcStatus->motion.spindle[s].direction, emcStatus->motion.spindle[s].speed);
18111810
}
18121811

18131812
void START_SPINDLE_COUNTERCLOCKWISE(int s, int wait_for_atspeed)
@@ -1832,7 +1831,6 @@ void START_SPINDLE_COUNTERCLOCKWISE(int s, int wait_for_atspeed)
18321831
}
18331832
emc_spindle_on_msg.wait_for_spindle_at_speed = wait_for_atspeed;
18341833
interp_list.append(emc_spindle_on_msg);
1835-
printf("emcannon START_SPINDLE_ACW_spindle %d speed %f, direction %i .speed %f\n", emc_spindle_on_msg.spindle, emc_spindle_on_msg.speed, emcStatus->motion.spindle[s].direction, emcStatus->motion.spindle[s].speed);
18361834
}
18371835

18381836
void SET_SPINDLE_SPEED(int s, double r)
@@ -1859,7 +1857,6 @@ void SET_SPINDLE_SPEED(int s, double r)
18591857
// canon.css_numerator = 0; FIXME: Do we need this?
18601858
}
18611859
interp_list.append(emc_spindle_speed_msg);
1862-
printf("emcannon SET_SPINDLE_SPEED_spindle %d speed %f r = %f .speed = %f\n", emc_spindle_speed_msg.spindle, emc_spindle_speed_msg.speed, r, emcStatus->motion.spindle[s].speed );
18631860
}
18641861

18651862
void STOP_SPINDLE_TURNING(int s)

0 commit comments

Comments
 (0)