aboutsummaryrefslogtreecommitdiffstats
path: root/source/communication.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-08-01 18:53:09 -0400
committerClyne Sullivan <clyne@bitgloo.com>2021-08-01 18:53:09 -0400
commit555749ef5dde558f745f0dc6d00a168d3b3e9d58 (patch)
treeeba6929696b04e4d4fb67271f9dee78bfa6ff2e1 /source/communication.cpp
parent123cc4c756cc8a22f66351ab65595c5a20e53e27 (diff)
8x oversample; other fixes
Diffstat (limited to 'source/communication.cpp')
-rw-r--r--source/communication.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/communication.cpp b/source/communication.cpp
index 5835aa5..3a264fb 100644
--- a/source/communication.cpp
+++ b/source/communication.cpp
@@ -124,6 +124,7 @@ void updateGenerator(unsigned char *cmd)
more = DAC::sigGenWantsMore();
} while (more == -1);
+ // Receive streamed samples in half-buffer chunks.
USBSerial::read(reinterpret_cast<uint8_t *>(
more == 0 ? Samples::Generator.data() : Samples::Generator.middata()),
Samples::Generator.bytesize() / 2);