diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-08-22 20:34:03 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-08-22 20:34:03 -0400 |
commit | 32fc992f6a41a9a139aaaa6569f549b54c8a912f (patch) | |
tree | ceaf11acef9cace14b0238b596e6bf01f9eb39f5 /source/main.cpp | |
parent | 96e4883081e253287d18c93118399f39b71551ea (diff) |
filter loading and real-time execution
Diffstat (limited to 'source/main.cpp')
-rw-r--r-- | source/main.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/source/main.cpp b/source/main.cpp index 162771a..6c418ce 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -14,6 +14,7 @@ #include "adc.hpp" #include "dac.hpp" +#include "elf_load.hpp" #include "usbserial.hpp" #include <array> @@ -30,6 +31,10 @@ CC_ALIGN(CACHE_LINE_SIZE) #endif static std::array<dacsample_t, CACHE_SIZE_ALIGN(dacsample_t, 2048)> dac_samples; +static uint8_t elf_file_store[2048]; +static uint8_t elf_exec_store[2048]; +static elf::entry_t elf_entry = nullptr; + static volatile bool signal_operate_done = false; static void signal_operate(adcsample_t *buffer, size_t count); @@ -73,7 +78,12 @@ int main() adc::read_stop(); break; case 'e': - + if (usbserial::read(&cmd[1], 2) < 2) + break; + if (unsigned int count = cmd[1] | (cmd[2] << 8); count < sizeof(elf_file_store)) { + usbserial::read(elf_file_store, count); + elf_entry = elf::load(elf_file_store, elf_exec_store); + } break; case 'W': if (usbserial::read(&cmd[1], 2) < 2) @@ -103,6 +113,8 @@ int main() void signal_operate(adcsample_t *buffer, size_t count) { + if (elf_entry) + elf_entry(buffer, count); auto dac_buffer = &dac_samples[buffer == &adc_samples[0] ? 0 : 1024]; std::copy(buffer, buffer + count, dac_buffer); signal_operate_done = buffer == &adc_samples[1024]; |