-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathst_morpho_map.h
172 lines (140 loc) · 5 KB
/
st_morpho_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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*
st_morpho_map.h - driver code for STM32F4xx ARM processors
Part of grblHAL
Copyright (c) 2020-2021 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 TRINAMIC_ENABLE == 2130
#include "trinamic\tmc2130.h"
#endif
#if TRINAMIC_ENABLE == 2209
#include "trinamic\tmc2209.h"
#endif
#if N_ABC_MOTORS > 1
#error "Axis configuration is not supported!"
#endif
#define BOARD_NAME "Nucleo-64 CNC Breakout"
#define I2C_PORT 1
#define IS_NUCLEO_BOB
#define HAS_IOPORTS
#define HAS_BOARD_INIT
//#define SPINDLE_SYNC_ENABLE 1
// Define step pulse output pins.
#define STEP_PORT GPIOC
#define X_STEP_PIN 0
#define Y_STEP_PIN 5
#define Z_STEP_PIN 9
#if N_GANGED
#define STEP_OUTMODE GPIO_MAP
#else
#define STEP_OUTMODE GPIO_MAP
#endif
//#define STEP_PINMODE PINMODE_OD // Uncomment for open drain outputs
// Define step direction output pins.
#define DIRECTION_PORT GPIOA
#define X_DIRECTION_PIN 0
#define Y_DIRECTION_PIN 4
#define Z_DIRECTION_PIN 11
#if N_GANGED
#define DIRECTION_OUTMODE GPIO_BITBAND
#else
#define DIRECTION_OUTMODE GPIO_MAP
#endif
//#define DIRECTION_PINMODE PINMODE_OD // Uncomment for open drain outputs
// Define stepper driver enable/disable output pins.
#define X_ENABLE_PORT GPIOA
#define X_ENABLE_PIN 1
#define Y_ENABLE_PORT GPIOB
#define Y_ENABLE_PIN 12
#define Z_ENABLE_PORT GPIOB
#define Z_ENABLE_PIN 1
//#define STEPPERS_ENABLE_PINMODE PINMODE_OD // Uncomment for open drain outputs
// Define homing/hard limit switch input pins.
#define LIMIT_PORT GPIOC
#define X_LIMIT_PIN 13
#define Y_LIMIT_PIN 12
#define Z_LIMIT_PIN 10
#define LIMIT_INMODE GPIO_BITBAND
// Define ganged axis or A axis step pulse and step direction output pins.
#if N_ABC_MOTORS == 1
#define M3_AVAILABLE
#define M3_STEP_PORT GPIOC
#define M3_STEP_PIN 6
#define M3_DIRECTION_PORT GPIOA
#define M3_DIRECTION_PIN 12
#define M3_LIMIT_PORT GPIOC
#define M3_LIMIT_PIN 11
#define M3_ENABLE_PORT GPIOB
#define M3_ENABLE_PIN 6
#endif
// Define spindle enable and spindle direction output pins.
#define SPINDLE_ENABLE_PORT GPIOB
#define SPINDLE_ENABLE_PIN 3
#define SPINDLE_DIRECTION_PORT GPIOB
#define SPINDLE_DIRECTION_PIN 5
#define SPINDLE_DIRECTION_BIT (1<<SPINDLE_DIRECTION_PIN)
// Define spindle PWM output pin.
#define SPINDLE_PWM_PORT_BASE GPIOA_BASE
#define SPINDLE_PWM_PIN 5
// Define flood and mist coolant enable output pins.
#define COOLANT_FLOOD_PORT GPIOB
#define COOLANT_FLOOD_PIN 10
#define COOLANT_MIST_PORT GPIOB
#define COOLANT_MIST_PIN 4
// Define user-control controls (cycle start, reset, feed hold) input pins.
#define CONTROL_PORT GPIOC
#define RESET_PIN 2
#define FEED_HOLD_PIN 3
#define CYCLE_START_PIN 4
#if SAFETY_DOOR_ENABLE
#define SAFETY_DOOR_PIN 1
#endif
#define CONTROL_INMODE GPIO_BITBAND
// Define probe switch input pin.
#define PROBE_PORT GPIOC
#define PROBE_PIN 7
// Spindle encoder pins.
#if SPINDLE_SYNC_ENABLE
#define SPINDLE_INDEX_PORT GPIOB
#define SPINDLE_INDEX_PIN 14
#define SPINDLE_INDEX_BIT (1<<SPINDLE_INDEX_PIN)
#define SPINDLE_PULSE_PORT GPIOD
#define SPINDLE_PULSE_PIN 2
#define SPINDLE_PULSE_BIT (1<<SPINDLE_PULSE_PIN)
#endif
// Auxiliary I/O
#define AUXINPUT0_PORT GPIOB
#define AUXINPUT0_PIN 14
#define AUXINPUT1_PORT GPIOA
#define AUXINPUT1_PIN 15
#define AUXINPUT_MASK (1<<AUXINPUT0_PIN|1<<AUXINPUT1_PIN)
#define AUXOUTPUT0_PORT GPIOB
#define AUXOUTPUT0_PIN 15
#define AUXOUTPUT1_PORT GPIOB
#define AUXOUTPUT1_PIN 2
#if KEYPAD_ENABLE
#define KEYPAD_PORT GPIOB
#define KEYPAD_STROBE_PIN 0
#define KEYPAD_STROBE_BIT (1<<KEYPAD_STROBE_PIN)
#endif
#if SDCARD_ENABLE
#define SD_CS_PORT GPIOC
#define SD_CS_PIN 8
#define SD_CS_BIT (1<<SD_CS_PIN)
#define SPI_PORT 1 // GPIOA, SCK_PIN = 5, MISO_PIN = 6, MOSI_PIN = 7
#endif
#if TRINAMIC_ENABLE
#define SPI_PORT 1 // GPIOA, SCK_PIN = 5, MISO_PIN = 6, MOSI_PIN = 7
#define MOTOR_CS_PORT GPIOB
#define MOTOR_CS_PIN 7
#endif
// EOF