From ca3d71154c99f30a90f7f4c39c6cdd655a98f3e9 Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Mon, 15 May 2017 10:37:18 +0200 Subject: [PATCH] [ion/device] Bench doesn't need to sleep 500 miliseconds before suspend Change-Id: Ib8150af789bf891da6f995237461fe9d97e737ec --- ion/src/device/bench/command/suspend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ion/src/device/bench/command/suspend.cpp b/ion/src/device/bench/command/suspend.cpp index b1d1bcc5c..27666921d 100644 --- a/ion/src/device/bench/command/suspend.cpp +++ b/ion/src/device/bench/command/suspend.cpp @@ -12,7 +12,7 @@ void Suspend(const char * input) { return; } reply(sOK); - Ion::msleep(500); + Ion::msleep(100); Ion::Power::suspend(); }