Blame view

include/linux/rotary_encoder.h 328 Bytes
73969ff0e   Daniel Mack   Input: generic dr...
1
2
3
4
5
6
7
8
9
10
  #ifndef __ROTARY_ENCODER_H__
  #define __ROTARY_ENCODER_H__
  
  struct rotary_encoder_platform_data {
  	unsigned int steps;
  	unsigned int axis;
  	unsigned int gpio_a;
  	unsigned int gpio_b;
  	unsigned int inverted_a;
  	unsigned int inverted_b;
bd3ce6556   H Hartley Sweeten   Input: rotary_enc...
11
12
  	bool relative_axis;
  	bool rollover;
e70bdd41b   Johan Hovold   Input: rotary-enc...
13
  	bool half_period;
73969ff0e   Daniel Mack   Input: generic dr...
14
15
16
  };
  
  #endif /* __ROTARY_ENCODER_H__ */