Improved grbl.on_probe_fixture event signature, some minor fixes

This commit is contained in:
Terje Io
2021-10-15 09:54:33 +02:00
parent 79882cf094
commit 465cdd32a3
11 changed files with 88 additions and 14 deletions

View File

@@ -254,7 +254,7 @@ static status_code_t execute_unary (float *operand, ngc_unary_op_t operation)
break;
case NGCUnaryOp_FIX:
*operand = floor(*operand);
*operand = floorf(*operand);
break;
case NGCUnaryOp_FUP: