summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorNicolas Boichat <drinkcat@chromium.org>2019-10-09 12:03:27 +0800
committerCommit Bot <commit-bot@chromium.org>2019-10-18 09:02:49 +0000
commitb5baf907b8b094143e48a13c035d85ccfd8ba1e9 (patch)
tree9060c0ea1d9165b87d7cbbbad1cbc0d655db6f37 /extra
parentb53100c88f42e2cb8578d1616544a1df5751d1f7 (diff)
downloadchrome-ec-b5baf907b8b094143e48a13c035d85ccfd8ba1e9.tar.gz
board/hammer: Fix masterball touchpad settings
Fix the dimensions, and also the size, and make sure that updating the FW actually works (it seems like increasing the timeout to 2000ms is needed). BRANCH=kukui BUG=b:140596094 TEST=Flash masterball, no warning in console on start TEST= Host: make TOUCHPAD_FW=S8648A-15H0_FW01.bin BOARD=masterball -j USE=updater_utils emerge-kukui -av ec-utils cros deploy $IP ec-utils DUT: usb_updater2 -d 18d1:503c -r; sleep 0.5; \ usb_updater2 -d 18d1:503c -s; usb_updater2 -d 18d1:503c ec.bin usb_updater2 -d 18d1:503c -p S8648A-15H0_FW01.bin Change-Id: Ia473ac420b42f52ad1639f950a3f08ff5d32df09 Signed-off-by: Nicolas Boichat <drinkcat@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1847512 Reviewed-by: Eric Yilun Lin <yllin@chromium.org> Reviewed-by: Joel Kitching <kitching@chromium.org> (cherry picked from commit 5f3380d0a80dcedb6cb120b9e4c420b66b747a95) Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1869169
Diffstat (limited to 'extra')
-rw-r--r--extra/usb_updater/usb_updater2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/usb_updater/usb_updater2.c b/extra/usb_updater/usb_updater2.c
index 65c5fd248d..10bfeee7bb 100644
--- a/extra/usb_updater/usb_updater2.c
+++ b/extra/usb_updater/usb_updater2.c
@@ -513,7 +513,7 @@ static int transfer_block(struct usb_endpoint *uep,
/* Now get the reply. */
r = libusb_bulk_transfer(uep->devh, uep->ep_num | 0x80,
(void *) &reply, sizeof(reply),
- &actual, 1000);
+ &actual, 5000);
if (r) {
if (r == -7) {
fprintf(stderr, "Timeout!\n");