grblHAL core  20241107
hal.h
Go to the documentation of this file.
1 /*
2  hal.h - HAL (Hardware Abstraction Layer) entry points structures and capabilities type
3 
4  Part of grblHAL
5 
6  Copyright (c) 2016-2024 Terje Io
7 
8  grblHAL is free software: you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation, either version 3 of the License, or
11  (at your option) any later version.
12 
13  grblHAL is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  GNU General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with grblHAL. If not, see <http://www.gnu.org/licenses/>.
20 */
21 
26 #ifndef _HAL_H_
27 #define _HAL_H_
28 
29 #include <time.h>
30 
31 #include "grbl.h"
32 #include "core_handlers.h"
33 #include "gcode.h"
34 #include "coolant_control.h"
35 #include "spindle_control.h"
36 #include "crossbar.h"
37 #include "stepper.h"
38 #include "nvs.h"
39 #include "probe.h"
40 #include "ioports.h"
41 #include "rgb.h"
42 #include "plugins.h"
43 
44 #define HAL_VERSION 10
45 
47 typedef union {
48  uint32_t value;
49  struct {
50  uint32_t software_debounce :1,
55  amass_level :2, // 0...3 Deprecated?
58  sd_card :1,
62  wifi :1,
66  atc :1,
72  };
73 } driver_cap_t;
74 
75 
78 
80 typedef void (*driver_reset_ptr)(void);
81 
83 typedef uint32_t (*get_free_mem_ptr)(void);
84 
88 typedef void (*register_periph_pin_ptr)(const periph_pin_t *pin);
89 
95 typedef void (*set_periph_pin_description_ptr)(const pin_function_t function, const pin_group_t group, const char *description);
96 
97 typedef struct {
100 } periph_port_t;
101 
106 typedef void (*pin_info_ptr)(xbar_t *pin, void *data);
107 
114 typedef void (*enumerate_pins_ptr)(bool low_level, pin_info_ptr callback, void *data);
115 
116 
117 /*************
118  * Coolant *
119  *************/
120 
124 typedef void (*coolant_set_state_ptr)(coolant_state_t state);
125 
130 
132 typedef struct {
136 
137 
138 /********************
139  * Limit switches *
140  ********************/
141 
146 typedef void (*limits_enable_ptr)(bool on, axes_signals_t homing_cycle);
147 
152 
157 
159 typedef struct {
163 } limits_ptrs_t;
164 
165 
166 /************
167  * Homing *
168  ************/
169 
175 
177 typedef struct {
180 } homing_ptrs_t;
181 
182 /*****************************
183  * Control signal switches *
184  *****************************/
185 
190 
195 
197 typedef struct {
201 
202 
203 /**************
204  * Steppers *
205  **************/
206 
210 typedef union {
211  uint32_t value;
212  struct {
213  uint32_t id : 8,
214  axis : 8;
215  };
216 } motor_map_t;
217 
222 
223 
229 
230 
235 typedef void (*stepper_wake_up_ptr)(void);
236 
237 
244 typedef void (*stepper_go_idle_ptr)(bool clear_signals);
245 
253 typedef void (*stepper_enable_ptr)(axes_signals_t enable, bool hold);
254 
263 
272 typedef void (*stepper_cycles_per_tick_ptr)(uint32_t cycles_per_tick);
273 
288 
298 typedef void (*stepper_output_step_ptr)(axes_signals_t step_outbits, axes_signals_t dir_outbits);
299 
304 typedef axes_signals_t (*stepper_get_ganged_ptr)(bool auto_squared);
305 
311 typedef void (*stepper_claim_motor_ptr)(uint_fast8_t axis_id, bool claim);
312 
317 typedef void (*stepper_interrupt_callback_ptr)(void);
318 
320 typedef struct {
333 
334 
335 /**************
336  * ms delay *
337  **************/
338 
340 typedef void (*delay_callback_ptr)(void);
341 
343 typedef struct {
344  volatile uint32_t ms;
346 } delay_t;
347 
348 
349 /***********
350  * Probe *
351  ***********/
352 
359 
364 typedef void (*probe_configure_ptr)(bool is_probe_away, bool probing);
365 
371 typedef void (*probe_connected_toggle_ptr)(void);
372 
374 typedef struct {
378 } probe_ptrs_t;
379 
380 
381 /*******************************
382  * Tool selection and change *
383  *******************************/
384 
389 typedef void (*tool_select_ptr)(tool_data_t *tool, bool next);
390 
394 typedef status_code_t (*tool_change_ptr)(parser_state_t *gc_state);
395 
402 typedef struct {
405 } tool_ptrs_t;
406 
407 
408 /*******************
409  * Encoder input *
410  *******************/
411 
415 typedef uint8_t (*encoder_get_n_encoders_ptr)(void);
416 
421 typedef void (*encoder_on_event_ptr)(encoder_t *encoder, int32_t position);
422 
426 typedef void (*encoder_reset_ptr)(uint_fast8_t id);
427 
428 typedef struct {
433 
439 typedef bool (*irq_claim_ptr)(irq_type_t irq, uint_fast8_t id, irq_callback_ptr callback);
440 
441 /************
442  * Timers *
443  ************/
444 
445 typedef void *hal_timer_t;
446 
447 typedef enum {
452 
453 typedef union {
454  uint8_t value;
455  struct {
456  uint8_t periodic :1,
457  up :1,
458  comp1 :1,
459  comp2 :1;
460  };
461 } timer_cap_t;
462 
463 typedef void (*timer_irq_handler_ptr)(void *context);
464 
465 typedef struct {
466  void *context;
467  bool single_shot;
469  uint32_t irq0;
471  uint32_t irq1;
473 } timer_cfg_t;
474 
480 typedef hal_timer_t (*timer_claim_ptr)(timer_cap_t cap, uint32_t timebase);
481 
487 typedef bool (*timer_cfg_ptr)(hal_timer_t timer, timer_cfg_t *cfg);
488 
494 typedef bool (*timer_start_ptr)(hal_timer_t timer, uint32_t period);
495 
500 typedef bool (*timer_stop_ptr)(hal_timer_t timer);
501 
502 typedef struct {
507 } timer_ptrs_t;
508 
509 /**************************
510  * RTC (Real Time Clock *
511  **************************/
512 
517 typedef bool (*rtc_get_datetime_ptr)(struct tm *datetime);
518 
523 typedef bool (*rtc_set_datetime_ptr)(struct tm *datetime);
524 
525 typedef struct {
528 } rtc_ptrs_t;
529 
530 
531 
534 typedef void (*pallet_shuttle_ptr)(void);
535 
545 typedef struct {
546  uint32_t version;
547  char *info;
550  char *driver_url;
551  char *board;
552  char *board_url;
553  uint32_t f_step_timer;
554  uint32_t f_mcu;
555  uint32_t rx_buffer_size;
556  uint32_t max_step_rate;
558 
561 
568 
578  void (*delay_ms)(uint32_t ms, delay_callback_ptr callback);
579 
584  void (*set_bits_atomic)(volatile uint_fast16_t *value, uint_fast16_t bits);
585 
591  uint_fast16_t (*clear_bits_atomic)(volatile uint_fast16_t *value, uint_fast16_t v);
592 
598  uint_fast16_t (*set_value_atomic)(volatile uint_fast16_t *value, uint_fast16_t bits);
599 
601  void (*irq_enable)(void);
602 
604  void (*irq_disable)(void);
605 
608 
628  bool (*driver_release)(void);
629  uint32_t (*get_elapsed_ticks)(void);
630  uint64_t (*get_micros)(void);
632  void (*reboot)(void);
633 
635 
639  bool (*get_position)(int32_t (*position)[N_AXIS]);
640 
641 #ifdef DEBUGOUT
642  void (*debug_out)(bool on);
644 #endif
645 
653  bool (*stream_blocking_callback)(void);
654 
660 
661 } grbl_hal_t;
662 
663 extern grbl_hal_t hal;
664 
675 extern bool driver_init (void);
676 
677 #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
core function pointers and data structures definitions.
bool(* irq_callback_ptr)(uint_fast8_t id, bool level)
Definition: crossbar.h:475
pin_function_t
Definition: crossbar.h:27
pin_group_t
Definition: crossbar.h:415
irq_type_t
Definition: crossbar.h:470
parser_state_t gc_state
Definition: gcode.c:116
void(* stepper_enable_ptr)(axes_signals_t enable, bool hold)
Pointer to function for enabling/disabling stepper motors.
Definition: hal.h:253
status_code_t(* tool_change_ptr)(parser_state_t *gc_state)
Pointer to function for executing a tool change.
Definition: hal.h:394
void * hal_timer_t
Timer handle, actual type defined by driver implementation.
Definition: hal.h:445
void(* delay_callback_ptr)(void)
Signature of delay callback functions.
Definition: hal.h:340
home_signals_t(* home_get_state_ptr)(void)
Pointer to function for getting home switches state.
Definition: hal.h:173
void(* stepper_disable_motors_ptr)(axes_signals_t axes, squaring_mode_t mode)
Pointer to function for enabling/disabling step signals for individual motors.
Definition: hal.h:262
coolant_state_t(* coolant_get_state_ptr)(void)
Pointer to function for getting the coolant state.
Definition: hal.h:129
void(* probe_connected_toggle_ptr)(void)
Pointer to function for toggling probe connected status.
Definition: hal.h:371
hal_timer_t(* timer_claim_ptr)(timer_cap_t cap, uint32_t timebase)
Pointer to function for claiming a timer.
Definition: hal.h:480
void(* motor_iterator_ptr)(motor_iterator_callback_ptr callback)
Pointer to function for iterating over stepper motor vs. axis mappings.
Definition: hal.h:228
void(* motor_iterator_callback_ptr)(motor_map_t motor)
Signature of the callback function to receive motor vs. axis mappings.
Definition: hal.h:221
void(* pin_info_ptr)(xbar_t *pin, void *data)
Pointer to callback function for pin enumerations.
Definition: hal.h:106
void(* driver_reset_ptr)(void)
Pointer to function to be called when a soft reset occurs.
Definition: hal.h:80
void(* encoder_on_event_ptr)(encoder_t *encoder, int32_t position)
Pointer to callback function to receive encoder events.
Definition: hal.h:421
void(* coolant_set_state_ptr)(coolant_state_t state)
Pointer to function for setting the coolant state.
Definition: hal.h:124
void(* limits_enable_ptr)(bool on, axes_signals_t homing_cycle)
Pointer to function for enabling/disabling limit switches functionality.
Definition: hal.h:146
bool(* timer_cfg_ptr)(hal_timer_t timer, timer_cfg_t *cfg)
Pointer to function for configuring a timer.
Definition: hal.h:487
limit_signals_t(* limits_get_state_ptr)(void)
Pointer to function for getting limit switches state.
Definition: hal.h:151
uint32_t(* get_free_mem_ptr)(void)
Pointer to function for getting free memory (as sum of all free blocks in the heap).
Definition: hal.h:83
bool(* driver_setup_ptr)(settings_t *settings)
Pointer to function called to set up driver peripherals after settings are loaded.
Definition: hal.h:77
void(* timer_irq_handler_ptr)(void *context)
Definition: hal.h:463
void(* stepper_cycles_per_tick_ptr)(uint32_t cycles_per_tick)
Pointer to function for setting the step pulse interrupt rate for the next motion segment.
Definition: hal.h:272
float(* homing_get_feedrate_ptr)(axes_signals_t axes, homing_mode_t mode)
Definition: hal.h:174
void(* stepper_claim_motor_ptr)(uint_fast8_t axis_id, bool claim)
Pointer to function for claiming/releasing motor(s) from/to normal step/dir signalling.
Definition: hal.h:311
void(* stepper_output_step_ptr)(axes_signals_t step_outbits, axes_signals_t dir_outbits)
Pointer to function for outputting a single step pulse and direction signal.
Definition: hal.h:298
void(* pallet_shuttle_ptr)(void)
Pointer to function for performing a pallet shuttle.
Definition: hal.h:534
void(* stepper_interrupt_callback_ptr)(void)
Pointer to callback function for outputting the next direction and step pulse signals....
Definition: hal.h:317
bool(* rtc_get_datetime_ptr)(struct tm *datetime)
Pointer to function for setting the current datetime.
Definition: hal.h:517
void(* tool_select_ptr)(tool_data_t *tool, bool next)
Pointer to function for selecting a tool.
Definition: hal.h:389
control_signals_t(* control_signals_get_state_ptr)(void)
Pointer to function for getting control switches state.
Definition: hal.h:189
void(* stepper_go_idle_ptr)(bool clear_signals)
Pointer to function for disabling the main stepper interrupt.
Definition: hal.h:244
bool(* irq_claim_ptr)(irq_type_t irq, uint_fast8_t id, irq_callback_ptr callback)
Pointer to function for claiming higher level interrupt requests (irq).
Definition: hal.h:439
void(* control_signals_callback_ptr)(control_signals_t signals)
Pointer to callback function for reporting control switches events (interrupts). Set by the core on s...
Definition: hal.h:194
void(* enumerate_pins_ptr)(bool low_level, pin_info_ptr callback, void *data)
Pointer to function for enumerate pin information.
Definition: hal.h:114
void(* limit_interrupt_callback_ptr)(limit_signals_t state)
Pointer to callback function for reporting limit switches events (interrupts). Set by the core on sta...
Definition: hal.h:156
uint8_t(* encoder_get_n_encoders_ptr)(void)
Pointer to function for getting number of encoders supported.
Definition: hal.h:415
void(* stepper_pulse_start_ptr)(stepper_t *stepper)
Pointer to function for setting up steppers for the next step pulse.
Definition: hal.h:287
void(* set_periph_pin_description_ptr)(const pin_function_t function, const pin_group_t group, const char *description)
Pointer to function for setting pin description for a peripheral pin.
Definition: hal.h:95
void(* probe_configure_ptr)(bool is_probe_away, bool probing)
Pointer to function for setting probe operation mode.
Definition: hal.h:364
grbl_hal_t hal
Global HAL struct.
Definition: grbllib.c:88
timer_resolution_t
Definition: hal.h:447
@ Timer_16bit
Definition: hal.h:448
@ Timer_64bit
Definition: hal.h:450
@ Timer_32bit
Definition: hal.h:449
probe_state_t(* probe_get_state_ptr)(void)
Pointer to function for getting probe status.
Definition: hal.h:358
void(* register_periph_pin_ptr)(const periph_pin_t *pin)
Pointer to function for registering information about a peripheral pin.
Definition: hal.h:88
bool(* rtc_set_datetime_ptr)(struct tm *datetime)
Pointer to function for setting the current datetime.
Definition: hal.h:523
void(* stepper_wake_up_ptr)(void)
Pointer to function for enabling all stepper motors and the main stepper interrupt.
Definition: hal.h:235
bool(* timer_stop_ptr)(hal_timer_t timer)
Pointer to function for stopping a running timer.
Definition: hal.h:500
bool driver_init(void)
Driver main entry point. This will be called once by the core after the HAL structure has been nulled...
void(* encoder_reset_ptr)(uint_fast8_t id)
Pointer to function for resetting encoder data.
Definition: hal.h:426
bool(* timer_start_ptr)(hal_timer_t timer, uint32_t period)
Pointer to function for starting a timer.
Definition: hal.h:494
axes_signals_t(* stepper_get_ganged_ptr)(bool auto_squared)
Pointer to function for getting which axes are configured for auto squaring.
Definition: hal.h:304
homing_mode_t
Definition: machine_limits.h:30
settings_t settings
Definition: settings.c:43
void(* settings_changed_ptr)(settings_t *settings, settings_changed_flags_t changed)
Pointer to callback function to be called when settings are loaded or changed.
Definition: settings.h:1001
squaring_mode_t
Definition: stepper.h:29
Control switches handlers.
Definition: hal.h:197
control_signals_get_state_ptr get_state
Handler for getting limit switches status.
Definition: hal.h:198
control_signals_callback_ptr interrupt_callback
Callback for informing about control switches events. _Set by the core at startup.
Definition: hal.h:199
Handlers for coolant support.
Definition: hal.h:132
coolant_get_state_ptr get_state
Handler for getting coolant state.
Definition: hal.h:134
coolant_set_state_ptr set_state
Handler for setting coolant state.
Definition: hal.h:133
Delay struct, currently not used by core - may be used by drivers.
Definition: hal.h:343
volatile uint32_t ms
Definition: hal.h:344
delay_callback_ptr callback
Definition: hal.h:345
Definition: hal.h:428
encoder_reset_ptr reset
Optional handler for resetting data for an encoder.
Definition: hal.h:431
encoder_get_n_encoders_ptr get_n_encoders
Optional handler for getting number of encoders supported.
Definition: hal.h:429
encoder_on_event_ptr on_event
Optional callback handler for receiving encoder events.
Definition: hal.h:430
Definition: plugins.h:209
HAL structure used for the driver interface.
Definition: hal.h:545
home_signals_t home_cap
Home input signals supported by the driver.
Definition: hal.h:658
uint32_t rx_buffer_size
Input stream buffer size in bytes.
Definition: hal.h:555
char * driver_version
Pointer to driver version date string in YYMMDD format.
Definition: hal.h:548
control_signals_ptrs_t control
Handlers for control switches.
Definition: hal.h:611
encoder_ptrs_t encoder
Optional handlers for encoder support.
Definition: hal.h:634
homing_ptrs_t homing
Handlers for homing switches, used by homing cycle.
Definition: hal.h:610
nvs_io_t nvs
Optional handlers for storing/retrieving settings and data to/from non-volatile storage (NVS).
Definition: hal.h:626
io_stream_t stream
Handlers for stream I/O.
Definition: hal.h:615
uint32_t max_step_rate
Currently unused.
Definition: hal.h:556
spindle_data_ptrs_t spindle_data
Handlers for getting/resetting spindle data (RPM, angular position, ...).
Definition: hal.h:613
char * board
Pointer to optional board name string.
Definition: hal.h:551
uint8_t driver_axis_settings
Currently unused.
Definition: hal.h:557
char * info
Pointer to driver info string, typically name of processor/platform.
Definition: hal.h:547
coolant_ptrs_t coolant
Handlers for coolant.
Definition: hal.h:612
enumerate_pins_ptr enumerate_pins
Optional handler for enumerating pins used by the driver.
Definition: hal.h:627
get_free_mem_ptr get_free_mem
Optional pointer to function for getting free memory (as sum of all free blocks in the heap).
Definition: hal.h:560
periph_port_t periph_port
Optional handlers for peripheral pin registration.
Definition: hal.h:624
limit_signals_t limits_cap
Limit input signals supported by the driver.
Definition: hal.h:657
rtc_ptrs_t rtc
Optional handlers for real time clock (RTC).
Definition: hal.h:620
timer_ptrs_t timer
Optional handlers for claiming and controlling timers.
Definition: hal.h:619
char * board_url
Pointer to optional URL for the board.
Definition: hal.h:552
limits_ptrs_t limits
Handlers for limit switches.
Definition: hal.h:609
rgb_ptr_t rgb0
Optional handler for RGB output to LEDs (neopixels) or lamps.
Definition: hal.h:622
uint32_t f_step_timer
Frequency of main stepper timer in Hz.
Definition: hal.h:553
settings_changed_ptr settings_changed
Callback handler to be called on settings loaded or settings changed events.
Definition: hal.h:616
coolant_state_t coolant_cap
Coolant outputs supported by the driver.
Definition: hal.h:659
stepper_ptrs_t stepper
Handlers for stepper motors.
Definition: hal.h:614
uint32_t f_mcu
Frequency of MCU in MHz.
Definition: hal.h:554
io_stream_t debug
Handlers for debug stream I/O.
Definition: hal.h:643
driver_setup_ptr driver_setup
Driver setup handler. Called once by the core after settings has been loaded. The driver should enabl...
Definition: hal.h:567
irq_claim_ptr irq_claim
Optional handler for claiming higher level interrupts. Set to a dummy handler on startup.
Definition: hal.h:607
tool_ptrs_t tool
Optional handlers for tool changes.
Definition: hal.h:618
char * driver_url
Pointer to optional URL for the driver.
Definition: hal.h:550
driver_cap_t driver_cap
Basic driver capabilities flags.
Definition: hal.h:655
driver_reset_ptr driver_reset
Optional handler, called on soft resets. Set to a dummy handler by the core at startup.
Definition: hal.h:625
io_port_t port
Optional handlers for axuillary I/O (adds support for M62-M66).
Definition: hal.h:621
uint32_t version
HAL version, set by the core. Driver should check against this in the driver_init() function.
Definition: hal.h:546
char * driver_options
Pointer to optional comma separated string with driver options.
Definition: hal.h:549
rgb_ptr_t rgb1
Optional handler for RGB output to LEDs (neopixels) or lamps.
Definition: hal.h:623
control_signals_t signals_cap
Control input signals supported by the driver.
Definition: hal.h:656
pallet_shuttle_ptr pallet_shuttle
Optional handler for performing a pallet shuttle on program end (M60).
Definition: hal.h:631
probe_ptrs_t probe
Optional handlers for probe input(s).
Definition: hal.h:617
Home switches struct, consists of two packed axes_signals_t structs.
Definition: nuts_bolts.h:165
Limit switches handler for homing cycle.
Definition: hal.h:177
home_get_state_ptr get_state
Handler for getting homing switches status. Usually read from hal.limits.get_state.
Definition: hal.h:178
homing_get_feedrate_ptr get_feedrate
Definition: hal.h:179
Properties and handlers for auxiliary digital and analog I/O.
Definition: ioports.h:111
Properties and handlers for stream I/O.
Definition: stream.h:243
Limit switches struct, consists of four packed axes_signals_t structs in 32 bits.
Definition: nuts_bolts.h:157
Limit switches handlers.
Definition: hal.h:159
limits_enable_ptr enable
Handler for enabling limits handling mode.
Definition: hal.h:160
limits_get_state_ptr get_state
Handler for getting limit switches status.
Definition: hal.h:161
limit_interrupt_callback_ptr interrupt_callback
Callback for informing about limit switches events. Set by the core at startup.
Definition: hal.h:162
Handler functions and variables for NVS storage of settings and data.
Definition: nvs.h:128
Parser state.
Definition: gcode.h:591
Definition: crossbar.h:639
Definition: hal.h:97
set_periph_pin_description_ptr set_pin_description
Optional handler for setting a description of a peripheral pin.
Definition: hal.h:99
register_periph_pin_ptr register_pin
Opional handler for registering information about a peripheral pin (with the driver).
Definition: hal.h:98
Handlers for probe input(s).
Definition: hal.h:374
probe_configure_ptr configure
Optional handler for setting probe operation mode.
Definition: hal.h:375
probe_connected_toggle_ptr connected_toggle
Optional handler for toggling probe connected status.
Definition: hal.h:377
probe_get_state_ptr get_state
Optional handler for getting probe status. Called from interrupt context.
Definition: hal.h:376
Definition: rgb.h:74
Definition: hal.h:525
rtc_set_datetime_ptr set_datetime
Optional handler setting the current datetime.
Definition: hal.h:527
rtc_get_datetime_ptr get_datetime
Optional handler getting the current datetime.
Definition: hal.h:526
Definition: settings.h:804
Definition: spindle_control.h:318
Stepper motor handlers.
Definition: hal.h:320
stepper_get_ganged_ptr get_ganged
Optional handler getting which axes are configured for ganging or auto squaring.
Definition: hal.h:328
stepper_enable_ptr enable
Handler for enabling/disabling stepper motor power for individual motors. Called from interrupt conte...
Definition: hal.h:323
stepper_cycles_per_tick_ptr cycles_per_tick
Handler for setting the step pulse rate for the next motion segment. Called from interrupt context.
Definition: hal.h:325
stepper_output_step_ptr output_step
Optional handler for outputting a single step pulse. Experimental. Called from interrupt context.
Definition: hal.h:330
stepper_interrupt_callback_ptr interrupt_callback
Callback for informing about the next step pulse to output. Set by the core at startup.
Definition: hal.h:327
stepper_pulse_start_ptr pulse_start
Handler for starting outputting direction signals and a step pulse. Called from interrupt context.
Definition: hal.h:326
stepper_wake_up_ptr wake_up
Handler for enabling stepper motor power and main stepper interrupt.
Definition: hal.h:321
motor_iterator_ptr motor_iterator
Optional handler iteration over motor vs. axis mappings. Required for the motors plugin (Trinamic dri...
Definition: hal.h:331
stepper_claim_motor_ptr claim_motor
Optional handler for claiming/releasing motor(s) from normal step/dir control.
Definition: hal.h:329
stepper_go_idle_ptr go_idle
Handler for disabling main stepper interrupt and optionally reset stepper signals....
Definition: hal.h:322
stepper_disable_motors_ptr disable_motors
Optional handler for enabling/disabling stepper motor step signals for individual motors.
Definition: hal.h:324
Stepper ISR data struct. Contains the running data for the main stepper ISR.
Definition: stepper.h:76
Definition: hal.h:465
uint32_t irq1
Compare value for compare interrupt 10.
Definition: hal.h:471
timer_irq_handler_ptr irq1_callback
Pointer to compare interrupt 1 callback.
Definition: hal.h:472
timer_irq_handler_ptr irq0_callback
Pointer to compare interrupt 0 callback.
Definition: hal.h:470
timer_irq_handler_ptr timeout_callback
Pointer to main timeout callback.
Definition: hal.h:468
bool single_shot
Set to true if timer is single shot.
Definition: hal.h:467
void * context
Pointer to data to be passed on to the interrupt handlers.
Definition: hal.h:466
uint32_t irq0
Compare value for compare interrupt 0.
Definition: hal.h:469
Definition: hal.h:502
timer_stop_ptr stop
Definition: hal.h:506
timer_start_ptr start
Definition: hal.h:505
timer_claim_ptr claim
Definition: hal.h:503
timer_cfg_ptr configure
Definition: hal.h:504
Definition: vfs.h:47
Tool data.
Definition: gcode.h:581
Handlers for tool changes.
Definition: hal.h:402
tool_change_ptr change
Optional handler for executing a tool change (M6).
Definition: hal.h:404
tool_select_ptr select
Optional handler for selecting a tool.
Definition: hal.h:403
Definition: crossbar.h:624
Definition: nuts_bolts.h:130
Definition: system.h:123
Definition: coolant_control.h:26
Bitmap flags for driver capabilities, to be set by driver in driver_init(), flags may be cleared afte...
Definition: hal.h:47
uint32_t odometers
Definition: hal.h:68
uint32_t limits_pull_up
Pullup resistors for limit inputs are are supported.
Definition: hal.h:52
uint32_t laser_ppi_mode
Laser PPI (Pulses Per Inch) mode is supported.
Definition: hal.h:65
uint32_t unassigned
Definition: hal.h:71
uint32_t probe_latch
Definition: hal.h:70
uint32_t atc
Automatic tool changer (ATC) is supported.
Definition: hal.h:66
uint32_t bluetooth
Definition: hal.h:60
uint32_t pwm_spindle
Definition: hal.h:69
uint32_t spindle_encoder
Spindle encoder is supported.
Definition: hal.h:56
uint32_t ethernet
Definition: hal.h:61
uint32_t spindle_sync
Spindle synced motion is supported.
Definition: hal.h:57
uint32_t mpg_mode
Definition: hal.h:64
uint32_t software_debounce
Software debounce of input switches signals is supported.
Definition: hal.h:50
uint32_t sd_card
Definition: hal.h:58
uint32_t step_pulse_delay
Stepper step pulse delay is supported.
Definition: hal.h:51
uint32_t wifi
Definition: hal.h:62
uint32_t amass_level
Definition: hal.h:55
uint32_t no_gcode_message_handling
Definition: hal.h:67
uint32_t spindle_pid
Definition: hal.h:63
uint32_t control_pull_up
Pullup resistors for control inputs are supported.
Definition: hal.h:53
uint32_t value
All bitmap flags.
Definition: hal.h:48
uint32_t littlefs
Definition: hal.h:59
uint32_t probe_pull_up
Pullup resistors for probe inputs are supported.
Definition: hal.h:54
Motor vs. axis mapping NOTE: id and axis values are equal for primary motors, unequal for secondary (...
Definition: hal.h:210
uint32_t axis
Definition: hal.h:214
uint32_t id
Definition: hal.h:213
uint32_t value
Definition: hal.h:211
Definition: probe.h:32
Definition: hal.h:453
uint8_t comp1
Timer supports compare interrupt 0.
Definition: hal.h:458
uint8_t value
All bitmap flags.
Definition: hal.h:454
uint8_t up
Timer supports upcounting.
Definition: hal.h:457
uint8_t periodic
Definition: hal.h:456
uint8_t comp2
Timer supports compare interrupt 1.
Definition: hal.h:459