File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1277,7 +1277,7 @@ void setup() {
1277
1277
1278
1278
// Identify myself as Marlin x.x.x
1279
1279
SERIAL_ECHOLNPGM (" Marlin " SHORT_BUILD_VERSION);
1280
- #if defined( STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
1280
+ #ifdef STRING_DISTRIBUTION_DATE
1281
1281
SERIAL_ECHO_MSG (
1282
1282
" Last Updated: " STRING_DISTRIBUTION_DATE
1283
1283
" | Author: " STRING_CONFIG_H_AUTHOR
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ void MarlinEthernet::check() {
141
141
142
142
case CONNECTING:
143
143
telnetClient.println (" Marlin " SHORT_BUILD_VERSION);
144
- #if defined( STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
144
+ #ifdef STRING_DISTRIBUTION_DATE
145
145
telnetClient.println (
146
146
" Last Updated: " STRING_DISTRIBUTION_DATE
147
147
" | Author: " STRING_CONFIG_H_AUTHOR
Original file line number Diff line number Diff line change 26
26
* Conditionals that need to be set before Configuration_adv.h or pins.h
27
27
*/
28
28
29
+ #ifndef STRING_CONFIG_H_AUTHOR
30
+ #define STRING_CONFIG_H_AUTHOR "(anonymous)"
31
+ #endif
32
+
29
33
/**
30
34
* Extruders have some combination of stepper motors and hotends
31
35
* so we separate these concepts into the defines:
You can’t perform that action at this time.
0 commit comments