Subversion Repositories Code-Repo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
312 Kevin 1
#ifndef STEPPER_H
2
#define	STEPPER_H
3
 
4
#define DVR8825
5
 
6
typedef enum {
7
    STEP_1_1,
8
    STEP_1_2,
9
    STEP_1_4,
10
    STEP_1_8,
11
    STEP_1_16,
12
    STEP_1_32
13
} STEPPER_MICROSTEP;
14
 
15
void STEPPER_Set_Microstep(STEPPER_MICROSTEP);
16
void STEPPER_Set_Direction(char);
17
 
18
#endif	/* STEPPER_H */
19