Browse Source

Cleaned up non-standard characters

Denis B 11 years ago
parent
commit
49b2ddc8c1
2 changed files with 3 additions and 3 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp
  2. 2
    2
      Marlin/thermistortables.h

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -124,7 +124,7 @@
124 124
 // M500 - stores paramters in EEPROM
125 125
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).  
126 126
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
127
-// M503 - print the current settings (from memory not from eeprom)
127
+// M503 - print the current settings (from memory not from eeprom)
128 128
 // M540 - Use S[0|1] to enable or disable the stop SD card print on endstop hit (requires ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
129 129
 // M600 - Pause for filament change X[pos] Y[pos] Z[relative lift] E[initial retract] L[later retract distance for removal]
130 130
 // M907 - Set digital trimpot motor current using axis codes.

+ 2
- 2
Marlin/thermistortables.h View File

@@ -248,7 +248,7 @@ const short temptable_6[][2] PROGMEM = {
248 248
    {970*OVERSAMPLENR, 25},
249 249
    {978*OVERSAMPLENR, 22},
250 250
    {1008*OVERSAMPLENR, 3},
251
-   {1023*OVERSAMPLENR, 0}  //to allow internal 0°C
251
+   {1023*OVERSAMPLENR, 0}  //to allow internal 0 degrees C
252 252
 };
253 253
 #endif
254 254
 
@@ -309,7 +309,7 @@ const short temptable_7[][2] PROGMEM = {
309 309
    {994*OVERSAMPLENR, 15},
310 310
    {1001*OVERSAMPLENR, 10},
311 311
    {1005*OVERSAMPLENR, 5},
312
-   {1023*OVERSAMPLENR, 0}  //to allow internal 0°C
312
+   {1023*OVERSAMPLENR, 0}  //to allow internal 0 degrees C
313 313
 };
314 314
 #endif
315 315
 #if (THERMISTORHEATER_0 == 8) || (THERMISTORHEATER_1 == 8) || (THERMISTORHEATER_2 == 8) || (THERMISTORBED == 8)

Loading…
Cancel
Save