grblHAL core  20240704
tool_change.h
Go to the documentation of this file.
1 /*
2  tool_change.h - An embedded CNC Controller with rs274/ngc (g-code) support
3 
4  Manual tool change with automatic touch off
5 
6  Part of grblHAL
7 
8  Copyright (c) 2020-2024 Terje Io
9 
10  grblHAL is free software: you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation, either version 3 of the License, or
13  (at your option) any later version.
14 
15  grblHAL is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  GNU General Public License for more details.
19 
20  You should have received a copy of the GNU General Public License
21  along with grblHAL. If not, see <http://www.gnu.org/licenses/>.
22 */
23 
24 #ifndef _TOOL_CHANGE_H_
25 #define _TOOL_CHANGE_H_
26 
27 void tc_init (void);
28 status_code_t tc_probe_workpiece (void);
29 
30 #endif
status_code_t tc_probe_workpiece(void)
Definition: tool_change.c:464
void tc_init(void)
Definition: tool_change.c:424