grblHAL core  20241107
stepper.h
Go to the documentation of this file.
1 /*
2  stepper.h - stepper motor driver: executes motion plans of planner.c using the stepper motors
3 
4  Part of grblHAL
5 
6  Copyright (c) 2019-2023 Terje Io
7  Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
8  Copyright (c) 2009-2011 Simen Svale Skogsrud
9 
10  Grbl is free software: you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation, either version 3 of the License, or
13  (at your option) any later version.
14 
15  Grbl is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  GNU General Public License for more details.
19 
20  You should have received a copy of the GNU General Public License
21  along with Grbl. If not, see <http://www.gnu.org/licenses/>.
22 */
23 
24 #include "planner.h"
25 
26 #ifndef _STEPPER_H_
27 #define _STEPPER_H_
28 
29 typedef enum {
34 
40 typedef struct st_block {
41  uint_fast8_t id;
42  struct st_block *next;
43  uint32_t steps[N_AXIS];
44  uint32_t step_event_count;
47  float steps_per_mm;
48  float millimeters;
50  char *message;
53  bool dynamic_rpm;
57 
58 typedef struct st_segment {
59  uint_fast8_t id;
60  struct st_segment *next;
62  uint32_t cycles_per_tick;
63  float current_rate;
65  uint_fast16_t n_step;
66  uint_fast16_t spindle_pwm;
67  float spindle_rpm;
68  bool spindle_sync;
69  bool cruising;
70  uint_fast8_t amass_level;
74 
76 typedef struct stepper {
77  uint32_t counter_x,
80  #ifdef A_AXIS
81  , counter_a
82  #endif
83  #ifdef B_AXIS
84  , counter_b
85  #endif
86  #ifdef C_AXIS
87  , counter_c
88  #endif
89  #ifdef U_AXIS
90  , counter_u
91  #endif
92  #ifdef V_AXIS
93  , counter_v
94  #endif
95 ;
96  bool new_block;
97  bool dir_change;
100  uint32_t steps[N_AXIS];
101  uint_fast8_t amass_level;
102 // uint_fast16_t spindle_pwm;
103  uint_fast16_t step_count;
104  uint32_t step_event_count;
108 
109 // Initialize and setup the stepper motor subsystem
110 void stepper_init (void);
111 
112 // Enable steppers, but cycle does not start unless called by motion control or realtime command.
113 void st_wake_up (void);
114 
115 // Immediately disables steppers
116 void st_go_idle (void);
117 
118 // Reset the stepper subsystem variables
119 void st_reset (void);
120 
121 // Called by spindle_set_state() to inform about RPM changes.
122 void st_rpm_changed(float rpm);
123 
124 // Changes the run state of the step segment buffer to execute the special parking motion.
126 
127 // Restores the step segment buffer to the normal run state after a parking motion.
128 void st_parking_restore_buffer (void);
129 
130 // Reloads step segment buffer. Called continuously by realtime execution system.
131 void st_prep_buffer (void);
132 
133 // Called by planner_recalculate() when the executing block is updated by the new plan.
135 
136 // Called by realtime status reporting if realtime rate reporting is enabled in config.h.
137 float st_get_realtime_rate (void);
138 
140 
142 
143 #endif
#define N_AXIS
Defines number of axes supported - minimum 3, maximum 8. If more than 3 axes are configured a complia...
Definition: config.h:42
int8_t offset_id_t
Definition: gcode.h:36
void(* spindle_update_pwm_ptr)(struct spindle_ptrs *spindle, uint_fast16_t pwm)
Pointer to function for updating spindle speed on the fly.
Definition: spindle_control.h:169
void(* spindle_update_rpm_ptr)(struct spindle_ptrs *spindle, float rpm)
Pointer to function for updating spindle RPM.
Definition: spindle_control.h:174
void stepper_driver_interrupt_handler(void)
squaring_mode_t
Definition: stepper.h:29
@ SquaringMode_A
1
Definition: stepper.h:31
@ SquaringMode_B
2
Definition: stepper.h:32
@ SquaringMode_Both
0
Definition: stepper.h:30
float st_get_realtime_rate(void)
Definition: stepper.c:1096
void st_parking_restore_buffer(void)
Definition: stepper.c:619
void st_prep_buffer(void)
Definition: stepper.c:650
void st_update_plan_block_parameters(void)
Definition: stepper.c:591
void stepper_init(void)
void st_rpm_changed(float rpm)
Definition: stepper.c:585
void st_wake_up(void)
Definition: stepper.c:193
struct st_segment segment_t
struct st_block st_block_t
Holds the planner block Bresenham algorithm execution data for the segments in the segment buffer.
struct stepper stepper_t
Stepper ISR data struct. Contains the running data for the main stepper ISR.
void st_go_idle(void)
Definition: stepper.c:203
void st_parking_setup_buffer()
Definition: stepper.c:601
void st_reset(void)
Definition: stepper.c:535
offset_id_t st_get_offset_id(void)
Definition: stepper.c:1107
Data for M62, M63 and M67 commands when executed synchronized with motion.
Definition: gcode.h:269
Handlers and data for spindle support.
Definition: spindle_control.h:270
Holds the planner block Bresenham algorithm execution data for the segments in the segment buffer.
Definition: stepper.h:40
char * message
Message to be displayed when block is executed.
Definition: stepper.h:50
struct st_block * next
Pointer to next element in cirular list of blocks.
Definition: stepper.h:42
axes_signals_t direction_bits
Definition: stepper.h:45
spindle_ptrs_t * spindle
Pointer to current spindle for motions that require dynamic RPM adjustment.
Definition: stepper.h:55
gc_override_flags_t overrides
Block bitfield variable for overrides.
Definition: stepper.h:46
bool backlash_motion
Definition: stepper.h:52
uint_fast8_t id
Id may be used by driver to track changes.
Definition: stepper.h:41
uint32_t step_event_count
Definition: stepper.h:44
bool dynamic_rpm
Tracks motions that require dynamic RPM adjustment.
Definition: stepper.h:53
uint32_t steps[N_AXIS]
Definition: stepper.h:43
float programmed_rate
Definition: stepper.h:49
offset_id_t offset_id
Definition: stepper.h:54
float millimeters
Definition: stepper.h:48
float steps_per_mm
Definition: stepper.h:47
output_command_t * output_commands
Output commands (linked list) to be performed when block is executed.
Definition: stepper.h:51
Definition: stepper.h:58
float spindle_rpm
Spindle RPM to be set at the start of the segment execution.
Definition: stepper.h:67
uint_fast16_t spindle_pwm
Spindle PWM to be set at the start of segment execution.
Definition: stepper.h:66
spindle_update_rpm_ptr update_rpm
Valid pointer to spindle.update_rpm() if set spindle speed at the start of the segment execution.
Definition: stepper.h:72
float current_rate
Definition: stepper.h:63
uint32_t cycles_per_tick
Step distance traveled per ISR tick, aka step rate.
Definition: stepper.h:62
struct st_segment * next
Pointer to next element in cirular list of segments.
Definition: stepper.h:60
uint_fast8_t amass_level
Indicates AMASS level for the ISR to execute this segment.
Definition: stepper.h:70
uint_fast8_t id
Id may be used by driver to track changes.
Definition: stepper.h:59
st_block_t * exec_block
Pointer to the block data for the segment.
Definition: stepper.h:61
uint_fast16_t n_step
Number of step events to be executed for this segment.
Definition: stepper.h:65
spindle_update_pwm_ptr update_pwm
Valid pointer to spindle.update_pwm() if set spindle speed at the start of the segment execution.
Definition: stepper.h:71
bool cruising
True when in cruising part of profile, only set for spindle synced moves.
Definition: stepper.h:69
float target_position
Target position of segment relative to block start, used by spindle sync code.
Definition: stepper.h:64
bool spindle_sync
True if block is spindle synchronized.
Definition: stepper.h:68
Stepper ISR data struct. Contains the running data for the main stepper ISR.
Definition: stepper.h:76
bool new_block
Set to true when a new block is started, might be referenced by driver code for advanced functionalit...
Definition: stepper.h:96
axes_signals_t dir_outbits
The direction signals to be output. The direction signals may be output only when stepper::dir_change...
Definition: stepper.h:99
uint_fast8_t amass_level
AMASS level for this segment.
Definition: stepper.h:101
uint32_t step_event_count
Number of step pulse events to be output by this segment.
Definition: stepper.h:104
st_block_t * exec_block
Pointer to the block data for the segment being executed.
Definition: stepper.h:105
bool dir_change
Set to true on direction changes, might be referenced by driver for advanced functionality.
Definition: stepper.h:97
uint32_t counter_x
Counter variable for the Bresenham line tracer, X-axis.
Definition: stepper.h:77
uint32_t counter_y
Counter variable for the Bresenham line tracer, Y-axis.
Definition: stepper.h:78
uint_fast16_t step_count
Steps remaining in line segment motion.
Definition: stepper.h:103
uint32_t steps[N_AXIS]
Number of step pulse event events per axis step pulse generated.
Definition: stepper.h:100
segment_t * exec_segment
Pointer to the segment being executed.
Definition: stepper.h:106
axes_signals_t step_outbits
The stepping signals to be output.
Definition: stepper.h:98
uint32_t counter_z
< Counter variable for the Bresenham line tracer, Z-axis
Definition: stepper.h:95
Definition: nuts_bolts.h:130
Override flags.
Definition: gcode.h:329