This repository has been archived by the owner on Aug 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 199
/
graycode.c
91 lines (80 loc) · 2.29 KB
/
graycode.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
This file contains defines that change the way the step/dir pins work, such
that they become interchangable graycode signaling pins. If your stepper
driver expects coil polarity signals instead of step/dir, this will allow
them to work with reprap.
By default, X Y and Z are graycode, while E remains step/dir. If this isn't what
you want, edit the lines just below.
*/
// #define X_GREYCODE
// #define Y_GREYCODE
// #define Z_GREYCODE
//#define E_GREYCODE
/*
X Stepper
*/
#ifdef X_GREYCODE
#undef x_step
#undef _x_step
#undef x_direction
#define x_step() {\
x_greycode+=stored_x_direction;\
WRITE(X_STEP_PIN,(x_greycode>>1)&1);\
WRITE(X_DIR_PIN,((x_greycode>>1)^x_greycode)&1);\
}
#define _x_step(st)
#define x_direction(dir) stored_x_direction=(dir)?1:-1
int8_t stored_x_direction;
int8_t x_greycode;
#endif
/*
Y Stepper
*/
#ifdef Y_GREYCODE
#undef y_step
#undef _y_step
#undef y_direction
#define y_step() {\
y_greycode+=stored_y_direction;\
WRITE(Y_STEP_PIN,(y_greycode>>1)&1);\
WRITE(Y_DIR_PIN,((y_greycode>>1)^y_greycode)&1);\
}
#define _y_step(st)
#define y_direction(dir) stored_y_direction=(dir)?1:-1
int8_t stored_y_direction;
int8_t y_greycode;
#endif
/*
Z Stepper
*/
#ifdef Z_GREYCODE
#undef z_step
#undef _z_step
#undef z_direction
#define z_step() {\
z_greycode+=stored_z_direction;\
WRITE(Z_STEP_PIN,(z_greycode>>1)&1);\
WRITE(Z_DIR_PIN,((z_greycode>>1)^z_greycode)&1);\
}
#define _z_step(st)
#define z_direction(dir) stored_z_direction=(dir)?1:-1
int8_t stored_z_direction;
int8_t z_greycode;
#endif
/*
Extruder
*/
#ifdef E_GREYCODE
#undef e_step
#undef _e_step
#undef e_direction
#define e_step() {\
e_greycode+=stored_e_direction;\
WRITE(E_STEP_PIN,(e_greycode>>1)&1);\
WRITE(E_DIR_PIN,((e_greycode>>1)^e_greycode)&1);\
}
#define _e_step(st)
#define e_direction(dir) stored_e_direction=(dir)?1:-1
int8_t stored_e_direction;
int8_t e_greycode;
#endif