mirror of
https://github.com/grblHAL/core.git
synced 2026-02-06 00:52:35 +08:00
Added $384 setting for controlling G92 offset persistence. Improved $help command output and handling. Moved the optional tool table in non-volatile storage. Added gcode parameter support and optional expression support.
9 lines
150 B
C
9 lines
150 B
C
/* ngc_expr.h */
|
|
|
|
#ifndef _NGC_EXPR_H_
|
|
#define _NGC_EXPR_H_
|
|
|
|
status_code_t ngc_eval_expression (char *line, uint_fast8_t *pos, float *value);
|
|
|
|
#endif
|