libpynq  (release 5EID0-2023 version 0.3.0 of 2024-04-25 09:42 )
stepper.h
Go to the documentation of this file.
1 /*
2 Copyright (c) 2023 Eindhoven University of Technology
3 
4 Permission is hereby granted, free of charge, to any person obtaining a copy
5 of this software and associated documentation files (the "Software"), to deal
6 in the Software without restriction, including without limitation the rights
7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 copies of the Software, and to permit persons to whom the Software is
9 furnished to do so, subject to the following conditions:
10 
11 The above copyright notice and this permission notice shall be included in all
12 copies or substantial portions of the Software.
13 
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 SOFTWARE.
21 */
22 #ifndef STEPPER_H
23 #define STEPPER_H
24 #include <stdbool.h>
25 #include <stdint.h>
26 
40 extern void stepper_init(void);
41 
45 extern void stepper_destroy(void);
46 
52 extern void stepper_enable(void);
58 extern void stepper_disable(void);
59 
65 extern void stepper_reset(void);
66 
74 extern void stepper_set_speed(uint16_t left, uint16_t right);
75 
90 extern void stepper_steps(int16_t left, int16_t right);
91 
98 extern void stepper_get_steps(int16_t *left, int16_t *right);
102 extern bool stepper_steps_done(void);
103 
108 #endif // STEPPER_H
stepper_steps
void stepper_steps(int16_t left, int16_t right)
Definition: stepper.c:132
stepper_get_steps
void stepper_get_steps(int16_t *left, int16_t *right)
Definition: stepper.c:163
stepper_destroy
void stepper_destroy(void)
Definition: stepper.c:99
stepper_disable
void stepper_disable(void)
Definition: stepper.c:91
stepper_reset
void stepper_reset(void)
Definition: stepper.c:109
stepper_set_speed
void stepper_set_speed(uint16_t left, uint16_t right)
Definition: stepper.c:147
stepper_steps_done
bool stepper_steps_done(void)
Definition: stepper.c:117
stepper_init
void stepper_init(void)
Definition: stepper.c:69
stepper_enable
void stepper_enable(void)
Definition: stepper.c:84