Fix code attempting to sprintf %f (#14869)
Arduino doesn't (always) support `float` formatting in strings. So either cast to `int` or use `dtostrf()` to fix these usages.
This commit is contained in:
		| @@ -42,7 +42,7 @@ | ||||
|       SERIAL_CHAR(' '); | ||||
|       SERIAL_CHAR(axis_codes[i]); | ||||
|       SERIAL_CHAR(':'); | ||||
|       SERIAL_ECHO(dtostrf(pos[i], 8, precision, str)); | ||||
|       SERIAL_ECHO(dtostrf(pos[i], 1, precision, str)); | ||||
|     } | ||||
|     SERIAL_EOL(); | ||||
|   } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user