Skip to content

Commit

Permalink
string
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Oct 20, 2024
1 parent 8effaf4 commit 6bf4580
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Marlin/src/core/language.h
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@
#define STR_TEMPERATURE_UNITS "Temperature Units"
#define STR_USER_THERMISTORS "User thermistors"
#define STR_DELAYED_POWEROFF "Delayed poweroff"
#define STR_STORED_MACROS "Stored macros"

//
// General axis names
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/gcode/feature/macro/M820.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extern char gcode_macros[GCODE_MACROS_SLOTS][GCODE_MACROS_SLOT_SIZE + 1];
* M820: List defined M810 - M819 macros
*/
void GcodeSuite::M820() {
SERIAL_ECHOLNPGM(STR_M810_M819_MACROS);
SERIAL_ECHOLNPGM(STR_STORED_MACROS);
for (uint8_t i = 0; i < GCODE_MACROS_SLOTS; ++i) {
char * const cmd = gcode_macros[i];
if (*cmd) {
Expand Down

0 comments on commit 6bf4580

Please sign in to comment.