What's the fastest periodic IRQ that you have ever run?
We have one board with 12 isolated LPC1758 ARMs. Each gets interrupted by its on-chip ADC at 100 KHz and does a bunch of filtering and runs a PID loop, which outputs to the on-chip DAC. We cranked the CPU clock down some to save power, so the ISR runs for about 7 usec max.
I ask because if I use a Pi Pico on some new projects, it has a dual-core 133 MHz CPU, and one core may have enough compute power that we wouldn't need an FPGA in a lot of cases. Might even do DDS in software.
RP2040 floating point is tempting but probably too slow for control use. Things seem to take 50 or maybe 100 us. Back to scaled integers, I guess.
I was also thinking that we could make a 2 or 3-bit DAC with a few resistors. The IRQ could load that at various places and a scope would trace execution. That would look cool. On the 1758 thing we brought out a single bit to a test point and raised that during the ISR so we could see ISR execution time on a scope. My c guy didn't believe that a useful ISR could run at 100K and had no idea what execution time might be.