Closed
Conversation
Author
|
Daid's Pull request #56 is a better fix. |
Closed
tonokip
pushed a commit
to ultimachine/Marlin
that referenced
this pull request
Jan 24, 2022
Resolve "M175v2 probe too high error" Closes MarlinFirmware#51 See merge request lulzbot3d/marlin!33
qw3rtrun
pushed a commit
to qw3rtrun/Marlin
that referenced
this pull request
Sep 7, 2022
arades79
pushed a commit
to CELLINKAB/Marlin
that referenced
this pull request
Mar 15, 2024
Compile both V1 and V1.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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))'