How to move interrupt vector from FLASH to SRAM when using stm32L476?
I want my interrupt handler to run in SRAM since some people seem to claim it is a more predictable solution then flash.I copied my interrupt handler to SRAM using __attribute__ ((long_call, section (".RamFunc"))) I tested the interrupt by toggling ...