mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-14 02:07:56 -06:00
Initial commit of source code.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
37a91e9c10
commit
f582a36e4d
71 changed files with 9950 additions and 0 deletions
14
src/stepper.h
Normal file
14
src/stepper.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#ifndef __STEPPER_H
|
||||
#define __STEPPER_H
|
||||
|
||||
#include <stdint.h> // uint8_t
|
||||
|
||||
enum { STEPPER_POSITION_BIAS=0x40000000 };
|
||||
|
||||
uint8_t stepper_event(struct timer *t);
|
||||
void command_config_stepper(uint32_t *args);
|
||||
struct stepper;
|
||||
uint32_t stepper_get_position(struct stepper *s);
|
||||
void stepper_stop(struct stepper *s);
|
||||
|
||||
#endif // stepper.h
|
Loading…
Add table
Add a link
Reference in a new issue