diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-01-01 19:54:01 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-01-01 19:54:01 +0000 |
| commit | 9318d2b25f0f207431bb27e877f89440e983479f (patch) | |
| tree | beb16739ceb73646f7f5bd349b533271bcb4e3c5 /apps/plugins | |
| parent | 21b89aab5ae3381f813987b5d8bcdc0a6096c362 (diff) | |
| download | rockbox-9318d2b25f0f207431bb27e877f89440e983479f.zip rockbox-9318d2b25f0f207431bb27e877f89440e983479f.tar.gz rockbox-9318d2b25f0f207431bb27e877f89440e983479f.tar.bz2 rockbox-9318d2b25f0f207431bb27e877f89440e983479f.tar.xz | |
Higher precision for test_mem plugin.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28939 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/test_mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/test_mem.c b/apps/plugins/test_mem.c index d3e1fa8..a4b45fb 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 |