Skip to content
Snippets Groups Projects
Commit b7c8e5bb authored by daid's avatar daid
Browse files

Merge pull request #308 from MStohn/Marlin_v1

FIX: Allow marlin internal 0°C represenation
parents 9bebe9b6 2b7b1e52
Branches
Tags
No related merge requests found
...@@ -247,7 +247,8 @@ const short temptable_6[][2] PROGMEM = { ...@@ -247,7 +247,8 @@ const short temptable_6[][2] PROGMEM = {
{954*OVERSAMPLENR, 30}, {954*OVERSAMPLENR, 30},
{970*OVERSAMPLENR, 25}, {970*OVERSAMPLENR, 25},
{978*OVERSAMPLENR, 22}, {978*OVERSAMPLENR, 22},
{1008*OVERSAMPLENR, 3} {1008*OVERSAMPLENR, 3},
{1023*OVERSAMPLENR, 0} //to allow internal 0C
}; };
#endif #endif
...@@ -307,7 +308,8 @@ const short temptable_7[][2] PROGMEM = { ...@@ -307,7 +308,8 @@ const short temptable_7[][2] PROGMEM = {
{989*OVERSAMPLENR, 20}, {989*OVERSAMPLENR, 20},
{994*OVERSAMPLENR, 15}, {994*OVERSAMPLENR, 15},
{1001*OVERSAMPLENR, 10}, {1001*OVERSAMPLENR, 10},
{1005*OVERSAMPLENR, 5} {1005*OVERSAMPLENR, 5},
{1023*OVERSAMPLENR, 0} //to allow internal 0C
}; };
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment