Scan for input
This commit is contained in:
parent
37a0eb51df
commit
ae0892eec6
4 changed files with 73 additions and 4 deletions
|
|
@ -4,7 +4,14 @@
|
|||
|
||||
#define INPUT_DEV_CTRL_FLAG_EXIT 0x00000001U
|
||||
|
||||
typedef enum input_dev_type {
|
||||
input_dev_type_uinput,
|
||||
input_dev_type_iio,
|
||||
} input_dev_type_t;
|
||||
|
||||
typedef struct input_dev {
|
||||
input_dev_type_t dev_type;
|
||||
|
||||
volatile uint32_t crtl_flags;
|
||||
} input_dev_t;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue