How can I set an interrupt service routine on ARM Cortex M using picolibc?
03:20 03 Sep 2023

Picolibc provides startup routines, including linker scripts, for bare metal ARM development, making it easy to write small embedded projects without using IDEs.

How can I define interrupt service routines under that?

I assume picolibc defines the ISRs using weak symbols that I can just override, but I can't find any documentation or examples. At least, what are the correct names to use?

c embedded interrupt cortex-m