Search found 3 matches

by thatlittleidiot
Wed Feb 23, 2022 11:16 am
Forum: General Discussion
Topic: Add new function to ESP32 program memory?
Replies: 4
Views: 1739

Re: Add new function to ESP32 program memory?

I was already considering a block-programming style interface for programming the effects processor, so perhaps your proposed alternative is the ideal way to go. Having a preset number of function blocks and chaining them together through function pointers, I suppose. If you wanted to code your own ...
by thatlittleidiot
Wed Feb 23, 2022 9:23 am
Forum: General Discussion
Topic: Add new function to ESP32 program memory?
Replies: 4
Views: 1739

Re: Add new function to ESP32 program memory?

Essentially, I'm looking to create a field-programmable audio effects processor using the ESP32-A1S. Audio input, audio output, wireless communication for the programming of the processor, among other processes, won't be changed during typical use cases. A list of functions would be applied to sampl...
by thatlittleidiot
Wed Feb 23, 2022 5:50 am
Forum: General Discussion
Topic: Add new function to ESP32 program memory?
Replies: 4
Views: 1739

Add new function to ESP32 program memory?

I have a project where the majority of the code should stay the same, and only a small section of the program, a few functions, should be changed regularly. Basically, a bunch of unchanging code that calls some small functions that I want to change/add/remove while the board is running, without rest...