-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathbtt_skr_pico_10_map.h
125 lines (101 loc) · 3.55 KB
/
btt_skr_pico_10_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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
btt_skr_pico_10_map.h - driver code for RP2040 ARM processors
Part of grblHAL
Copyright (c) 2022-2023 Terje Io
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 N_ABC_MOTORS > 1
#error "Axis configuration is not supported!"
#endif
#define BOARD_NAME "BTT SKR Pico 1.0"
#define BOARD_URL "https://github.com/bigtreetech/SKR-Pico"
#define SERIAL1_PORT 1
#undef TRINAMIC_ENABLE
#undef TRINAMIC_UART_ENABLE
#define TRINAMIC_ENABLE 2209
#define TRINAMIC_UART_ENABLE 1
#define TRINAMIC_STREAM 1
#define HAS_BOARD_INIT
// Define step pulse output pins.
#define STEP_PORT GPIO_PIO_1 // Single pin PIO SM
#define X_STEP_PIN 11
#define Y_STEP_PIN 6
#define Z_STEP_PIN 19
// Define step direction output pins.
#define DIRECTION_PORT GPIO_OUTPUT
#define DIRECTION_OUTMODE GPIO_MAP
#define X_DIRECTION_PIN 10
#define Y_DIRECTION_PIN 5
#define Z_DIRECTION_PIN 28
// Define stepper driver enable/disable output pin.
#define ENABLE_PORT GPIO_OUTPUT
#define X_ENABLE_PIN 12
#define Y_ENABLE_PIN 7
#define Z_ENABLE_PIN 2
// Define ganged axis or A axis step pulse and step direction output pins.
#if N_ABC_MOTORS > 0
#define M3_AVAILABLE
#define M3_STEP_PIN 14
#define M3_DIRECTION_PIN 13
#define M3_ENABLE_PIN 15
#define M3_LIMIT_PIN 16
#endif
// Define homing/hard limit switch input pins.
#define LIMIT_PORT GPIO_IN
#define X_LIMIT_PIN 4
#define Y_LIMIT_PIN 3
#define Z_LIMIT_PIN 25
// Define driver spindle pins
#if DRIVER_SPINDLE_PWM_ENABLE
#define SPINDLE_PWM_PORT GPIO_OUTPUT
#define SPINDLE_PWM_PIN 20
#else
#define AUXOUTPUT0_PORT GPIO_OUTPUT
#define AUXOUTPUT0_PIN 20
#endif
#if DRIVER_SPINDLE_DIR_ENABLE
#define SPINDLE_PORT GPIO_OUTPUT
#define SPINDLE_DIRECTION_PIN 18
#else
#define AUXOUTPUT1_PORT GPIO_OUTPUT
#define AUXOUTPUT1_PIN 18
#endif
#if DRIVER_SPINDLE_ENABLE
#ifndef SPINDLE_PORT
#define SPINDLE_PORT GPIO_OUTPUT
#endif
#define SPINDLE_ENABLE_PIN 17
#else
#define AUXOUTPUT2_PORT GPIO_OUTPUT
#define AUXOUTPUT2_PIN 17
#endif
// Define flood and mist coolant enable output pins.
/*
#define COOLANT_PORT GPIO_OUTPUT
#define COOLANT_FLOOD_PIN 2
#define COOLANT_MIST_PIN 3
*/
#if N_ABC_MOTORS == 0
// Define user-control controls (cycle start, reset, feed hold) input pins.
#define RESET_PIN 16
#define FEED_HOLD_PIN 13
#define CYCLE_START_PIN 14
#if SAFETY_DOOR_ENABLE
#define SAFETY_DOOR_PIN 15
#endif
#endif
// Define probe switch input pin.
#define PROBE_PORT GPIO_INPUT
#define PROBE_PIN 22
#if MODBUS_ENABLE
#define MODBUS_SERIAL_PORT 0
#endif