From fb72dd09cfc16d0260363d38df1225b6663bc084 Mon Sep 17 00:00:00 2001 From: Namhoon Kim Date: Tue, 4 Apr 2017 03:35:59 +0000 Subject: MC2 support --- common.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'common.py') diff --git a/common.py b/common.py index 9ea2915..2326ec3 100644 --- a/common.py +++ b/common.py @@ -161,10 +161,9 @@ def num_cpus(): def ft_freq(): umachine = subprocess.check_output(["uname", "-m"]) - if re.match("armv7", umachine): # Arm V7s use a millisecond timer - freq = 1000.0 + freq = 800.0 elif re.match("x86", umachine): # X86 timer is equal to processor clock reg = re.compile(r'^cpu MHz\s*:\s*(?P\d+)', re.M) -- cgit v1.2.2