Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Builds were failing with the following two errors, as well as some complaints about needing some consts in the speed lookup table.
temperature.cpp: In function 'int temp2analog(int, uint8_t)':
temperature.cpp:283:7: error: variable 'c' must be const in order to be put into read-only section by means of '__attribute((progmem))'
temperature.cpp: In function 'float analog2temp(int, uint8_t)':
temperature.cpp:353:7: error: variable 'c' must be const in order to be put into read-only section by means of '__attribute((progmem))'
temperature.cpp: In function 'void max_temp_error(uint8_t)':
temperature.cpp:582:3: error: variable 'c' must be const in order to be put into read-only section by means of '__attribute((progmem))'
temperature.cpp: In function 'void min_temp_error(uint8_t)':
temperature.cpp:589:3: error: variable 'c' must be const in order to be put into read-only section by means of '__attribute((progmem))'
temperature.cpp: In function 'void bed_max_temp_error()':
temperature.cpp:595:3: error: variable 'c' must be const in order to be put into read-only section by means of '__attribute((progmem))'