lower n samples per update to be on safe side

This commit is contained in:
zbednarke 2024-05-07 20:20:12 -07:00
parent db4aa35b12
commit a7fccc35a1

View file

@ -11,7 +11,7 @@ import (
const ( const (
nSamples = 6000 nSamples = 6000
sampleRate = 6000 sampleRate = 6000
nSamplesPerUpdate = 1600 nSamplesPerUpdate = 1400
frequency = 440 frequency = 440
targetFPS = 240 targetFPS = 240
) )