Moved message substitution code from gcode.c to ngc_expr.c.

This commit is contained in:
Terje Io
2024-10-19 18:45:13 +07:00
parent 236a40c100
commit c07d63198e
5 changed files with 173 additions and 138 deletions

View File

@@ -9,5 +9,7 @@ status_code_t ngc_read_integer_value(char *line, uint_fast8_t *pos, int32_t *val
status_code_t ngc_read_integer_unsigned (char *line, uint_fast8_t *pos, uint32_t *value);
status_code_t ngc_read_parameter (char *line, uint_fast8_t *pos, float *value, bool check);
status_code_t ngc_eval_expression (char *line, uint_fast8_t *pos, float *value);
/**/
char *ngc_substitute_parameters (char *comment, char **message);
#endif