override.h 319 B

12345678910111213
  1. #ifndef OVERRIDE_SWITCH_H_
  2. #define OVERRIDE_SWITCH_H_
  3. #include <stdint.h>
  4. /** override_init - Initialize the feed-override switch */
  5. void override_init(void);
  6. /** override_get_pos - Get the feed-override position.
  7. * 0 = leftmost, 0xFF = rightmost. */
  8. uint8_t override_get_pos(void);
  9. #endif /* OVERRIDE_SWITCH_H_ */