snapshot
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
/**
|
||||
* @file send-adpcm-receive.ino
|
||||
* @author Phil Schatzmann
|
||||
* @brief Sending and receiving audio via Serial. You need to connect the RX pin
|
||||
* with the TX pin!
|
||||
*
|
||||
* We send encoded ADPCM audio over the serial wire. In order to be able to recover
|
||||
* from data loss in the encoded frames we use a Container
|
||||
*
|
||||
* @version 0.1
|
||||
* @date 2023-11-25
|
||||
*
|
||||
* @copyright Copyright (c) 2022
|
||||
*/
|
||||
|
||||
#include "AudioTools.h"
|
||||
#include "AudioTools/AudioCodecs/CodecADPCM.h" // https://github.com/pschatzmann/adpcm
|
||||
#include "AudioTools/AudioCodecs/ContainerBinary.h"
|
||||
// #include "AudioTools/AudioLibs/AudioBoardStream.h"
|
||||
|
||||
AudioInfo info(44100, 2, 16);
|
||||
I2SStream out; // or AnalogAudioStream, AudioBoardStream etc
|
||||
SineWaveGenerator<int16_t> sineWave(32000);
|
||||
GeneratedSoundStream<int16_t> sound(sineWave);
|
||||
|
||||
auto &serial = Serial2;
|
||||
ADPCMEncoder enc(AV_CODEC_ID_ADPCM_IMA_WAV);
|
||||
ADPCMDecoder dec(AV_CODEC_ID_ADPCM_IMA_WAV);
|
||||
BinaryContainerEncoder bin_enc(&enc);
|
||||
BinaryContainerDecoder bin_dec(&dec);
|
||||
EncodedAudioOutput enc_stream(&serial, &bin_enc);
|
||||
EncodedAudioOutput dec_stream(&out, &bin_dec);
|
||||
Throttle throttle(enc_stream);
|
||||
static int frame_size = 498;
|
||||
StreamCopy copierOut(throttle, sound, frame_size); // copies sound into Serial
|
||||
StreamCopy copierIn(dec_stream, serial, frame_size); // copies sound from Serial
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
AudioToolsLogger.begin(Serial, AudioToolsLogLevel::Warning);
|
||||
|
||||
// Note the format for setting a serial port is as follows:
|
||||
// Serial.begin(baud-rate, protocol, RX pin, TX pin);
|
||||
Serial2.begin(1100000, SERIAL_8N1);
|
||||
|
||||
sineWave.begin(info, N_B4);
|
||||
throttle.begin(info);
|
||||
|
||||
// increase the reliability
|
||||
dec_stream.setFrameSize(frame_size);
|
||||
enc_stream.setFrameSize(frame_size);
|
||||
|
||||
enc_stream.begin(info);
|
||||
dec_stream.begin(info);
|
||||
|
||||
|
||||
// start I2S
|
||||
auto config = out.defaultConfig(TX_MODE);
|
||||
config.copyFrom(info);
|
||||
out.begin(config);
|
||||
|
||||
// better visibility in logging
|
||||
copierOut.setLogName("out");
|
||||
copierIn.setLogName("in");
|
||||
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// copy to serial
|
||||
copierOut.copy();
|
||||
// copy from serial
|
||||
copierIn.copy();
|
||||
}
|
||||
Reference in New Issue
Block a user