Align section attributes usage: always before the variable name.
This commit is contained in:
parent
c7150445af
commit
793a04b991
|
|
@ -35,7 +35,7 @@
|
||||||
// Must be the same for all tables.
|
// Must be the same for all tables.
|
||||||
#define NUMTEMPS 102
|
#define NUMTEMPS 102
|
||||||
|
|
||||||
const uint16_t temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = {
|
const uint16_t PROGMEM temptable[NUMTABLES][NUMTEMPS][2] = {
|
||||||
|
|
||||||
// Table for the Extruder.
|
// Table for the Extruder.
|
||||||
// Thermistor: EPCOS B57560G104F
|
// Thermistor: EPCOS B57560G104F
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
// Must be the same for all tables.
|
// Must be the same for all tables.
|
||||||
#define NUMTEMPS 20
|
#define NUMTEMPS 20
|
||||||
|
|
||||||
const uint16_t temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = {
|
const uint16_t PROGMEM temptable[NUMTABLES][NUMTEMPS][2] = {
|
||||||
|
|
||||||
// Table for the Extruder.
|
// Table for the Extruder.
|
||||||
// Thermistor: unknown
|
// Thermistor: unknown
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
// max adc: 1023
|
// max adc: 1023
|
||||||
#define NUMTEMPS 20
|
#define NUMTEMPS 20
|
||||||
// {ADC, temp*4 }, // temp
|
// {ADC, temp*4 }, // temp
|
||||||
const uint16_t temptable[NUMTABLES][NUMTEMPS][2] PROGMEM = {
|
const uint16_t PROGMEM temptable[NUMTABLES][NUMTEMPS][2] = {
|
||||||
{
|
{
|
||||||
{1, 3364}, // 841.027617469 C
|
{1, 3364}, // 841.027617469 C
|
||||||
{21, 1329}, // 332.486789769 C
|
{21, 1329}, // 332.486789769 C
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue