Browse Source

Cleaned up non-standard characters

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

+ 2
- 2
Marlin/thermistortables.h View File

248
    {970*OVERSAMPLENR, 25},
248
    {970*OVERSAMPLENR, 25},
249
    {978*OVERSAMPLENR, 22},
249
    {978*OVERSAMPLENR, 22},
250
    {1008*OVERSAMPLENR, 3},
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
 #endif
253
 #endif
254
 
254
 
309
    {994*OVERSAMPLENR, 15},
309
    {994*OVERSAMPLENR, 15},
310
    {1001*OVERSAMPLENR, 10},
310
    {1001*OVERSAMPLENR, 10},
311
    {1005*OVERSAMPLENR, 5},
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
 #endif
314
 #endif
315
 #if (THERMISTORHEATER_0 == 8) || (THERMISTORHEATER_1 == 8) || (THERMISTORHEATER_2 == 8) || (THERMISTORBED == 8)
315
 #if (THERMISTORHEATER_0 == 8) || (THERMISTORHEATER_1 == 8) || (THERMISTORHEATER_2 == 8) || (THERMISTORBED == 8)

Loading…
Cancel
Save