Compiler issues (PR#2696)

This commit is contained in:
Richard Wackerbarth 2015-10-04 10:33:55 -05:00
parent 47401ec97b
commit 25d636c9e0
2 changed files with 3 additions and 0 deletions

View file

@ -7056,6 +7056,8 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
void kill(const char* lcd_msg) {
#if ENABLED(ULTRA_LCD)
lcd_setalertstatuspgm(lcd_msg);
#else
UNUSED(lcd_msg);
#endif
cli(); // Stop interrupts

View file

@ -796,6 +796,7 @@ static float analog2tempBed(int raw) {
#else
UNUSED(raw);
return 0;
#endif