78 lines
2.0 KiB
C
78 lines
2.0 KiB
C
/**
|
|
* Marlin 3D Printer Firmware
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
*
|
|
* Based on Sprinter and grbl.
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
const short temptable_111[][2] PROGMEM = {
|
|
{ OV( 1), 938 },
|
|
{ OV( 24), 260 },
|
|
{ OV( 27), 256 },
|
|
{ OV( 29), 250 },
|
|
{ OV( 30), 246 },
|
|
{ OV( 31), 242 },
|
|
{ OV( 41), 231 },
|
|
{ OV( 51), 220 },
|
|
{ OV( 61), 212 },
|
|
{ OV( 71), 204 },
|
|
{ OV( 81), 198 },
|
|
{ OV( 91), 193 },
|
|
{ OV( 101), 188 },
|
|
{ OV( 111), 184 },
|
|
{ OV( 121), 180 },
|
|
{ OV( 131), 177 },
|
|
{ OV( 141), 173 },
|
|
{ OV( 151), 170 },
|
|
{ OV( 161), 167 },
|
|
{ OV( 171), 164 },
|
|
{ OV( 181), 162 },
|
|
{ OV( 191), 159 },
|
|
{ OV( 201), 156 },
|
|
{ OV( 221), 152 },
|
|
{ OV( 241), 148 },
|
|
{ OV( 261), 144 },
|
|
{ OV( 281), 141 },
|
|
{ OV( 301), 138 },
|
|
{ OV( 331), 132 },
|
|
{ OV( 361), 128 },
|
|
{ OV( 391), 125 },
|
|
{ OV( 421), 121 },
|
|
{ OV( 451), 117 },
|
|
{ OV( 491), 111 },
|
|
{ OV( 531), 106 },
|
|
{ OV( 571), 101 },
|
|
{ OV( 611), 96 },
|
|
{ OV( 641), 92 },
|
|
{ OV( 681), 87 },
|
|
{ OV( 711), 83 },
|
|
{ OV( 751), 78 },
|
|
{ OV( 791), 72 },
|
|
{ OV( 811), 69 },
|
|
{ OV( 831), 66 },
|
|
{ OV( 871), 58 },
|
|
{ OV( 881), 56 },
|
|
{ OV( 901), 52 },
|
|
{ OV( 921), 47 },
|
|
{ OV( 941), 42 },
|
|
{ OV( 971), 31 },
|
|
{ OV( 981), 23 },
|
|
{ OV( 991), 17 },
|
|
{ OV( 1001), 9 },
|
|
{ OV( 1021), -27 }
|
|
}; |