#14995: Triggerhappy repeats commands
-----------------------------------+---------------------------------------
  Reporter:  danitool <dgcbueu@…>  |      Owner:  developers
      Type:  defect                |     Status:  new
  Priority:  normal                |  Milestone:  Attitude Adjustment 12.09
 Component:  packages              |    Version:  Trunk
Resolution:                        |   Keywords:  triggerhappy buttons HID
-----------------------------------+---------------------------------------

Comment (by archetipo):

 Hi ,
 for me is not a bug because is not a repeat data but is a sequence of the
 press and release action:

 i.e.

 button "8" on keyboard HID -> press event  have flag equal=1:
 (flag is after KEY_8)


 {{{
 EV_KEY  KEY_8   1       /dev/input/event1
 # KEY_8 1       command
 }}}


 release button "1" have flag equal=0: :

 {{{

 EV_KEY  KEY_8   0       /dev/input/event1
 # KEY_8 0       command
 }}}



  other example SHIFT+i= "I":

 press shitf and  press i:

 {{{
 EV_KEY  KEY_LEFTSHIFT   1       /dev/input/event1
 # KEY_LEFTSHIFT 1       command
 EV_KEY  KEY_I   1       /dev/input/event1
 # KEY_LEFTSHIFT+KEY_I   1       command
 }}}


 after relase shitf and relase i:

 {{{
 EV_KEY  KEY_LEFTSHIFT   0       /dev/input/event1
 # KEY_I+KEY_LEFTSHIFT   0       command
 EV_KEY  KEY_I   0       /dev/input/event1
 # KEY_I 0       command
 }}}

--
Ticket URL: <https://dev.openwrt.org/ticket/14995#comment:1>
OpenWrt <http://openwrt.org>
Opensource Wireless Router Technology
_______________________________________________
openwrt-tickets mailing list
[email protected]
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-tickets

Reply via email to