From 9318d2b25f0f207431bb27e877f89440e983479f Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Sat, 1 Jan 2011 19:54:01 +0000 Subject: Higher precision for test_mem plugin. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28939 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/test_mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/plugins/test_mem.c') diff --git a/apps/plugins/test_mem.c b/apps/plugins/test_mem.c index d3e1fa8c6b..a4b45fb32f 100644 --- a/apps/plugins/test_mem.c +++ b/apps/plugins/test_mem.c @@ -169,7 +169,7 @@ static int test(volatile int *buf, int buf_size, int loop_cnt, delta = *rb->current_tick - last_tick; - if (delta <= 10) + if (delta <= 20) { /* The loop_cnt will be increased for the next measurement set until * each measurement at least takes 10 ticks. This is to ensure a -- cgit