position.h 313 B

12345678910111213141516
  1. /*
  2. * position.h
  3. *
  4. * Author: Andrey Koryagin https://blog.avislab.com/
  5. */
  6. #ifndef INC_POSITION_H_
  7. #define INC_POSITION_H_
  8. void Position_Init (void);
  9. void Position_Process (void);
  10. void Position_Set (uint16_t position);
  11. uint16_t Position_Get ();
  12. uint16_t Position_Get_Real ();
  13. #endif /* INC_POSITION_H_ */