Fix MSG_HEATING_FAILED_LCD_BED macro evaluation
This commit is contained in:
parent
fe91514395
commit
1c36606886
@ -64,18 +64,21 @@ Temperature thermalManager;
|
||||
* elimination should (hopefully) optimize out the unused strings.
|
||||
*/
|
||||
#if HAS_TEMP_BED
|
||||
#define _BED_ERR_PSTR(MSG, E) (E) == -1 ? PSTR(MSG ## _BED) :
|
||||
#else
|
||||
#define _BED_ERR_PSTR(MSG, E)
|
||||
#endif
|
||||
|
||||
#define TEMP_ERR_PSTR(MSG, E) \
|
||||
_BED_ERR_PSTR(MSG, E) \
|
||||
#define TEMP_ERR_PSTR(MSG, E) \
|
||||
(E) == -1 ? PSTR(MSG ## _BED) : \
|
||||
(HOTENDS > 1 && (E) == 1) ? PSTR(MSG_E2 " " MSG) : \
|
||||
(HOTENDS > 2 && (E) == 2) ? PSTR(MSG_E3 " " MSG) : \
|
||||
(HOTENDS > 3 && (E) == 3) ? PSTR(MSG_E4 " " MSG) : \
|
||||
(HOTENDS > 4 && (E) == 4) ? PSTR(MSG_E5 " " MSG) : \
|
||||
PSTR(MSG_E1 " " MSG)
|
||||
#else
|
||||
#define TEMP_ERR_PSTR(MSG, E) \
|
||||
(HOTENDS > 1 && (E) == 1) ? PSTR(MSG_E2 " " MSG) : \
|
||||
(HOTENDS > 2 && (E) == 2) ? PSTR(MSG_E3 " " MSG) : \
|
||||
(HOTENDS > 3 && (E) == 3) ? PSTR(MSG_E4 " " MSG) : \
|
||||
(HOTENDS > 4 && (E) == 4) ? PSTR(MSG_E5 " " MSG) : \
|
||||
PSTR(MSG_E1 " " MSG)
|
||||
#endif
|
||||
|
||||
// public:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user