I've been using this command in an SSH session to monitor the current CPU frequency as I test different settings:
watch -n 1 -d 'awk "{printf \"%.2f MHz\n\", \$1/1000}" /sys/devices/system/cpu/cpufreq/policy0/cpuinfo
_cur_freq'
I'm just trying to get an idea of what each emulator needs. Do you think this is the best way to monitor the CPU frequency on the device in real time?
If so, I wonder if there's a place in your guide for this snippet? Just throwing it out there.
I've been using this command in an SSH session to monitor the current CPU frequency as I test different settings:
I'm just trying to get an idea of what each emulator needs. Do you think this is the best way to monitor the CPU frequency on the device in real time?
If so, I wonder if there's a place in your guide for this snippet? Just throwing it out there.