Re: [U-Boot] [PATCH v5 4/5] samsung: misc: menu: increase delay in menu main loop

2014-05-07 Thread Minkyu Kang
On 30/04/14 20:28, Przemyslaw Marczak wrote:
 Increase menu loop delay to 200 ms helps choose the right
 menu option by user. Before this, each time key was pressed
 the current menu option was changed few times.
 Now it changes only once and also changes few times if key
 is pressed for a longer time.
 
 Signed-off-by: Przemyslaw Marczak p.marc...@samsung.com
 Cc: Minkyu Kang mk7.k...@samsung.com
 
 ---
 Changes v2:
 - new commit
 
 Changes v3:
 - correct commit message
 
 Changes v4:
 - none
 
 Changes v5:
 - move mdelay() from check_keys() to menu loop
 - update commit msg
 
 ---
  board/samsung/common/misc.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 

applied to u-boot-samsung.

Thanks,
Minkyu Kang.


___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v5 4/5] samsung: misc: menu: increase delay in menu main loop

2014-05-06 Thread Przemyslaw Marczak

On 05/05/2014 03:35 PM, Gerhard Sittig wrote:

On Wed, 2014-04-30 at 13:28 +0200, Przemyslaw Marczak wrote:


Increase menu loop delay to 200 ms helps choose the right
menu option by user. Before this, each time key was pressed
the current menu option was changed few times.
Now it changes only once and also changes few times if key
is pressed for a longer time.


Since this description better reflects the motivation of the
change, and because there appears to be no need to actually
de-bounce the keys, I think this patch is good.


virtually yours
Gerhard Sittig



Thanks:)
--
Przemyslaw Marczak
Samsung RD Institute Poland
Samsung Electronics
p.marc...@samsung.com
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v5 4/5] samsung: misc: menu: increase delay in menu main loop

2014-05-05 Thread Gerhard Sittig
On Wed, 2014-04-30 at 13:28 +0200, Przemyslaw Marczak wrote:
 
 Increase menu loop delay to 200 ms helps choose the right
 menu option by user. Before this, each time key was pressed
 the current menu option was changed few times.
 Now it changes only once and also changes few times if key
 is pressed for a longer time.

Since this description better reflects the motivation of the
change, and because there appears to be no need to actually
de-bounce the keys, I think this patch is good.


virtually yours
Gerhard Sittig
-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr. 5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v5 4/5] samsung: misc: menu: increase delay in menu main loop

2014-04-30 Thread Przemyslaw Marczak
Increase menu loop delay to 200 ms helps choose the right
menu option by user. Before this, each time key was pressed
the current menu option was changed few times.
Now it changes only once and also changes few times if key
is pressed for a longer time.

Signed-off-by: Przemyslaw Marczak p.marc...@samsung.com
Cc: Minkyu Kang mk7.k...@samsung.com

---
Changes v2:
- new commit

Changes v3:
- correct commit message

Changes v4:
- none

Changes v5:
- move mdelay() from check_keys() to menu loop
- update commit msg

---
 board/samsung/common/misc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/samsung/common/misc.c b/board/samsung/common/misc.c
index 65b5c30..2ea275e 100644
--- a/board/samsung/common/misc.c
+++ b/board/samsung/common/misc.c
@@ -285,7 +285,7 @@ static void download_menu(void)
display_download_menu(mode);
 
last_mode = mode;
-   mdelay(100);
+   mdelay(200);
 
key = check_keys();
switch (key) {
-- 
1.9.1

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot