12345678910111213141516171819202122232425262728293031 |
-
-
- #ifndef __ENCODER_H__
- #define __ENCODER_H__
-
- #include <stdint.h>
-
- void encoder_init(void);
- void encoder_run(void);
-
- int32_t encoder_pos(void);
- int32_t encoder_get_diff(void);
- uint32_t encoder_get_rpm(void);
-
- #endif
|