ThermistorTables.h: add a const to temptable.
This is apparently required by Arch Linux' avr-gcc.
This commit is contained in:
parent
7b909fcf82
commit
53140cf87c
|
|
@ -35,7 +35,7 @@
|
|||
// Must be the same for all tables.
|
||||
#define NUMTEMPS 102
|
||||
|
||||
uint16_t temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = {
|
||||
uint16_t const temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = {
|
||||
|
||||
// Table for the Extruder.
|
||||
// Thermistor: EPCOS B57560G104F
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
// Must be the same for all tables.
|
||||
#define NUMTEMPS 20
|
||||
|
||||
uint16_t temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = {
|
||||
uint16_t const temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = {
|
||||
|
||||
// Table for the Extruder.
|
||||
// Thermistor: unknown
|
||||
|
|
|
|||
Loading…
Reference in New Issue