🎨 Apply shorthand and cleanups
This commit is contained in:
		| @@ -44,10 +44,6 @@ bool CaseLight::on = CASE_LIGHT_DEFAULT_ON; | ||||
|   LEDColor CaseLight::color = { init_case_light[0], init_case_light[1], init_case_light[2], TERN_(HAS_WHITE_LED, init_case_light[3]) }; | ||||
| #endif | ||||
|  | ||||
| #ifndef INVERT_CASE_LIGHT | ||||
|   #define INVERT_CASE_LIGHT false | ||||
| #endif | ||||
|  | ||||
| void CaseLight::update(const bool sflag) { | ||||
|   #if CASELIGHT_USES_BRIGHTNESS | ||||
|     /** | ||||
| @@ -64,7 +60,7 @@ void CaseLight::update(const bool sflag) { | ||||
|     if (sflag && on) | ||||
|       brightness = brightness_sav;  // Restore last brightness for M355 S1 | ||||
|  | ||||
|     const uint8_t i = on ? brightness : 0, n10ct = INVERT_CASE_LIGHT ? 255 - i : i; | ||||
|     const uint8_t i = on ? brightness : 0, n10ct = ENABLED(INVERT_CASE_LIGHT) ? 255 - i : i; | ||||
|     UNUSED(n10ct); | ||||
|   #endif | ||||
|  | ||||
| @@ -86,7 +82,7 @@ void CaseLight::update(const bool sflag) { | ||||
|       else | ||||
|     #endif | ||||
|       { | ||||
|         const bool s = on ? !INVERT_CASE_LIGHT : INVERT_CASE_LIGHT; | ||||
|         const bool s = on ? TERN(INVERT_CASE_LIGHT, LOW, HIGH) : TERN(INVERT_CASE_LIGHT, HIGH, LOW); | ||||
|         WRITE(CASE_LIGHT_PIN, s ? HIGH : LOW); | ||||
|       } | ||||
|  | ||||
|   | ||||
| @@ -566,7 +566,7 @@ void GcodeSuite::process_parsed_command(const bool no_ok/*=false*/) { | ||||
|       #endif | ||||
|  | ||||
|       #if ENABLED(AUTO_REPORT_POSITION) | ||||
|         case 154: M154(); break;                                  // M155: Set position auto-report interval | ||||
|         case 154: M154(); break;                                  // M154: Set position auto-report interval | ||||
|       #endif | ||||
|  | ||||
|       #if BOTH(AUTO_REPORT_TEMPERATURES, HAS_TEMP_SENSOR) | ||||
|   | ||||
| @@ -445,12 +445,7 @@ uint8_t L64XX_Marlin::get_user_input(uint8_t &driver_count, L64XX_axis_t axis_in | ||||
|       position_min = X_center - displacement; | ||||
|       position_max = X_center + displacement; | ||||
|       echo_min_max('X', position_min, position_max); | ||||
|       if (false | ||||
|         #if HAS_ENDSTOPS | ||||
|           || position_min < (X_MIN_POS) | ||||
|           || position_max > (X_MAX_POS) | ||||
|         #endif | ||||
|       ) { | ||||
|       if (TERN0(HAS_ENDSTOPS, position_min < (X_MIN_POS) || position_max > (X_MAX_POS))) { | ||||
|         err_out_of_bounds(); | ||||
|         return true; | ||||
|       } | ||||
| @@ -460,12 +455,7 @@ uint8_t L64XX_Marlin::get_user_input(uint8_t &driver_count, L64XX_axis_t axis_in | ||||
|       position_min = Y_center - displacement; | ||||
|       position_max = Y_center + displacement; | ||||
|       echo_min_max('Y', position_min, position_max); | ||||
|       if (false | ||||
|         #if HAS_ENDSTOPS | ||||
|           || position_min < (Y_MIN_POS) | ||||
|           || position_max > (Y_MAX_POS) | ||||
|         #endif | ||||
|       ) { | ||||
|       if (TERN0(HAS_ENDSTOPS, position_min < (Y_MIN_POS) || position_max > (Y_MAX_POS))) { | ||||
|         err_out_of_bounds(); | ||||
|         return true; | ||||
|       } | ||||
| @@ -475,12 +465,7 @@ uint8_t L64XX_Marlin::get_user_input(uint8_t &driver_count, L64XX_axis_t axis_in | ||||
|       position_min = Z_center - displacement; | ||||
|       position_max = Z_center + displacement; | ||||
|       echo_min_max('Z', position_min, position_max); | ||||
|       if (false | ||||
|         #if HAS_ENDSTOPS | ||||
|           || position_min < (Z_MIN_POS) | ||||
|           || position_max > (Z_MAX_POS) | ||||
|         #endif | ||||
|       ) { | ||||
|       if (TERN0(HAS_ENDSTOPS, position_min < (Z_MIN_POS) || position_max > (Z_MAX_POS))) { | ||||
|         err_out_of_bounds(); | ||||
|         return true; | ||||
|       } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user