Merge remote-tracking branch 'upstream/edge' into upstreamedge
[clinton/Smoothieware.git] / src / libs / nuts_bolts.h
CommitLineData
4cff3ded
AW
1/*
2nuts_bolts.h - cartesian robot controller.
3Part of Grbl
4
5Copyright (c) 2009-2011 Simen Svale Skogsrud
6
7Grbl is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
11
12Grbl is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with Grbl. If not, see <http://www.gnu.org/licenses/>.
19*/
20
21#ifndef nuts_bolts_h
22#define nuts_bolts_h
4eb9c745 23
4cff3ded
AW
24#define X_AXIS 0
25#define Y_AXIS 1
26#define Z_AXIS 2
29e809e0 27#define E_AXIS 3
4cff3ded
AW
28
29#define ALPHA_STEPPER 0
30#define BETA_STEPPER 1
31#define GAMMA_STEPPER 2
807b9b57
JM
32#define DELTA_STEPPER 3
33#define EPSILON_STEPPER 4
34#define ZETA_STEPPER 5
4cff3ded 35
4cff3ded
AW
36#endif
37