forked from grblHAL/RP2040
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generic_map.h
88 lines (70 loc) · 2.71 KB
/
generic_map.h
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
/*
generic_map.h - driver code for RP2040 ARM processors
Part of grblHAL
Copyright (c) 2021-2023 Terje Io
Copyright (c) 2021 Volksolive
Grbl is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Grbl is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
*/
#if TRINAMIC_ENABLE
#error Trinamic plugin not supported!
#endif
#if N_ABC_MOTORS
#error "Axis configuration is not supported!"
#endif
// Define step pulse output pins.
#define STEP_PORT GPIO_PIO // N_AXIS pin PIO SM
#define STEP_PINS_BASE 2 // N_AXIS number of consecutive pins are used by PIO
// Define step direction output pins.
#define DIRECTION_PORT GPIO_OUTPUT
#define X_DIRECTION_PIN 5
#define Y_DIRECTION_PIN 6
#define Z_DIRECTION_PIN 7
#define DIRECTION_OUTMODE GPIO_SHIFT5
// Define stepper driver enable/disable output pin.
#define ENABLE_PORT GPIO_OUTPUT
#define STEPPERS_ENABLE_PIN 8
// Define homing/hard limit switch input pins.
#define X_LIMIT_PIN 9
#define Y_LIMIT_PIN 10
#define Z_LIMIT_PIN 11
#define LIMIT_INMODE GPIO_MAP
// Define spindle enable and spindle direction output pins.
#define SPINDLE_PORT GPIO_OUTPUT
#define SPINDLE_ENABLE_PIN 13
#define SPINDLE_DIRECTION_PIN 14
// Define spindle PWM output pin.
#define SPINDLE_PWM_PORT GPIO_OUTPUT
#define SPINDLE_PWM_PIN 15
// Define flood and mist coolant enable output pins.
#define COOLANT_PORT GPIO_OUTPUT
#define COOLANT_FLOOD_PIN 16
#define COOLANT_MIST_PIN 17
// Define user-control controls (cycle start, reset, feed hold) input pins.
#define RESET_PIN 18
#define FEED_HOLD_PIN 19
#define CYCLE_START_PIN 20
#if SAFETY_DOOR_ENABLE
#define SAFETY_DOOR_PIN 21
#endif
// Define probe switch input pin.
#define PROBE_PIN 28
#if I2C_STROBE_ENABLE
#define I2C_STROBE_PIN 23
#endif
// Define auxillary I/O
#define AUXINPUT0_PIN 22
#define AUXOUTPUT0_PORT GPIO_OUTPUT
#define AUXOUTPUT0_PIN 12
#define AUXOUTPUT1_PORT GPIO_OUTPUT
#define AUXOUTPUT1_PIN 26
#define AUXOUTPUT2_PORT GPIO_OUTPUT
#define AUXOUTPUT2_PIN 27