aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2016-02-19 21:20:26 +0000
committerDaniel Lezcano <daniel.lezcano@linaro.org>2016-02-19 21:20:26 +0000
commit88b377303f964c92e3be7077d14cf4db70436c5d (patch)
tree275b361cad84f21dc5b454cb4456e24855ee993b
parent32e6cb5940cb92370639c0a840b6f4622f280657 (diff)
Reduce the default refresh rate
Currently the default refresh rate is 10 secs which is tooo long for data inspection. Let's reduce it to 1 sec. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
-rw-r--r--powerdebug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/powerdebug.c b/powerdebug.c
index b0d2ade..356a8db 100644
--- a/powerdebug.c
+++ b/powerdebug.c
@@ -92,7 +92,7 @@ int getoptions(int argc, char *argv[], struct powerdebug_options *options)
int c;
memset(options, 0, sizeof(*options));
- options->ticktime = 10;
+ options->ticktime = 1;
while (1) {
int optindex = 0;