Im not sure if I should I should create a new ticket for this, but removing the core_freq var increased the frame rate to 22, which is almost acceptable for my use case, I need the core_freq to be 250 as per the wittyPi3 specifictions, so Is there any way I can increase the graphics performance without changing this?
Hello Patrick, unfortunately there is no way of increasing performance at the moment. The 22 frame rate benchmark is about what we expect for this project on a FullHD (1920x1080) screen. We are actively working on improving this and hope to get much better results in the future.
As a side note, setting core_freq to 250 will effectively under-clock the Pi’s GPU processor, so a performance drop is to be expected. I took a look at the WittyPi3 manual but could not find any references pointing out this core_freq requirement, can you share a bit more on that?
if grep -q ‘core_freq=250’ /boot/config.txt; then
echo ‘Seems the frequency of GPU processor core is set to 250MHz already, skip this step.’
else
echo ‘core_freq=250’ >> /boot/config.txt
fi
I assume its to make their hardware back-compatible with all pi versions
Any ideas if its possible to overcome this or increase the FPS another way?
Hi @PatrickEntabeni, seems like you are following 3 year old instructions to install. My teammate noticed that you might be setting your own Chromium flags rather than using the ones set in the balenaDash kiosk service. Consecutively, you might have missed out the GPU enabling flags: --ignore-gpu-blacklist --enable-gpu-rasterization --force-gpu-rasterization --gpu-sandbox-failures-fatal=no --enable-native-gpu-memory-buffers
as seen here
If this is indeed the case, you are running without GPU acceleration, hence the low framerate.