Fix up some whitespace
This commit is contained in:
parent
20c20dacb7
commit
712e23c383
@ -162,7 +162,7 @@ int16_t Temperature::current_temperature_raw[HOTENDS], // = { 0 }
|
||||
#endif
|
||||
|
||||
if (target >= FAN_COUNT) return;
|
||||
|
||||
|
||||
fan_speed[target] = speed;
|
||||
#if ENABLED(ULTRA_LCD)
|
||||
lcd_tmpfan_speed[target] = speed;
|
||||
|
@ -78,7 +78,7 @@
|
||||
#define FAN1_PIN P2_04
|
||||
#else
|
||||
#define HEATER_1_PIN P2_04
|
||||
#endif
|
||||
#endif
|
||||
#define FAN_PIN P2_03
|
||||
#define HEATER_BED_PIN P2_05
|
||||
|
||||
|
@ -525,10 +525,7 @@ bool Sd2Card::readStop() {
|
||||
*/
|
||||
bool Sd2Card::setSckRate(const uint8_t sckRateID) {
|
||||
const bool success = (sckRateID <= 6);
|
||||
if (success)
|
||||
spiRate_ = sckRateID;
|
||||
else
|
||||
error(SD_CARD_ERROR_SCK_RATE);
|
||||
if (success) spiRate_ = sckRateID; else error(SD_CARD_ERROR_SCK_RATE);
|
||||
return success;
|
||||
}
|
||||
|
||||
@ -539,9 +536,7 @@ bool Sd2Card::setSckRate(const uint8_t sckRateID) {
|
||||
*/
|
||||
bool Sd2Card::waitNotBusy(const millis_t timeout_ms) {
|
||||
const millis_t wait_timeout = millis() + timeout_ms;
|
||||
while (spiRec() != 0xFF)
|
||||
if (ELAPSED(millis(), wait_timeout)) return false;
|
||||
|
||||
while (spiRec() != 0xFF) if (ELAPSED(millis(), wait_timeout)) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user