1 |
ron |
1 |
/**
|
|
|
2 |
* Marlin 3D Printer Firmware
|
|
|
3 |
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
4 |
*
|
|
|
5 |
* Based on Sprinter and grbl.
|
|
|
6 |
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
7 |
*
|
|
|
8 |
* This program is free software: you can redistribute it and/or modify
|
|
|
9 |
* it under the terms of the GNU General Public License as published by
|
|
|
10 |
* the Free Software Foundation, either version 3 of the License, or
|
|
|
11 |
* (at your option) any later version.
|
|
|
12 |
*
|
|
|
13 |
* This program is distributed in the hope that it will be useful,
|
|
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
16 |
* GNU General Public License for more details.
|
|
|
17 |
*
|
|
|
18 |
* You should have received a copy of the GNU General Public License
|
|
|
19 |
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
20 |
*
|
|
|
21 |
*/
|
|
|
22 |
|
|
|
23 |
// R25 = 100 kOhm, beta25 = 4120 K, 4.7 kOhm pull-up, mendel-parts
|
|
|
24 |
const short temptable_3[][2] PROGMEM = {
|
|
|
25 |
{ OV( 1), 864 },
|
|
|
26 |
{ OV( 21), 300 },
|
|
|
27 |
{ OV( 25), 290 },
|
|
|
28 |
{ OV( 29), 280 },
|
|
|
29 |
{ OV( 33), 270 },
|
|
|
30 |
{ OV( 39), 260 },
|
|
|
31 |
{ OV( 46), 250 },
|
|
|
32 |
{ OV( 54), 240 },
|
|
|
33 |
{ OV( 64), 230 },
|
|
|
34 |
{ OV( 75), 220 },
|
|
|
35 |
{ OV( 90), 210 },
|
|
|
36 |
{ OV( 107), 200 },
|
|
|
37 |
{ OV( 128), 190 },
|
|
|
38 |
{ OV( 154), 180 },
|
|
|
39 |
{ OV( 184), 170 },
|
|
|
40 |
{ OV( 221), 160 },
|
|
|
41 |
{ OV( 265), 150 },
|
|
|
42 |
{ OV( 316), 140 },
|
|
|
43 |
{ OV( 375), 130 },
|
|
|
44 |
{ OV( 441), 120 },
|
|
|
45 |
{ OV( 513), 110 },
|
|
|
46 |
{ OV( 588), 100 },
|
|
|
47 |
{ OV( 734), 80 },
|
|
|
48 |
{ OV( 856), 60 },
|
|
|
49 |
{ OV( 938), 40 },
|
|
|
50 |
{ OV( 986), 20 },
|
|
|
51 |
{ OV(1008), 0 },
|
|
|
52 |
{ OV(1018), -20 }
|
|
|
53 |
};
|