bigpup wrote: Thu Jul 08, 2021 7:54 pm
Not too many of us using these Raspberry Pi computers.
what does a Google search come up with about overclocking them?
I have a Pi 400 and getting the governor, to run in performance, was enough for me.
Thanks @bigpup for reminding me!
I should have know, like other OSes, you can overclock Raspup using the same parameters.
By default, overclock parameters are not added in Raspup. To add the parameters, check your left bottom corner of desktop, click on the first partition of sd card (label as mm0p1), then look for config.txt, open config.txt with text editor, and add the following lines:
#overclock settings for raspberry pi zero to 1.1ghz
arm_freq=1100
core_freq=450
over_voltage=6
#initial turbo (force cpu to run at max clock for n seconds, n=0-60)
initial_turbo=60
Click save.
Close the text editor.
Reboot your Raspberry. Done, your Raspberry should now overclocked.
To check, open terminal and key in:
watch -n 1 vcgencmd measure_clock arm
Always check board temperature after overclocked with:
/opt/vc/bin/vcgencmd measure_temp
Note: some of the above parameters only work for Rpi zero. if you have other Rpi models, remember to change the values accordingly.