Silence unused parameter warnings
This commit is contained in:
committed by
Scott Lahteine
parent
9dba7cd371
commit
6376b683c7
@ -2363,7 +2363,7 @@ void MarlinSettings::postprocess() {
|
||||
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
||||
|
||||
inline void ubl_invalid_slot(const int s) {
|
||||
#if ENABLED(EEPROM_CHITCHAT)
|
||||
#if BOTH(EEPROM_CHITCHAT, DEBUG_OUT)
|
||||
DEBUG_ECHOLNPGM("?Invalid slot.");
|
||||
DEBUG_ECHO(s);
|
||||
DEBUG_ECHOLNPGM(" mesh slots available.");
|
||||
|
@ -69,7 +69,7 @@ hotend_pid_t;
|
||||
typedef IF<(LPQ_MAX_LEN > 255), uint16_t, uint8_t>::type lpq_ptr_t;
|
||||
#endif
|
||||
|
||||
#define PID_PARAM(F,H) _PID_##F(TERN(PID_PARAMS_PER_HOTEND, H, 0))
|
||||
#define PID_PARAM(F,H) _PID_##F(TERN(PID_PARAMS_PER_HOTEND, H, 0 & H)) // Always use 'H' to suppress warning
|
||||
#define _PID_Kp(H) TERN(PIDTEMP, Temperature::temp_hotend[H].pid.Kp, NAN)
|
||||
#define _PID_Ki(H) TERN(PIDTEMP, Temperature::temp_hotend[H].pid.Ki, NAN)
|
||||
#define _PID_Kd(H) TERN(PIDTEMP, Temperature::temp_hotend[H].pid.Kd, NAN)
|
||||
|
Reference in New Issue
Block a user