Re: [U-Boot] [PATCH 7/8] usb: kbd: Properly translate up/down arrow keys

2019-04-09 Thread Anatolij Gustschin
On Sat, 23 Mar 2019 01:30:01 + Andre Przywara andre.przyw...@arm.com wrote: > So far arrows key pressed on an USB keyboard got translated to some > low ASCII control sequences (Ctrl+N, Ctrl+P). Some programs understand > these codes, but the standard for those keys is to use ANSI control > seq

Re: [U-Boot] [PATCH 7/8] usb: kbd: Properly translate up/down arrow keys

2019-03-31 Thread Simon Glass
Hi André, On Sun, 31 Mar 2019 at 18:04, André Przywara wrote: > > On 30/03/2019 21:18, Simon Glass wrote: > > On Fri, 22 Mar 2019 at 19:32, Andre Przywara wrote: > > Hi Simon, > > many thanks for the review of all those patches, much appreciated! You're welcome, your patches are very easy to re

Re: [U-Boot] [PATCH 7/8] usb: kbd: Properly translate up/down arrow keys

2019-03-31 Thread André Przywara
On 30/03/2019 21:18, Simon Glass wrote: > On Fri, 22 Mar 2019 at 19:32, Andre Przywara wrote: Hi Simon, many thanks for the review of all those patches, much appreciated! >> So far arrows key pressed on an USB keyboard got translated to some >> low ASCII control sequences (Ctrl+N, Ctrl+P). Some

Re: [U-Boot] [PATCH 7/8] usb: kbd: Properly translate up/down arrow keys

2019-03-30 Thread Simon Glass
On Fri, 22 Mar 2019 at 19:32, Andre Przywara wrote: > > So far arrows key pressed on an USB keyboard got translated to some > low ASCII control sequences (Ctrl+N, Ctrl+P). Some programs understand > these codes, but the standard for those keys is to use ANSI control Which standard? > sequences f

[U-Boot] [PATCH 7/8] usb: kbd: Properly translate up/down arrow keys

2019-03-22 Thread Andre Przywara
So far arrows key pressed on an USB keyboard got translated to some low ASCII control sequences (Ctrl+N, Ctrl+P). Some programs understand these codes, but the standard for those keys is to use ANSI control sequences for cursor movement (ESC [ A). Our own boot menu is a victim of this, currently we