diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-08-29 19:58:08 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-08-29 19:58:08 -0400 |
commit | d568f7ca9d7bf2d9dbf0b58d011ae8693ed6703e (patch) | |
tree | 0ea913ec1106c070b86d30a4db2b835baf7be4d3 /source/main.cpp | |
parent | 09b2c79ed6320dc6541f1edf435a01b125fe0425 (diff) |
improved elf loading
Diffstat (limited to 'source/main.cpp')
-rw-r--r-- | source/main.cpp | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/source/main.cpp b/source/main.cpp index 6c418ce..4bdd5a2 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -111,12 +111,52 @@ int main() } } +void quick_freeall(); + void signal_operate(adcsample_t *buffer, size_t count) { - if (elf_entry) + if (elf_entry) { elf_entry(buffer, count); + quick_freeall(); + } + 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]; } +// Dynamic memory allocation below + +uint8_t quick_malloc_heap[8192]; +uint8_t *quick_malloc_next = quick_malloc_heap; + +void *quick_malloc(unsigned int size) +{ + if (auto free = std::distance(quick_malloc_next, quick_malloc_heap + 8192); free < 0 || size > static_cast<unsigned int>(free)) + return nullptr; + + auto ptr = quick_malloc_next; + quick_malloc_next += size; + return ptr; +} + +void quick_freeall() +{ + if (quick_malloc_next != quick_malloc_heap) + quick_malloc_next = quick_malloc_heap; +} + +void port_syscall(struct port_extctx *ctxp, uint32_t n) +{ + switch (n) { + case 0: + *reinterpret_cast<void **>(ctxp->r0) = quick_malloc(ctxp->r1); + break; + case 1: + quick_freeall(); + break; + } + + chSysHalt("svc"); +} + |