Skip to content
This repository has been archived by the owner on Aug 27, 2023. It is now read-only.

Commit

Permalink
ThermistorTables.h: add a const to temptable.
Browse files Browse the repository at this point in the history
This is apparently required by Arch Linux' avr-gcc.
  • Loading branch information
Traumflug committed Mar 26, 2012
1 parent 7b909fc commit 53140cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ThermistorTable.double.h
Expand Up @@ -35,7 +35,7 @@
// Must be the same for all tables. // Must be the same for all tables.
#define NUMTEMPS 102 #define NUMTEMPS 102


uint16_t temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = { uint16_t const temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = {


// Table for the Extruder. // Table for the Extruder.
// Thermistor: EPCOS B57560G104F // Thermistor: EPCOS B57560G104F
Expand Down
2 changes: 1 addition & 1 deletion ThermistorTable.single.h
Expand Up @@ -35,7 +35,7 @@
// Must be the same for all tables. // Must be the same for all tables.
#define NUMTEMPS 20 #define NUMTEMPS 20


uint16_t temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = { uint16_t const temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = {


// Table for the Extruder. // Table for the Extruder.
// Thermistor: unknown // Thermistor: unknown
Expand Down

0 comments on commit 53140cf

Please sign in to comment.