- Edited
Hi there!
I'm attempting to run audio channels at a 96kHz sample rate, rather than the default 44.1kHz. I don't need digital or analog I/O so I don't need that synchronization.
I've looked through these threads:
https://forum.bela.io/d/46-24-bit-audio-input-output-48khz
https://forum.bela.io/d/242-how-to-achieve-a-different-sampling-rate
So far I've been able to achieve 48kHz by simply changing the code in I2c_codec.cpp line 115 to:
if(setAudioSamplingRate(48000))
This generates the following clock PLL parameters:
MCLK: 24.0000 MHz,
fs(ref): 48000.0000,
P: 2,
R: 1,
J: 8,
D: 1920,
NCODEC: 1.000000,
Achieved Fs: 48000.000000 (err: 0.0000%),
This plays back the "sinetone" project at around 480Hz which one would expect.
However, setting that same line to if(setAudioSamplingRate(48000))
yields this error:
I2c_Codec: error, no valid PLL settings found
I assume the PLL settings function isn't really designed for that sample rate...
FYI I'm completely new to C++ and the Bela platform - hoping to use RNBO to do all the hard work
Any help is greatly appreciated, thank you!