aboutsummaryrefslogtreecommitdiffstats
path: root/source/communication.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/communication.cpp')
-rw-r--r--source/communication.cpp25
1 files changed, 13 insertions, 12 deletions
diff --git a/source/communication.cpp b/source/communication.cpp
index ec02a42..b5ee28e 100644
--- a/source/communication.cpp
+++ b/source/communication.cpp
@@ -112,22 +112,23 @@ void updateGenerator(unsigned char *cmd)
if (EM.assert(USBSerial::read(&cmd[1], 2) == 2, Error::BadParamSize)) {
unsigned int count = cmd[1] | (cmd[2] << 8);
if (EM.assert(count <= MAX_SAMPLE_BUFFER_SIZE, Error::BadParam)) {
- if (run_status == RunStatus::Idle) {
+ if (!DAC::isSigGenRunning()) {
Samples::Generator.setSize(count);
USBSerial::read(
reinterpret_cast<uint8_t *>(Samples::Generator.data()),
Samples::Generator.bytesize());
- } else if (run_status == RunStatus::Running) {
- int more;
- do {
- chThdSleepMicroseconds(10);
- 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);
+ } else {
+ const int more = DAC::sigGenWantsMore();
+ if (more == -1) {
+ USBSerial::write(reinterpret_cast<const uint8_t *>("\0"), 1);
+ } else {
+ USBSerial::write(reinterpret_cast<const uint8_t *>("\1"), 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);
+ }
}
}
}