uinput-mapper/py
2013-04-19 00:10:15 +02:00
..
cinput.py Add linux_uinput; cleanups. 2013-04-19 00:10:15 +02:00
ioctlhelp.py ioctl work ; reading keys works. 2013-04-18 18:13:57 +02:00
linux_input.py Add linux_uinput; cleanups. 2013-04-19 00:10:15 +02:00
linux_uinput.py Add linux_uinput; cleanups. 2013-04-19 00:10:15 +02:00
map.py Add linux_uinput; cleanups. 2013-04-19 00:10:15 +02:00
README Small and simple evtest-like program. 2013-04-18 00:50:28 +02:00

Generate:
- input.h constants ; macros:
    - EV_*
    - KEY_*
    - BTN_*
    - REL_*
    - ABS_*

    gcc -E -dM /usr/include/linux/input.h | egrep ' (KEY|BTN|EV|REL|ABS|SYN)_[A-Za-z0-9_]+' | ( echo "#include <linux/input.h>" ; echo "input_constants_dict = {" ; sed -r 's/[^ ]+ +([^ ]+).*/"\1" : \1,/' ; echo "}" ) | gcc -E -o /dev/stdout - | grep 'input_constants_dict = {' -A 100000 > gen.py


    Lambas for EVIO*


- uinput