Browse Source

Use some macros in M48

pull/1/head
Scott Lahteine 8 years ago
parent
commit
e4d2662d81
  1. 5
      Marlin/Marlin_main.cpp

5
Marlin/Marlin_main.cpp

@ -4899,8 +4899,8 @@ inline void gcode_M42() {
for (uint8_t j = 0; j <= n; j++) sum += sample_set[j];
mean = sum / (n + 1);
if(sample_set[n] < min) min = sample_set[n];
if(sample_set[n] > max) max = sample_set[n];
NOMORE(min, sample_set[n]);
NOLESS(max, sample_set[n]);
/**
* Now, use that mean to calculate the standard deviation for the
@ -4956,7 +4956,6 @@ inline void gcode_M42() {
SERIAL_PROTOCOLPGM("Standard Deviation: ");
SERIAL_PROTOCOL_F(sigma, 6);
SERIAL_EOL;
SERIAL_EOL;
clean_up_after_endstop_or_probe_move();

Loading…
Cancel
Save