From e12639c46f0be29461803ffa1790d6f69c16d280 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 8 Nov 2020 18:31:02 -0500 Subject: fixed sample rate setting --- source/main.cpp | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'source/main.cpp') diff --git a/source/main.cpp b/source/main.cpp index 17b0adb..8948b8e 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -250,10 +250,16 @@ void main_loop() break; case 'r': - if (usbserial::read(&cmd[1], 1) == 1) - adc::set_rate(static_cast(cmd[1])); - else + if (usbserial::read(&cmd[1], 1) == 1) { + if (cmd[1] == 0xFF) { + unsigned char r = static_cast(adc::get_rate()); + usbserial::write(&r, 1); + } else { + adc::set_rate(static_cast(cmd[1])); + } + } else { error_queue_add(Error::BadParamSize); + } break; // 'S' - Stops the continuous sampling/conversion. @@ -267,6 +273,10 @@ void main_loop() case 's': if (dac_samples_new != nullptr) { + auto samps = reinterpret_cast( + const_cast(dac_samples_new)); + dac_samples_new = nullptr; + unsigned char buf[2] = { static_cast(dac_sample_count / 2 & 0xFF), static_cast(((dac_sample_count / 2) >> 8) & 0xFF) @@ -275,8 +285,6 @@ void main_loop() unsigned int total = dac_sample_count / 2 * sizeof(dacsample_t); unsigned int offset = 0; unsigned char unused; - auto samps = reinterpret_cast( - const_cast(dac_samples_new)); while (total > 512) { usbserial::write(samps + offset, 512); while (usbserial::read(&unused, 1) == 0); @@ -285,7 +293,6 @@ void main_loop() } usbserial::write(samps + offset, total); while (usbserial::read(&unused, 1) == 0); - dac_samples_new = nullptr; } else { usbserial::write("\0\0", 2); } -- cgit v1.2.3