Zephyr Project API 4.1.0
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
stepper.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: Copyright (c) 2024 Carl Zeiss Meditec AG
3 * SPDX-FileCopyrightText: Copyright (c) 2024 Jilay Sandeep Pandya
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12#ifndef ZEPHYR_INCLUDE_DRIVERS_STEPPER_H_
13#define ZEPHYR_INCLUDE_DRIVERS_STEPPER_H_
14
24#include <zephyr/kernel.h>
25#include <zephyr/device.h>
26#include <errno.h>
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
36#define MICRO_STEP_RES_INDEX(res) LOG2(res)
37
61
71
83
97
110typedef int (*stepper_enable_t)(const struct device *dev, const bool enable);
111
117typedef int (*stepper_set_micro_step_res_t)(const struct device *dev,
118 const enum stepper_micro_step_resolution resolution);
119
125typedef int (*stepper_get_micro_step_res_t)(const struct device *dev,
126 enum stepper_micro_step_resolution *resolution);
132typedef int (*stepper_set_reference_position_t)(const struct device *dev, const int32_t value);
133
139typedef int (*stepper_get_actual_position_t)(const struct device *dev, int32_t *value);
140
144typedef void (*stepper_event_callback_t)(const struct device *dev, const enum stepper_event event,
145 void *user_data);
146
152typedef int (*stepper_set_event_callback_t)(const struct device *dev,
153 stepper_event_callback_t callback, void *user_data);
159typedef int (*stepper_set_microstep_interval_t)(const struct device *dev,
160 const uint64_t microstep_interval_ns);
166typedef int (*stepper_move_by_t)(const struct device *dev, const int32_t micro_steps);
167
173typedef int (*stepper_move_to_t)(const struct device *dev, const int32_t micro_steps);
174
180typedef int (*stepper_run_t)(const struct device *dev, const enum stepper_direction direction);
181
187typedef int (*stepper_is_moving_t)(const struct device *dev, bool *is_moving);
188
192__subsystem struct stepper_driver_api {
193 stepper_enable_t enable;
194 stepper_set_micro_step_res_t set_micro_step_res;
195 stepper_get_micro_step_res_t get_micro_step_res;
196 stepper_set_reference_position_t set_reference_position;
197 stepper_get_actual_position_t get_actual_position;
198 stepper_set_event_callback_t set_event_callback;
199 stepper_set_microstep_interval_t set_microstep_interval;
200 stepper_move_by_t move_by;
201 stepper_move_to_t move_to;
202 stepper_run_t run;
203 stepper_is_moving_t is_moving;
204};
205
222__syscall int stepper_enable(const struct device *dev, const bool enable);
223
224static inline int z_impl_stepper_enable(const struct device *dev, const bool enable)
225{
226 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
227
228 return api->enable(dev, enable);
229}
230
242__syscall int stepper_set_micro_step_res(const struct device *dev,
243 enum stepper_micro_step_resolution resolution);
244
245static inline int z_impl_stepper_set_micro_step_res(const struct device *dev,
246 enum stepper_micro_step_resolution resolution)
247{
248 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
249
250 if (api->set_micro_step_res == NULL) {
251 return -ENOSYS;
252 }
253 return api->set_micro_step_res(dev, resolution);
254}
255
266__syscall int stepper_get_micro_step_res(const struct device *dev,
267 enum stepper_micro_step_resolution *resolution);
268
269static inline int z_impl_stepper_get_micro_step_res(const struct device *dev,
270 enum stepper_micro_step_resolution *resolution)
271{
272 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
273
274 if (api->get_micro_step_res == NULL) {
275 return -ENOSYS;
276 }
277 return api->get_micro_step_res(dev, resolution);
278}
279
290__syscall int stepper_set_reference_position(const struct device *dev, int32_t value);
291
292static inline int z_impl_stepper_set_reference_position(const struct device *dev,
293 const int32_t value)
294{
295 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
296
297 if (api->set_reference_position == NULL) {
298 return -ENOSYS;
299 }
300 return api->set_reference_position(dev, value);
301}
302
313__syscall int stepper_get_actual_position(const struct device *dev, int32_t *value);
314
315static inline int z_impl_stepper_get_actual_position(const struct device *dev, int32_t *value)
316{
317 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
318
319 if (api->get_actual_position == NULL) {
320 return -ENOSYS;
321 }
322 return api->get_actual_position(dev, value);
323}
324
336__syscall int stepper_set_event_callback(const struct device *dev,
337 stepper_event_callback_t callback, void *user_data);
338
339static inline int z_impl_stepper_set_event_callback(const struct device *dev,
340 stepper_event_callback_t callback,
341 void *user_data)
342{
343 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
344
345 if (api->set_event_callback == NULL) {
346 return -ENOSYS;
347 }
348 return api->set_event_callback(dev, callback, user_data);
349}
350
365__syscall int stepper_set_microstep_interval(const struct device *dev,
366 uint64_t microstep_interval_ns);
367
368static inline int z_impl_stepper_set_microstep_interval(const struct device *dev,
369 const uint64_t microstep_interval_ns)
370{
371 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
372
373 if (api->set_microstep_interval == NULL) {
374 return -ENOSYS;
375 }
376 return api->set_microstep_interval(dev, microstep_interval_ns);
377}
378
392__syscall int stepper_move_by(const struct device *dev, int32_t micro_steps);
393
394static inline int z_impl_stepper_move_by(const struct device *dev, const int32_t micro_steps)
395{
396 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
397
398 return api->move_by(dev, micro_steps);
399}
400
415__syscall int stepper_move_to(const struct device *dev, int32_t micro_steps);
416
417static inline int z_impl_stepper_move_to(const struct device *dev, const int32_t micro_steps)
418{
419 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
420
421 if (api->move_to == NULL) {
422 return -ENOSYS;
423 }
424 return api->move_to(dev, micro_steps);
425}
426
442__syscall int stepper_run(const struct device *dev, enum stepper_direction direction);
443
444static inline int z_impl_stepper_run(const struct device *dev,
445 const enum stepper_direction direction)
446{
447 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
448
449 if (api->run == NULL) {
450 return -ENOSYS;
451 }
452 return api->run(dev, direction);
453}
454
465__syscall int stepper_is_moving(const struct device *dev, bool *is_moving);
466
467static inline int z_impl_stepper_is_moving(const struct device *dev, bool *is_moving)
468{
469 const struct stepper_driver_api *api = (const struct stepper_driver_api *)dev->api;
470
471 if (api->is_moving == NULL) {
472 return -ENOSYS;
473 }
474 return api->is_moving(dev, is_moving);
475}
476
481#ifdef __cplusplus
482}
483#endif
484
485#include <zephyr/syscalls/stepper.h>
486
487#endif /* ZEPHYR_INCLUDE_DRIVERS_STEPPER_H_ */
System error numbers.
stepper_direction
Stepper Motor direction options.
Definition stepper.h:65
int stepper_enable(const struct device *dev, const bool enable)
Enable or disable stepper driver.
int stepper_set_reference_position(const struct device *dev, int32_t value)
Set the reference position of the stepper.
stepper_run_mode
Stepper Motor run mode options.
Definition stepper.h:75
int stepper_set_microstep_interval(const struct device *dev, uint64_t microstep_interval_ns)
Set the time interval between steps in nanoseconds.
int stepper_get_actual_position(const struct device *dev, int32_t *value)
Get the actual a.k.a reference position of the stepper.
int stepper_get_micro_step_res(const struct device *dev, enum stepper_micro_step_resolution *resolution)
Get the micro-step resolution in stepper driver.
int stepper_move_to(const struct device *dev, int32_t micro_steps)
Set the absolute target position of the stepper.
int stepper_move_by(const struct device *dev, int32_t micro_steps)
Set the micro-steps to be moved from the current position i.e.
int stepper_run(const struct device *dev, enum stepper_direction direction)
Run the stepper with a given step interval in a given direction.
int stepper_is_moving(const struct device *dev, bool *is_moving)
Check if the stepper is currently moving.
stepper_event
Stepper Events.
Definition stepper.h:87
int stepper_set_micro_step_res(const struct device *dev, enum stepper_micro_step_resolution resolution)
Set the micro-step resolution in stepper driver.
int stepper_set_event_callback(const struct device *dev, stepper_event_callback_t callback, void *user_data)
Set the callback function to be called when a stepper event occurs.
stepper_micro_step_resolution
Stepper Motor micro-step resolution options.
Definition stepper.h:41
@ STEPPER_DIRECTION_POSITIVE
Positive direction.
Definition stepper.h:69
@ STEPPER_DIRECTION_NEGATIVE
Negative direction.
Definition stepper.h:67
@ STEPPER_RUN_MODE_VELOCITY
Velocity Mode.
Definition stepper.h:81
@ STEPPER_RUN_MODE_HOLD
Hold Mode.
Definition stepper.h:77
@ STEPPER_RUN_MODE_POSITION
Position Mode.
Definition stepper.h:79
@ STEPPER_EVENT_LEFT_END_STOP_DETECTED
Left end switch status changes to pressed.
Definition stepper.h:93
@ STEPPER_EVENT_RIGHT_END_STOP_DETECTED
Right end switch status changes to pressed.
Definition stepper.h:95
@ STEPPER_EVENT_STEPS_COMPLETED
Steps set using move_by or move_to have been executed.
Definition stepper.h:89
@ STEPPER_EVENT_STALL_DETECTED
Stall detected.
Definition stepper.h:91
@ STEPPER_MICRO_STEP_64
64 micro-steps per full step
Definition stepper.h:55
@ STEPPER_MICRO_STEP_4
4 micro-steps per full step
Definition stepper.h:47
@ STEPPER_MICRO_STEP_1
Full step resolution.
Definition stepper.h:43
@ STEPPER_MICRO_STEP_2
2 micro-steps per full step
Definition stepper.h:45
@ STEPPER_MICRO_STEP_256
256 micro-steps per full step
Definition stepper.h:59
@ STEPPER_MICRO_STEP_8
8 micro-steps per full step
Definition stepper.h:49
@ STEPPER_MICRO_STEP_16
16 micro-steps per full step
Definition stepper.h:51
@ STEPPER_MICRO_STEP_32
32 micro-steps per full step
Definition stepper.h:53
@ STEPPER_MICRO_STEP_128
128 micro-steps per full step
Definition stepper.h:57
#define ENOSYS
Function not implemented.
Definition errno.h:82
#define NULL
Definition iar_missing_defs.h:20
Public kernel APIs.
__INT32_TYPE__ int32_t
Definition stdint.h:74
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
Runtime device structure (in ROM) per driver instance.
Definition device.h:453
const void * api
Address of the API structure exposed by the device instance.
Definition device.h:459