ggwave : reduce memory usage for fixed length decoding

This commit is contained in:
Georgi Gerganov
2022-05-29 22:12:06 +03:00
parent 6888ca58f2
commit 62e54102ed
2 changed files with 9 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ void loop() {
p.sampleRate = frequency;
p.sampleFormatInp = GGWAVE_SAMPLE_FORMAT_I16;
p.samplesPerFrame = 128;
p.payloadLength = 4;
p.payloadLength = 16;
p.operatingMode = GGWAVE_OPERATING_MODE_RX;
GGWave ggwave(p);