diff options
author | kliment <kliment.yanev@gmail.com> | 2011-07-06 15:13:23 +0200 |
---|---|---|
committer | kliment <kliment.yanev@gmail.com> | 2011-07-06 15:13:23 +0200 |
commit | bdc7c47ad280c193e5ba53bc6cc8bf10ac081977 (patch) | |
tree | 1ddf3e8ac3d3469d5268345d27b8e4d0f1bb613d /Sprinter | |
parent | 9d31022620e984f95f49c3d6afc25fd1fe30296a (diff) |
Make M190 not break flow control
Diffstat (limited to 'Sprinter')
-rw-r--r-- | Sprinter/Sprinter.pde | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Sprinter/Sprinter.pde b/Sprinter/Sprinter.pde index 733aec8..f00ff11 100644 --- a/Sprinter/Sprinter.pde +++ b/Sprinter/Sprinter.pde @@ -716,9 +716,7 @@ inline void process_commands() { tt=analog2temp(current_raw); Serial.print("T:"); - Serial.println( tt ); - Serial.print("ok T:"); - Serial.print( tt ); + Serial.print( tt ); Serial.print(" B:"); Serial.println( analog2temp(current_bed_raw) ); codenum = millis(); |