Hello,
I have a problem with the CC3200 in combination with the AUDIO booster pack(TLV320AIC3254).
At the moment the bitrate for sound is 512000 (which can't go lower, because the hardware can't handle a lower clockspeed), but how can i sample the sound at a bitrate of 512000 a second and then convert it to 64000.
512000 = (16*16000*2) = (BITS_PER_SAMPLE*SAMPLERATE*STEREO)
64000 = (8*8000*1) = (BITS_PER_SAMPLE*SAMPLERATE*MONO)
I want to start the AudioCodec with 8BIT, 8000 samples a second and in mono sound. But the internal clock can't handle the 64000 bit per clock speed. So how can I generate 16BIT, 16000, Stereo sound in the audio codec and downsample it to 8BIT, 8000, Mono sound in the RAW PCM circular buffer or in the DMA.
Thank you in advance,
Maurice