grblHAL core  20240318
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;
56 
57 typedef struct st_segment {
58  uint_fast8_t id;
59  struct st_segment *next;
61  uint32_t cycles_per_tick;
62  float current_rate;
64  uint_fast16_t n_step;
65  uint_fast16_t spindle_pwm;
66  float spindle_rpm;
67  bool spindle_sync;
68  bool cruising;
69  uint_fast8_t amass_level;
73 
75 typedef struct stepper {
76  uint32_t counter_x,
79  #ifdef A_AXIS
80  , counter_a
81  #endif
82  #ifdef B_AXIS
83  , counter_b
84  #endif
85  #ifdef C_AXIS
86  , counter_c
87  #endif
88  #ifdef U_AXIS
89  , counter_u
90  #endif
91  #ifdef V_AXIS
92  , counter_v
93  #endif
94 ;
95  bool new_block;
96  bool dir_change;
99  uint32_t steps[N_AXIS];
100  uint_fast8_t amass_level;
101 // uint_fast16_t spindle_pwm;
102  uint_fast16_t step_count;
103  uint32_t step_event_count;
107 
108 // Initialize and setup the stepper motor subsystem
109 void stepper_init (void);
110 
111 // Enable steppers, but cycle does not start unless called by motion control or realtime command.
112 void st_wake_up (void);
113 
114 // Immediately disables steppers
115 void st_go_idle (void);
116 
117 // Reset the stepper subsystem variables
118 void st_reset (void);
119 
120 // Called by spindle_set_state() to inform about RPM changes.
121 void st_rpm_changed(float rpm);
122 
123 // Changes the run state of the step segment buffer to execute the special parking motion.
125 
126 // Restores the step segment buffer to the normal run state after a parking motion.
127 void st_parking_restore_buffer (void);
128 
129 // Reloads step segment buffer. Called continuously by realtime execution system.
130 void st_prep_buffer (void);
131 
132 // Called by planner_recalculate() when the executing block is updated by the new plan.
134 
135 // Called by realtime status reporting if realtime rate reporting is enabled in config.h.
136 float st_get_realtime_rate (void);
137 
139 
140 #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
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:166
void(* spindle_update_rpm_ptr)(struct spindle_ptrs *spindle, float rpm)
Pointer to function for updating spindle RPM.
Definition: spindle_control.h:171
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:1091
void st_parking_restore_buffer(void)
Definition: stepper.c:615
void st_prep_buffer(void)
Definition: stepper.c:646
void st_update_plan_block_parameters(void)
Definition: stepper.c:587
void stepper_init(void)
void st_rpm_changed(float rpm)
Definition: stepper.c:581
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:597
void st_reset(void)
Definition: stepper.c:531
Data for M62, M63 and M67 commands when executed synchronized with motion.
Definition: gcode.h:258
Handlers and data for spindle support.
Definition: spindle_control.h:267
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:54
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
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:57
float spindle_rpm
Spindle RPM to be set at the start of the segment execution.
Definition: stepper.h:66
uint_fast16_t spindle_pwm
Spindle PWM to be set at the start of segment execution.
Definition: stepper.h:65
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:71
float current_rate
Definition: stepper.h:62
uint32_t cycles_per_tick
Step distance traveled per ISR tick, aka step rate.
Definition: stepper.h:61
struct st_segment * next
Pointer to next element in cirular list of segments.
Definition: stepper.h:59
uint_fast8_t amass_level
Indicates AMASS level for the ISR to execute this segment.
Definition: stepper.h:69
uint_fast8_t id
Id may be used by driver to track changes.
Definition: stepper.h:58
st_block_t * exec_block
Pointer to the block data for the segment.
Definition: stepper.h:60
uint_fast16_t n_step
Number of step events to be executed for this segment.
Definition: stepper.h:64
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:70
bool cruising
True when in cruising part of profile, only set for spindle synced moves.
Definition: stepper.h:68
float target_position
Target position of segment relative to block start, used by spindle sync code.
Definition: stepper.h:63
bool spindle_sync
True if block is spindle synchronized.
Definition: stepper.h:67
Stepper ISR data struct. Contains the running data for the main stepper ISR.
Definition: stepper.h:75
bool new_block
Set to true when a new block is started, might be referenced by driver code for advanced functionalit...
Definition: stepper.h:95
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:98
uint_fast8_t amass_level
AMASS level for this segment.
Definition: stepper.h:100
uint32_t step_event_count
Number of step pulse events to be output by this segment.
Definition: stepper.h:103
st_block_t * exec_block
Pointer to the block data for the segment being executed.
Definition: stepper.h:104
bool dir_change
Set to true on direction changes, might be referenced by driver for advanced functionality.
Definition: stepper.h:96
uint32_t counter_x
Counter variable for the Bresenham line tracer, X-axis.
Definition: stepper.h:76
uint32_t counter_y
Counter variable for the Bresenham line tracer, Y-axis.
Definition: stepper.h:77
uint_fast16_t step_count
Steps remaining in line segment motion.
Definition: stepper.h:102
uint32_t steps[N_AXIS]
Number of step pulse event events per axis step pulse generated.
Definition: stepper.h:99
segment_t * exec_segment
Pointer to the segment being executed.
Definition: stepper.h:105
axes_signals_t step_outbits
The stepping signals to be output.
Definition: stepper.h:97
uint32_t counter_z
< Counter variable for the Bresenham line tracer, Z-axis
Definition: stepper.h:94
Definition: nuts_bolts.h:130
Override flags.
Definition: gcode.h:318